diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-04 12:30:34 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:21 +0200 |
commit | 6485eac8251a1e93ee3c47902217623ce053d6d7 (patch) | |
tree | 8c61f3c0af696fbe0f0de780ba91e7a8f9a210ce /gnu | |
parent | b41e36a17bbb75efae823b7dea373d0683fc6bc9 (diff) | |
download | guix-6485eac8251a1e93ee3c47902217623ce053d6d7.tar.gz |
gnu: Add texlive-tlc3-examples.
* gnu/packages/tex.scm (texlive-tlc3-examples): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 5b28f0433e..600ebda009 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -25650,6 +25650,25 @@ used to create them.") LaTeX Companion} book, together with necessary supporting files.") (license license:lppl))) +(define-public texlive-tlc3-examples + (package + (name "texlive-tlc3-examples") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/tlc3-examples/") + (base32 + "01ny6r3ycji0af0cdywn2fmxd0fyz3y7afdnn983a5gy1j9rza7v"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/tlc3-examples") + (synopsis "All examples from @emph{The LaTeX Companion}, third edition") + (description + "This package provides the PDFsand sources for all examples from +@emph{The LaTeX Companion}, third edition (Parts I+II), together with +necessary supporting files.") + (license license:lppl1.3c))) + (define-public texlive-txfonts (package (name "texlive-txfonts") |