diff options
| author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 16:00:14 +0200 |
|---|---|---|
| committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:05:49 +0200 |
| commit | 6170693bc7bab4e5da19973879d061f007443445 (patch) | |
| tree | 8848dbf2052be7aa01e9d045ae409856c96cb2af /gnu | |
| parent | 0b0527a774f4a22de5ba7d42f63b36975c681b75 (diff) | |
gnu: Add texlive-savefnmark.
* gnu/packages/tex.scm (texlive-savefnmark): 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 8df3c42226..bd539bddfb 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -94497,6 +94497,27 @@ catcodes.") works for all values of @code{\\endlinechar}.") (license license:lppl1.3c))) +(define-public texlive-savefnmark + (package + (name "texlive-savefnmark") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/savefnmark/" + "source/latex/savefnmark/" + "tex/latex/savefnmark/") + (base32 + "06gcknhf2hm924l8zzbp4bxpcs69kchd3nqgy7n3fjaz8k8gwz0i"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/savefnmark") + (synopsis "Save name of the footnote mark for reuse") + (description + "Sometimes the same footnote applies to more than one location in a table. +With this package the mark of a footnote can be saved into a name, and re-used +subsequently without creating another footnote at the bottom.") + (license license:gpl3+))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar |
