diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-04 12:12:21 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:09 +0200 |
commit | 778aa056de131134acae4e8a1f30d6facd7c6b20 (patch) | |
tree | 71abd36de0bdb91368aa7810065b3e196df3e4ec /gnu | |
parent | 5dd9b4d057bfab8045e825f42135dad8b3161039 (diff) | |
download | guix-778aa056de131134acae4e8a1f30d6facd7c6b20.tar.gz |
gnu: Add texlive-intro-scientific.
* gnu/packages/tex.scm (texlive-intro-scientific): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 822945e43c..cf36d1bfe2 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4319,6 +4319,27 @@ The package also supports fence scaling and ensures that the enclosing fences will end up having the proper closing and opening types.") (license license:lppl1.3+))) +(define-public texlive-intro-scientific + (package + (name "texlive-intro-scientific") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/intro-scientific/") + (base32 + "0bzgi3zg0lm6zwjnac90ihaqwcvhindfdphjijv7mh11ii0qxlmf"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/intro-scientific") + (synopsis "Introducing scientific/mathematical documents using LaTeX") + (description + "@emph{Writing Scientific Documents Using LaTeX} is an article +introducing the use of LaTeX in typesetting scientific documents. It covers +the basics of creating a new LaTeX document, special typesetting +considerations, mathematical typesetting and graphics. It also touches on +bibliographic data and BibTeX.") + (license license:lppl))) + (define-public texlive-ionumbers (package (name "texlive-ionumbers") |