summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2023-08-29 16:03:52 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2023-08-31 22:07:08 +0200
commitdb6564f216a7b9915966ebb5b0071fd4c7bd31e5 (patch)
tree49e035a65f6046546a69ccc1b4b08902ac8b8edf
parent86d0c7abe6266a397ce4327e5a23e47ba26d6650 (diff)
gnu: Add texlive-typeface.
* gnu/packages/tex.scm (texlive-typeface): New variable.
-rw-r--r--gnu/packages/tex.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 417a5d2e2b..176d1c69a0 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -98741,6 +98741,33 @@ yield a clearer result and, in the long run, help with training to distinguish
entries of different types.")
(license license:lppl1.2+)))
+(define-public texlive-typeface
+ (package
+ (name "texlive-typeface")
+ (version (number->string %texlive-revision))
+ (source (texlive-origin
+ name version
+ (list "doc/latex/typeface/"
+ "source/latex/typeface/"
+ "tex/latex/typeface/")
+ (base32
+ "0xyqvqvk06ca4rcgw917abprz5qi8kqsrm5z89ws1n72vyzfjhgm")))
+ (outputs '("out" "doc"))
+ (build-system texlive-build-system)
+ (home-page "https://ctan.org/pkg/typeface")
+ (synopsis "Select a balanced set of fonts")
+ (description
+ "The package provides the means of establishing a consistent set of fonts for
+use in a LaTeX document. It allows mixing and matching the Type 1 font sets
+available on the archive. Font-set definition takes the form of a set of
+options that are read when the package is loaded: for each typographic
+category (main body font, sans-serif font, monospace font, mathematics fonts,
+text figures, and so on), a font or a transformation is given in those
+options. The approach enables the user to remember their own
+configurations (as a single command) and to borrow configurations that other
+users have developed.")
+ (license license:lppl1.3+)))
+
;;;
;;; 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