ngz pushed a commit to branch master
in repository guix.

commit fd00c53977387ff3d110e39c3d024aea28a89439
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Sun Jul 30 13:00:49 2023 +0200

    gnu: Add texlive-algpseudocodex.
    
    * gnu/packages/tex.scm (texlive-algpseudocodex): New variable.
---
 gnu/packages/tex.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

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")

Reply via email to