me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-quotmark.

* gnu/packages/tex.scm (texlive-quotmark): New variable.
master
Nicolas Goaziou 2023-08-29 15:59:21 +02:00
parent 47beef4b24
commit e1da049625
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 26 additions and 0 deletions

View File

@ -93488,6 +93488,32 @@ user to configure font properties and spacing and to control orphans within
and after the environment.") and after the environment.")
(license license:lppl1.3+))) (license license:lppl1.3+)))
(define-public texlive-quotmark
(package
(name "texlive-quotmark")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/quotmark/"
"source/latex/quotmark/"
"tex/latex/quotmark/")
(base32
"1hijpw5d29b6zdgrqrpmg8p5vh9kf3f6kx6r6qr1yc2l7ydscyma")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(home-page "https://ctan.org/pkg/quotmark")
(synopsis "Consistent quote marks")
(description
"The package provides a means of ensuring consistent quote marks throughout
your document. The style can be changed either via package option or command,
and the package detects language selections (from the @code{babel} or
@code{ngerman} packages), and uses the punctuation marks appropriate for the
current language.
The author now considers the package obsolete, and recommends use of
@code{csquotes} in its place.")
(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