me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-ginpenc.

* gnu/packages/tex.scm (texlive-ginpenc): New variable.
master
Nicolas Goaziou 2023-08-29 15:51:18 +02:00
parent 102cbd723b
commit 04e7b82d0e
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 22 additions and 0 deletions

View File

@ -83468,6 +83468,28 @@ environments which structure their data in the same way that @code{itemize} or
within LaTeX.") within LaTeX.")
(license license:expat))) (license license:expat)))
(define-public texlive-ginpenc
(package
(name "texlive-ginpenc")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/ginpenc/" "source/latex/ginpenc/"
"tex/latex/ginpenc/")
(base32
"15kqbgdngw19pnkl9vh94sbdq261lnbi522gxb5h4djsih9pp14p")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(home-page "https://ctan.org/pkg/ginpenc")
(synopsis "Modification of @code{inputenc} for German")
(description
"If @code{inputenc} is used and German umlauts are input directly, they are
converted to the LICR representation such as @samp{\\\"a}. This breaks the
sort algorithm of MakeIndex, for instance. Ginpenc converts umlauts and the
sharp-s to the short forms defined by Babel, e.g., @samp{\"a} instead, if the
text is typeset in German.")
(license license:lppl)))
;;; ;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar ;;; of a merge conflict, place them above by existing packages with similar