mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add texlive-stealcaps.
* gnu/packages/tex.scm (texlive-stealcaps): New variable.
This commit is contained in:
parent
5ab8f15b42
commit
a9f0fabe87
1 changed files with 26 additions and 0 deletions
|
@ -96477,6 +96477,32 @@ (define-public texlive-stdpage
|
|||
m characters each.")
|
||||
(license license:lppl1.2+)))
|
||||
|
||||
(define-public texlive-stealcaps
|
||||
(package
|
||||
(name "texlive-stealcaps")
|
||||
(version (number->string %texlive-revision))
|
||||
(source (texlive-origin
|
||||
name version
|
||||
(list "doc/latex/stealcaps/"
|
||||
"source/latex/stealcaps/"
|
||||
"tex/latex/stealcaps/")
|
||||
(base32
|
||||
"05lskyv9k4mgkzw08cknbcgbx6d64my7qjc2jljhqgmjsxd4yh07")))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(arguments (list #:tex-format "latex"))
|
||||
(home-page "https://ctan.org/pkg/stealcaps")
|
||||
(synopsis "``Steal'' small capitals")
|
||||
(description
|
||||
"This little package is mainly meant to be used when there is a (TrueType or
|
||||
OpenType) font that does not provide real small capitals. As a workaround,
|
||||
this package helps to borrow, or steal, the small capitals from another font.
|
||||
This might also be useful in the rare case that someone does not like the
|
||||
present small capitals, and wants to change them, or likes those from another
|
||||
font better. To achieve the borrowing, one only needs to load the package and
|
||||
specify the name of the target font via the from option.")
|
||||
(license license:lppl1.3c)))
|
||||
|
||||
;;;
|
||||
;;; 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
|
||||
|
|
Loading…
Reference in a new issue