diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 16:33:02 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 19:42:00 +0200 |
commit | 83ec59f001934493aa88dac904e9c7d2b261e27d (patch) | |
tree | e662fbae0d09b3a9a67b3c8f3164286968131c8c | |
parent | 7763c64407df186fcaec522140e1497ab8adb4b0 (diff) | |
download | guix-83ec59f001934493aa88dac904e9c7d2b261e27d.tar guix-83ec59f001934493aa88dac904e9c7d2b261e27d.tar.gz |
gnu: Add texlive-mhequ.
* gnu/packages/tex.scm (texlive-mhequ): 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 0bb2158ec0..3cbecd269a 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4877,6 +4877,29 @@ label chemicals. The @code{rsphrase} package provides commands for the official Risk and Safety (R and S) Phrases that are used to label chemicals.") (license license:lppl1.3c))) +(define-public texlive-mhequ + (package + (name "texlive-mhequ") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/mhequ/" "tex/latex/mhequ/") + (base32 + "08k45mklj8ag5z3rmn9c15f6pgixz6pxlip4wp07q4l6xdzkk8fq"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/mhequ") + (synopsis "Multicolumn equations, tags, labels, sub-numbering") + (description + "The @code{mhequ} style file simplifies creating multi-column equation +environments and tagging equations therein. It supports sub-numbering of +blocks of equations, such as @samp{(1.2a)} and @samp{(1.2b)}, references to +each equation individually @samp{(1.2a)} or to the whole block @samp{(1.2)}. +The labels can be shown in draft mode. The default behaviour is to show an +equation number if and only if the equation actually has a label, which +reduces visual clutter.") + (license license:public-domain))) + (define-public texlive-bibtex8 (package (name "texlive-bibtex8") |