diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-23 09:26:57 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:11:29 +0200 |
commit | b529de143fd1dbced26bac2757b1f90b45d705f9 (patch) | |
tree | 9f9cf8485e06b3909d02abe6890920a824d808ff /gnu/packages | |
parent | fcb4c1159eb963ae1c5aaffd48d362a05b44b042 (diff) |
gnu: Add texlive-fixfoot.
* gnu/packages/tex.scm (texlive-fixfoot): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 376c65a17d..b6343aebf0 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -13724,6 +13724,26 @@ with pdfTeX, XeTeX and LuaTeX, and can also be used with the @code{unicode-math} package.") (license license:lppl1.3c))) +(define-public texlive-fixfoot + (package + (name "texlive-fixfoot") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/fixfoot/" "tex/latex/fixfoot/") + (base32 + "1anyswchln7y7a6x72ay6hm3ck36byxk2ciia0w6y100iqcpq2sl"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/fixfoot") + (synopsis "Multiple use of the same footnote text") + (description + "This package provides a @code{\\DeclareFixedFootnote} command to provide +a single command for a frequently-used footnote. The package ensures that +only one instance of the footnote text appears on each page (LaTeX needs to be +run several times to achieve this).") + (license license:lppl))) + (define-public texlive-fixjfm (package (name "texlive-fixjfm") |