diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 15:59:56 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:05:43 +0200 |
commit | 3724434bc9c8cba10b517dc29fe85a7d93cb1e19 (patch) | |
tree | 721ca75d2cfe79ecf35cb586032955e31e737323 /gnu/packages | |
parent | 09e340ee2ecf19020e3c50f0e3e62069dd3763b2 (diff) | |
download | guix-3724434bc9c8cba10b517dc29fe85a7d93cb1e19.tar.gz |
gnu: Add texlive-romanbar.
* gnu/packages/tex.scm (texlive-romanbar): New variable.
Diffstat (limited to 'gnu/packages')
-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 2c96df481d..79172afcf9 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -94160,6 +94160,29 @@ entries more robust. This bundle provides @file{robustindex.sty} and maintain correct page numbers.") (license license:lppl1.2+))) +(define-public texlive-romanbar + (package + (name "texlive-romanbar") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/romanbar/" + "source/latex/romanbar/" + "tex/latex/romanbar/") + (base32 + "0fq5jlpfj7cz6b4ic6y19sk35z51h6qqkqh0n8kg5snpclag1662"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/romanbar") + (synopsis "Write roman number with bars") + (description + "Bars, in the present context, are lines above and below text that abut with +the text. Barred roman numerals are sometimes found in publications. The +package provides a function that prints barred roman numerals (converting +Arabic numerals if necessary). The package also provides a predicate +@code{\\ifnumeric}.") + (license license:lppl1.3+))) + ;;; ;;; 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 |