diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 13:00:49 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 17:03:09 +0200 |
commit | fd00c53977387ff3d110e39c3d024aea28a89439 (patch) | |
tree | 1522787983b254f96c824aa38caaff8f336e7c91 | |
parent | 7d0c358faaaceecb50725536fa118638a12d7393 (diff) |
gnu: Add texlive-algpseudocodex.
* gnu/packages/tex.scm (texlive-algpseudocodex): 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 6d94554da7..90e2b61393 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -1362,6 +1362,29 @@ style. Within an @code{algorithmic} environment a number of commands for typesetting popular algorithmic constructs are available.") (license license:lgpl2.1))) +(define-public texlive-algpseudocodex + (package + (name "texlive-algpseudocodex") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/algpseudocodex/" + "tex/latex/algpseudocodex/") + (base32 + "1gjcdmzijiagzxwjwygqpbjjapzk9dfljv5d94iabzr8032l9rsh"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/algpseudocodex") + (synopsis "Package for typesetting pseudocode") + (description + "This package allows typesetting pseudocode in LaTeX. It is based on +@code{algpseudocode} from the @code{algorithmicx} package and uses the same +syntax, but adds several new features and improvements. Notable features +include customizable indent guide lines and the ability to draw boxes around +parts of the code for highlighting differences. This package also has better +support for long code lines spanning several lines and improved comments.") + (license license:lppl1.3c))) + (define-public texlive-apnum (package (name "texlive-apnum") |