diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 10:39:44 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 10:41:45 +0200 |
commit | 715d203b414727be43e405d09e86aa823125a4b3 (patch) | |
tree | cabccc01ddb2a123e7c34a78d01dae704afd4f6f | |
parent | c4819aecee652ef14512b4dacf5832654291882e (diff) |
gnu: Add texlive-subfiles.
* gnu/packages/tex.scm (texlive-subfiles): New variable.
-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 7eb281e364..1a8e04c9f6 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -28816,6 +28816,29 @@ conventions for alternatives, etc. The charts are drawn using the @code{picture} environment (using @code{pict2e} for preference).") (license license:lppl1.2+))) +(define-public texlive-subfiles + (package + (name "texlive-subfiles") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/subfiles/" + "source/latex/subfiles/" + "tex/latex/subfiles/") + (base32 + "1lwbpf852qi0gmibwgd3i63mlwi2p8zb1ps0fis21r69hnisym8j"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs (list texlive-import)) + (home-page "https://ctan.org/pkg/subfiles") + (synopsis "Individual typesetting of sub-files of a main document") + (description + "Using this package one can handle multi-file projects more comfortably, +making it possible to both process the subsidiary files by themselves and to +process the main file that includes them, without making any changes to +either.") + (license license:lppl1.3+))) + (define-public texlive-substances (package (name "texlive-substances") |