diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 10:05:10 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 11:00:26 +0200 |
commit | 6b2f807c3b4716a63715e196306ab48f5e6c96d1 (patch) | |
tree | 776aa19b8151761256a68cd86b67f10dac24071a /gnu/packages/tex.scm | |
parent | 580f98d661926ec0472fc46d2a8b2f16c61ac900 (diff) | |
download | guix-6b2f807c3b4716a63715e196306ab48f5e6c96d1.tar.gz |
gnu: Add texlive-dsptricks.
* gnu/packages/tex.scm (texlive-dsptricks): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 556f1ed9f4..3bbdcaee24 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3801,6 +3801,31 @@ BibLaTeX package, a practical example of french thesis document, and documentation. The class assumes use of Biber and BibLaTeX.") (license license:lppl1.3+))) +(define-public texlive-dsptricks + (package + (name "texlive-dsptricks") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/dsptricks/" + "tex/latex/dsptricks/") + (base32 + "03ykpbvmb95n6j5071c5hrja4x6x3cpdnmppj9gjjjh63ddv40m6"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/dsptricks") + (synopsis "Macros for Digital Signal Processing (DSP) plots") + (description + "The package provides a set of @code{LaTeX} macros (based on PSTricks) +for plotting the kind of graphs and figures that are usually employed in +digital signal processing publications. DSPTricks provides facilities for +standard discrete-time lollipop plots, continuous-time and frequency plots, +and pole-zero plots. The companion package +DSPFunctions (@file{dspfunctions.sty}) provides macros for computing frequency +responses and DFTs, while the package DSPBlocks (@file{dspblocks.sty}) +supports DSP block diagrams.") + (license license:lppl))) + (define-public texlive-dyntree (package (name "texlive-dyntree") |