diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-04 12:00:47 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:05 +0200 |
commit | d96f28ec272f39f7c9bf960b1549f00c124a5d82 (patch) | |
tree | fe40ce9f06bc40f66f9b5d2efedd3be140d3fd03 /gnu | |
parent | 1c430d369ccf7b8f51de95b334b00c49e5ed118c (diff) | |
download | guix-d96f28ec272f39f7c9bf960b1549f00c124a5d82.tar.gz |
gnu: Add texlive-amslatex-primer.
* gnu/packages/tex.scm (texlive-amslatex-primer): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 0c040a7b04..2ac188ff49 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -1478,6 +1478,29 @@ provides information about the structure of and interaction between the various components.") (license license:lppl1.3c))) +(define-public texlive-amslatex-primer + (package + (name "texlive-amslatex-primer") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/amslatex-primer/") + (base32 + "1kzayyh1bycmq43s2xn81jf05r18azidbk3gv6igf2vaq37fmxil"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/amslatex-primer") + (synopsis "Getting up and running with AMS-LaTeX") + (description + "The document aims to get you up and running with AMS-LaTeX as quickly as +possible. These instructions are not a substitute for the full documentation, +but they may get you started quickly enough so that you will only need to +refer to the main documentation occasionally. In addition to AMS-LaTeX out of +the box, the document contains a section describing how to draw commutative +diagrams using Xy-pic and a section describing how to use @code{amsrefs} to +create a bibliography.") + (license license:lppl))) + (define-public texlive-amstex (package (name "texlive-amstex") |