gnu: texlive-latex-type1cm -> texlive-type1cm.
* gnu/packages/tex.scm (texlive-type1cm): New variable. (texlive-latex-type1cm): Deprecate variable. * gnu/packages/python-xyz.scm (python-matplotlib-documentation)[native-inputs]: Use new name. Re-order alphabetically.
parent
06bc5b28b0
commit
8844e6072f
|
@ -8032,26 +8032,26 @@ toolkits.")
|
||||||
(list graphviz
|
(list graphviz
|
||||||
inkscape/stable
|
inkscape/stable
|
||||||
python-colorspacious
|
python-colorspacious
|
||||||
|
python-ipython
|
||||||
|
python-ipywidgets
|
||||||
python-mpl-sphinx-theme
|
python-mpl-sphinx-theme
|
||||||
|
python-numpydoc
|
||||||
python-scipy
|
python-scipy
|
||||||
python-sphinx
|
python-sphinx
|
||||||
python-sphinx-copybutton
|
python-sphinx-copybutton
|
||||||
python-sphinx-gallery
|
python-sphinx-gallery
|
||||||
python-sphinxcontrib-svg2pdfconverter
|
python-sphinxcontrib-svg2pdfconverter
|
||||||
python-numpydoc
|
texinfo
|
||||||
python-ipython
|
|
||||||
python-ipywidgets
|
|
||||||
texlive-amsfonts
|
texlive-amsfonts
|
||||||
texlive-amsmath
|
texlive-amsmath
|
||||||
texlive-babel
|
texlive-babel
|
||||||
|
texlive-etoolbox
|
||||||
texlive-expdlist
|
texlive-expdlist
|
||||||
texlive-fontspec
|
texlive-fontspec
|
||||||
texlive-unicode-math
|
|
||||||
texlive-etoolbox
|
|
||||||
texlive-underscore
|
|
||||||
texlive-latex-type1cm
|
|
||||||
texlive-times
|
texlive-times
|
||||||
texinfo))
|
texlive-type1cm
|
||||||
|
texlive-underscore
|
||||||
|
texlive-unicode-math))
|
||||||
(synopsis "Documentation for the @code{python-matplotlib} package")))
|
(synopsis "Documentation for the @code{python-matplotlib} package")))
|
||||||
|
|
||||||
(define-public python-matplotlib-inline
|
(define-public python-matplotlib-inline
|
||||||
|
|
|
@ -7996,35 +7996,33 @@ floats in a page. You may assign headers/footers to individual floats, too.")
|
||||||
|
|
||||||
(define-deprecated-package texlive-latex-titlesec texlive-titlesec)
|
(define-deprecated-package texlive-latex-titlesec texlive-titlesec)
|
||||||
|
|
||||||
(define-public texlive-latex-type1cm
|
(define-public texlive-type1cm
|
||||||
(package
|
(package
|
||||||
(name "texlive-latex-type1cm")
|
(name "texlive-type1cm")
|
||||||
(version (number->string %texlive-revision))
|
(version (number->string %texlive-revision))
|
||||||
(source (origin
|
(source (texlive-origin
|
||||||
(method svn-fetch)
|
name version
|
||||||
(uri (texlive-ref "latex" "type1cm"))
|
(list "doc/latex/type1cm/" "source/latex/type1cm/"
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
"tex/latex/type1cm/")
|
||||||
(sha256
|
(base32
|
||||||
(base32
|
"1922af5xvhrh4l8rqwz3bjd1gqvzfkxrfim28rpnvbx4n7jl6sdh")))
|
||||||
"1lvxrqfwcwa4p31zyfm80gr05v8c28xybv5ri79zi2ngz6834z12"))))
|
(outputs '("out" "doc"))
|
||||||
(build-system texlive-build-system)
|
(build-system texlive-build-system)
|
||||||
(arguments '(#:tex-directory "latex/type1cm"))
|
(home-page "https://ctan.org/pkg/type1cm")
|
||||||
(home-page "https://www.ctan.org/pkg/type1cm")
|
|
||||||
(synopsis "Arbitrary size font selection in LaTeX")
|
(synopsis "Arbitrary size font selection in LaTeX")
|
||||||
(description
|
(description
|
||||||
"LaTeX, by default, restricts the sizes at which you can use its default
|
"LaTeX, by default, restricts the sizes at which you can use its default
|
||||||
computer modern fonts, to a fixed set of discrete sizes (effectively, a set
|
computer modern fonts, to a fixed set of discrete sizes (effectively, a set
|
||||||
specified by Knuth). The @code{type1cm} package removes this restriction;
|
specified by Knuth). The @code{type1cm} package removes this restriction;
|
||||||
this is particularly useful when using scalable versions of the CM
|
this is particularly useful when using scalable versions of the @code{cm}
|
||||||
fonts (Bakoma, or the versions from BSR/Y&Y, or True Type versions from Kinch,
|
fonts (Bakoma, or the versions from BSR/Y&Y, or True Type versions from Kinch,
|
||||||
PCTeX, etc.). In fact, since modern distributions will automatically generate
|
PCTeX, etc.). Note that the LaTeX distribution now contains a package
|
||||||
any bitmap font you might need, @code{type1cm} has wider application than just
|
@code{fix-cm}, which performs the task of @code{type1cm}, as well as doing the
|
||||||
those using scalable versions of the fonts. Note that the LaTeX distribution
|
same job for T1- and TS1-encoded @code{ec} fonts.")
|
||||||
now contains a package @code{fix-cm},f which performs the task of
|
|
||||||
@code{type1cm}, as well as doing the same job for T1- and TS1-encoded
|
|
||||||
@code{ec} fonts.")
|
|
||||||
(license license:lppl)))
|
(license license:lppl)))
|
||||||
|
|
||||||
|
(define-deprecated-package texlive-latex-type1cm texlive-type1cm)
|
||||||
|
|
||||||
(define-public texlive-lh
|
(define-public texlive-lh
|
||||||
(let ((template (simple-texlive-package
|
(let ((template (simple-texlive-package
|
||||||
"texlive-lh"
|
"texlive-lh"
|
||||||
|
|
Reference in New Issue