diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-04 18:12:47 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:34 +0200 |
commit | 140a8be632fbe7b31674af72cef9493b3f394e8c (patch) | |
tree | a97d4c48e22c21bab029f90d4db00cbcf2565f8b /gnu/packages | |
parent | 4e59afa458b76ba29ac95e2ea4bce639a4c89ad8 (diff) |
gnu: Add texlive-annee-scolaire.
* gnu/packages/tex.scm (texlive-annee-scolaire): New variable.
Diffstat (limited to 'gnu/packages')
-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 9850cc4f7c..82483a05d2 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -1539,6 +1539,29 @@ is the historical basis of @code{amslatex}, which should now be used to prepare submissions for the AMS.") (license license:lppl))) +(define-public texlive-annee-scolaire + (package + (name "texlive-annee-scolaire") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/annee-scolaire/" + "source/latex/annee-scolaire/" + "tex/latex/annee-scolaire/") + (base32 + "1nwm67p4s822d7r4kr3rbvnm9vlkvzjbikqy8hq2fqsc9bdx34ib"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/annee-scolaire") + (synopsis "Automatically typeset the academic year (French way)") + (description + "This package provides a macro @code{\\anneescolaire} to automatically +write the academic year in the French way, according to the date of +compilation, two other macros to obtain the first and the second calendar year +of the academic year, a macro to be redefined to change the presentation of +the years.") + (license license:lppl1.3c))) + (define-public texlive-annotate-equations (package (name "texlive-annotate-equations") |