diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 15:16:34 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:10:14 +0200 |
commit | 60f0e796488de38ffc688ba764fd4abcaec1a154 (patch) | |
tree | d21c4cf3263c5d1134941415549750bce17aef4a /gnu/packages/tex.scm | |
parent | 77427017f78d40cee70e27074fdf74a781e04df8 (diff) |
gnu: Add texlive-anonymous-acm.
* gnu/packages/tex.scm (texlive-anonymous-acm): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 0dca40640d..fa103802cb 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2607,6 +2607,31 @@ equations and add annotation labels using TikZ. It should work with pdfLaTeX as well as LuaLaTeX.") (license license:expat))) +(define-public texlive-anonymous-acm + (package + (name "texlive-anonymous-acm") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/anonymous-acm/" + "tex/latex/anonymous-acm/") + (base32 + "05csmx485sjky64d2hwlb5f7mrkixhw1gn3nl7p7lng9sd8qh25k"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/anonymous-acm") + (synopsis "Typeset anonymous versions for ACM articles") + (description + "Academics often need to submit anonymous versions of their papers for +peer-review. This often requires anonymization which at some future date +needs to be reversed. However de-anonymizing an anonymized paper can be +laborious and error-prone. This LaTeX package allows anonymization options to +be specified at the time of writing for authors using @code{acmart.cls}, the +official @acronym{ACM, Association of Computing Machinery} master +@code{article} template. Anonymization or deanonymization is carried out by +simply changing one option and recompiling.") + (license license:lppl1.3+))) + (define-public texlive-anonymouspro (package (name "texlive-anonymouspro") |