guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

17/296: gnu: Add texlive-apa7.


From: guix-commits
Subject: 17/296: gnu: Add texlive-apa7.
Date: Thu, 24 Aug 2023 05:19:45 -0400 (EDT)

ngz pushed a commit to branch master
in repository guix.

commit 96c7af79570cee7b20b845c85bc9b6e5a174ab7c
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue Aug 22 15:18:58 2023 +0200

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

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 1deb39a26c..ec7e81e126 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -2826,6 +2826,37 @@ guidelines.  The @code{apa6} class provides better 
coverage of the
 requirements.")
     (license license:bsd-2)))
 
+(define-public texlive-apa7
+  (package
+    (name "texlive-apa7")
+    (version (number->string %texlive-revision))
+    (source (texlive-origin
+             name version
+             (list "doc/latex/apa7/" "source/latex/apa7/"
+                   "tex/latex/apa7/")
+             (base32
+              "0kifjg61s16cn7zvmix2yqdz26spr7f9gsxkiv822qs3y337l6ry")))
+    (outputs '("out" "doc"))
+    (build-system texlive-build-system)
+    (arguments
+     (list #:phases
+           #~(modify-phases %standard-phases
+               ;; ".ins" file writes files to "./config" and "./build".
+               ;; Create these directories first to prevent an error.
+               (add-before 'build 'prepare-build
+                 (lambda _
+                   (for-each mkdir-p (list "build/config" 
"build/samples")))))))
+    (home-page "https://ctan.org/pkg/apa7";)
+    (synopsis "Format documents in APA style (7th edition)")
+    (description
+     "This class formats documents in @acronym{APA, American Psychological
+Association} style (7th Edition).  It provides a full set of facilities in
+four different output modes (journal-like appearance, double-spaced
+manuscript, double-spaced student manuscript, LaTeX-like document).  The class
+can mask author identity for copies for use in masked peer review.  It is
+a development of the @code{apa6} class.")
+    (license license:lppl1.3c)))
+
 (define-public texlive-apalike-ejor
   (package
     (name "texlive-apalike-ejor")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]