gnu: r-with-tests: Work around reproducibility problem.
[jackhill/guix/guix.git] / gnu / packages / tex.scm
CommitLineData
eb0119ef 1;;; GNU Guix --- Functional package management for GNU
4a6635f3 2;;; Copyright © 2013, 2014, 2015, 2016 Andreas Enge <andreas@enge.fr>
42e1394b 3;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
d2e84281 4;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
4791876c 5;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
7a7a2944 6;;; Copyright © 2016, 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
2d634d9b 7;;; Copyright © 2016 Federico Beffa <beffa@fbengineering.ch>
bd917486 8;;; Copyright © 2016 Thomas Danckaert <post@thomasdanckaert.be>
cf4a56d7 9;;; Copyright © 2016, 2017, 2018, 2019, 2020 Ricardo Wurmus <rekado@elephly.net>
149f6688 10;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
85892948 11;;; Copyright © 2017, 2020 Marius Bakke <mbakke@fastmail.com>
585be42f 12;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
ec40a050 13;;; Copyright © 2018 Danny Milosavljevic <dannym+a@scratchpost.org>
3d067528 14;;; Copyright © 2018, 2020 Arun Isaac <arunisaac@systemreboot.net>
5a46779e 15;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
b01c04eb 16;;; Copyright © 2020 Paul Garlick <pgarlick@tourbillion-technology.com>
eb0119ef
AE
17;;;
18;;; This file is part of GNU Guix.
19;;;
20;;; GNU Guix is free software; you can redistribute it and/or modify it
21;;; under the terms of the GNU General Public License as published by
22;;; the Free Software Foundation; either version 3 of the License, or (at
23;;; your option) any later version.
24;;;
25;;; GNU Guix is distributed in the hope that it will be useful, but
26;;; WITHOUT ANY WARRANTY; without even the implied warranty of
27;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28;;; GNU General Public License for more details.
29;;;
30;;; You should have received a copy of the GNU General Public License
31;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
32
8f9ac901 33(define-module (gnu packages tex)
b5b73a82 34 #:use-module ((guix licenses) #:prefix license:)
eb0119ef
AE
35 #:use-module (guix packages)
36 #:use-module (guix download)
37 #:use-module (guix build-system gnu)
ebcf74da 38 #:use-module (guix build-system perl)
3d067528 39 #:use-module (guix build-system python)
e192b9e0 40 #:use-module (guix build-system qt)
0aa34e82 41 #:use-module (guix build-system trivial)
205794c8 42 #:use-module (guix build-system texlive)
6b5eb840 43 #:use-module (guix utils)
83457fe0 44 #:use-module (guix git-download)
9d913b25 45 #:use-module (guix svn-download)
eb0119ef 46 #:use-module (gnu packages)
ec40a050 47 #:use-module (gnu packages algebra)
83457fe0 48 #:use-module (gnu packages autotools)
0aa34e82 49 #:use-module (gnu packages bash)
ec40a050 50 #:use-module (gnu packages boost)
eb0119ef 51 #:use-module (gnu packages compression)
a86177d6 52 #:use-module (gnu packages fontutils)
fd89b36b 53 #:use-module (gnu packages gd)
eb0119ef 54 #:use-module (gnu packages ghostscript)
769bb5e5 55 #:use-module (gnu packages graphviz)
fd89b36b 56 #:use-module (gnu packages gtk)
eb0119ef 57 #:use-module (gnu packages icu4c)
e55354b8 58 #:use-module (gnu packages image)
ec40a050 59 #:use-module (gnu packages libreoffice)
0aa34e82 60 #:use-module (gnu packages lua)
0256c746 61 #:use-module (gnu packages multiprecision)
eb0119ef
AE
62 #:use-module (gnu packages pdf)
63 #:use-module (gnu packages perl)
5ccde207 64 #:use-module (gnu packages perl-check)
eb0119ef
AE
65 #:use-module (gnu packages pkg-config)
66 #:use-module (gnu packages python)
5327e912 67 #:use-module (gnu packages python-xyz)
4791876c 68 #:use-module (gnu packages qt)
b32c8549 69 #:use-module (gnu packages ruby)
b7194849 70 #:use-module (gnu packages shells)
ce0614dd 71 #:use-module (gnu packages base)
c87d8a14 72 #:use-module (gnu packages gawk)
d4000680
RW
73 #:use-module (gnu packages web)
74 #:use-module (gnu packages xml)
c0589f75 75 #:use-module (gnu packages xorg)
ece9b417 76 #:use-module (gnu packages xdisorg)
6a7c4636 77 #:use-module (gnu packages texinfo)
6b5eb840 78 #:use-module (ice-9 ftw)
cb7bc20a 79 #:use-module (ice-9 match)
e93f472d 80 #:use-module ((srfi srfi-1) #:hide (zip)))
eb0119ef 81
8ab600f8
RW
82(define* (simple-texlive-package name locations hash
83 #:key trivial?)
84 "Return a template for a simple TeX Live package with the given NAME,
85downloading from a list of LOCATIONS in the TeX Live repository, and expecting
86the provided output HASH. If TRIVIAL? is provided, all files will simply be
87copied to their outputs; otherwise the TEXLIVE-BUILD-SYSTEM is used."
88 (define with-documentation?
89 (and trivial?
90 (any (lambda (location)
91 (string-prefix? "/doc" location))
92 locations)))
93 (package
94 (name name)
95 (version (number->string %texlive-revision))
96 (source (texlive-origin name version
97 locations hash))
98 (outputs (if with-documentation?
99 '("out" "doc")
100 '("out")))
101 (build-system (if trivial?
102 gnu-build-system
103 texlive-build-system))
104 (arguments
105 (let ((copy-files
106 `(lambda* (#:key outputs inputs #:allow-other-keys)
107 (let (,@(if with-documentation?
108 `((doc (string-append (assoc-ref outputs "doc")
109 "/share/texmf-dist/")))
110 '())
111 (out (string-append (assoc-ref outputs "out")
112 "/share/texmf-dist/")))
113 ,@(if with-documentation?
114 '((mkdir-p doc)
115 (copy-recursively
116 (string-append (assoc-ref inputs "source") "/doc")
117 (string-append doc "/doc")))
118 '())
119 (mkdir-p out)
120 (copy-recursively (assoc-ref inputs "source") out)
121 ,@(if with-documentation?
122 '((delete-file-recursively (string-append out "/doc")))
123 '())
124 #t))))
125 (if trivial?
126 `(#:tests? #f
127 #:phases
128 (modify-phases %standard-phases
129 (delete 'configure)
130 (replace 'build (const #t))
131 (replace 'install ,copy-files)))
132 `(#:phases
133 (modify-phases %standard-phases
134 (add-after 'install 'copy-files ,copy-files))))))
135 (home-page #f)
136 (synopsis #f)
137 (description #f)
138 (license #f)))
139
28e521e9
RW
140(define hyph-utf8-scripts
141 (origin
142 (method svn-fetch)
143 (uri (texlive-ref "generic" "hyph-utf8"))
144 (file-name (string-append "hyph-utf8-scripts-"
145 (number->string %texlive-revision)
146 "-checkout"))
147 (sha256
148 (base32
85892948 149 "0lk7shx768sxvgr85y8bnmmnj8x4bbkgpxrz3z8jp8avi33prw83"))))
28e521e9 150
cf4c07b9 151(define (texlive-hyphen-package name code locations hash)
85892948
MB
152 "Return a TeX Live hyphenation package with the given NAME, using source
153files from LOCATIONS with expected checksum HASH. CODE is not currently in use."
cf4c07b9
RW
154 (let ((parent (simple-texlive-package
155 name locations hash #:trivial? #t)))
156 (package
157 (inherit parent)
158 (arguments
159 (substitute-keyword-arguments (package-arguments parent)
cf4c07b9
RW
160 ((#:phases phases)
161 `(modify-phases ,phases
162 (replace 'build
163 (lambda* (#:key inputs outputs #:allow-other-keys)
164 (let* ((out (assoc-ref outputs "out"))
165 (root (string-append out "/share/texmf-dist"))
166 (patterns
167 (string-append root "/tex/generic/hyph-utf8/patterns/txt/"))
168 (loaders
169 (string-append root "/tex/generic/hyph-utf8/loadhyph"))
170 (ptex
171 (string-append root "/tex/generic/hyph-utf8/patterns/ptex"))
85892948
MB
172 (quote
173 (string-append root "/tex/generic/hyph-utf8/patterns/quote")))
cf4c07b9
RW
174 (mkdir "scripts")
175 (copy-recursively
176 (assoc-ref inputs "hyph-utf8-scripts") "scripts")
177
178 ;; Prepare target directories
179 (mkdir-p patterns)
180 (mkdir-p loaders)
181 (mkdir-p ptex)
85892948 182 (mkdir-p quote)
cf4c07b9
RW
183
184 ;; Generate plain patterns
185 (with-directory-excursion "scripts"
85892948
MB
186 (substitute* "lib/tex/hyphen/path.rb"
187 (("^([[:blank:]]+)TeXROOT = .*" _ indent)
188 (string-append indent "TeXROOT = \""
189 (getcwd) "/..\"\n")))
190
cf4c07b9
RW
191 (substitute* "generate-plain-patterns.rb"
192 ;; Ruby 2 does not need this.
193 (("require 'unicode'") "")
cf4c07b9 194 ;; Write directly to the output directory
85892948
MB
195 (("File\\.join\\(PATH::TXT")
196 (string-append "File.join(\"" patterns "\""))
197 (("File\\.join\\(PATH::QUOTE")
198 (string-append "File.join(\"" quote "\"")))
cf4c07b9
RW
199 (invoke "ruby" "generate-plain-patterns.rb")
200
201 ;; Build pattern loaders
202 (substitute* "generate-pattern-loaders.rb"
85892948
MB
203 (("File\\.join\\(PATH::LOADER")
204 (string-append "File.join(\"" loaders "\"")))
205
cf4c07b9
RW
206 (invoke "ruby" "generate-pattern-loaders.rb")
207
208 ;; Build ptex patterns
209 (substitute* "generate-ptex-patterns.rb"
85892948
MB
210 (("File\\.join\\(PATH::PTEX")
211 (string-append "File.join(\"" ptex "\"")))
cf4c07b9
RW
212 (invoke "ruby" "generate-ptex-patterns.rb")))))))))
213 (native-inputs
214 `(("ruby" ,ruby)
85892948 215 ("ruby-hydra" ,ruby-hydra)
cf4c07b9
RW
216 ("hyph-utf8-scripts" ,hyph-utf8-scripts)))
217 (home-page "https://ctan.org/pkg/hyph-utf8"))))
218
eb0119ef
AE
219(define texlive-extra-src
220 (origin
221 (method url-fetch)
1f2ef813 222 (uri "ftp://tug.org/historic/systems/texlive/2019/texlive-20190410-extra.tar.xz")
eb0119ef 223 (sha256 (base32
1f2ef813 224 "13ncf2an4nlqv18lki6y2p6pcsgs1i54zqkhfwprax5j53bk70j8"))))
eb0119ef
AE
225
226(define texlive-texmf-src
227 (origin
228 (method url-fetch)
85892948 229 (uri "ftp://tug.org/historic/systems/texlive/2019/texlive-20190410-texmf.tar.xz")
eb0119ef 230 (sha256 (base32
85892948 231 "00n4qh9fj8v9zzy3y488hpfq1g3dnnh72y4yjsaikfcqpi59gv62"))))
eb0119ef 232
3abe72bd 233(define-public texlive-bin
eb0119ef 234 (package
0aa34e82 235 (name "texlive-bin")
1f2ef813 236 (version "20190410")
0aa34e82
AE
237 (source
238 (origin
3e1ebaab 239 (method url-fetch)
1f2ef813 240 (uri (string-append "ftp://tug.org/historic/systems/texlive/2019/"
149f6688 241 "texlive-" version "-source.tar.xz"))
3e1ebaab
RW
242 (sha256
243 (base32
1f2ef813 244 "1dfps39q6bdr1zsbp9p74mvalmy3bycihv19sb9c6kg30kprz8nj"))
594156ec 245 (patches
0fa50555
MB
246 (let ((arch-patch
247 (lambda (name revision hash)
248 (origin
249 (method url-fetch)
250 (uri (string-append "https://git.archlinux.org/svntogit/packages.git"
251 "/plain/trunk/" name "?h=packages/texlive-bin"
252 "&id=" revision))
253 (file-name (string-append "texlive-bin-" name))
254 (sha256 (base32 hash)))))
1f2ef813
MB
255 (arch-revision "49d7fe25e5ea63f136ebc20270c1d8fc9b00041c"))
256 (list
257 (arch-patch "pdftex-poppler0.76.patch" arch-revision
258 "03vc88dz37mjjyaspzv0fik2fp5gp8qv82114869akd1dhszbaax")
259 (search-patch "texlive-bin-poppler-0.83.patch")
260 (arch-patch "texlive-poppler-0.84.patch" arch-revision
44a33ee9
MB
261 "1ia6cr99krk4ipx4hdi2qdb98bh2h26mckjlpxdzrjnfhlnghksa")
262 (search-patch "texlive-bin-poppler-0.86.patch"))))
928fc7c5
MB
263 (modules '((guix build utils)
264 (ice-9 ftw)))
265 (snippet
266 '(begin
267 (with-directory-excursion "libs"
268 (let ((preserved-directories '("." ".." "lua53" "luajit")))
269 ;; Delete bundled software, except Lua which cannot easily be
270 ;; used as an external dependency.
271 (for-each delete-file-recursively
272 (scandir "."
273 (lambda (file)
274 (and (not (member file preserved-directories))
275 (eq? 'directory (stat:type (stat file)))))))))
276 ;; TODO: Unbundle stuff in texk/dvisvgm/dvisvgm-src/libs too.
277 #t))))
eb0119ef 278 (build-system gnu-build-system)
0aa34e82
AE
279 (inputs
280 `(("texlive-extra-src" ,texlive-extra-src)
dfdc002c
RW
281 ("texlive-scripts"
282 ,(origin
283 (method svn-fetch)
284 (uri (svn-reference
285 (url (string-append "svn://www.tug.org/texlive/tags/"
286 %texlive-tag "/Master/texmf-dist/"
287 "/scripts/texlive"))
288 (revision %texlive-revision)))
289 (file-name (string-append "texlive-scripts-"
290 (number->string %texlive-revision)
291 "-checkout"))
292 (sha256
293 (base32
1f2ef813 294 "1cj04svl8bpfwjr4gqfcc04rmklz3aggrxvgj7q5bxrh7c7g18xh"))))
0aa34e82
AE
295 ("cairo" ,cairo)
296 ("fontconfig" ,fontconfig)
297 ("fontforge" ,fontforge)
298 ("freetype" ,freetype)
299 ("gd" ,gd)
0256c746 300 ("gmp" ,gmp)
0aa34e82
AE
301 ("ghostscript" ,ghostscript)
302 ("graphite2" ,graphite2)
303 ("harfbuzz" ,harfbuzz)
304 ("icu4c" ,icu4c)
305 ("libpaper" ,libpaper)
306 ("libpng" ,libpng)
307 ("libxaw" ,libxaw)
308 ("libxt" ,libxt)
0256c746 309 ("mpfr" ,mpfr)
0aa34e82
AE
310 ("perl" ,perl)
311 ("pixman" ,pixman)
312 ("poppler" ,poppler)
313 ("potrace" ,potrace)
314 ("python" ,python-2) ; incompatible with Python 3 (print syntax)
315 ("ruby" ,ruby)
316 ("tcsh" ,tcsh)
317 ("teckit" ,teckit)
318 ("zlib" ,zlib)
319 ("zziplib" ,zziplib)))
c4c4cc05 320 (native-inputs
e9a6d225 321 `(("pkg-config" ,pkg-config)))
eb0119ef
AE
322 (arguments
323 `(#:out-of-source? #t
324 #:configure-flags
46fd8303
MB
325 '("--disable-static"
326 "--disable-native-texlive-build"
fd89b36b 327 "--with-system-cairo"
eb0119ef 328 "--with-system-freetype2"
fd89b36b 329 "--with-system-gd"
0256c746 330 "--with-system-gmp"
be2c88ca 331 "--with-system-graphite2"
c70cf7eb 332 "--with-system-harfbuzz"
eb0119ef
AE
333 "--with-system-icu"
334 "--with-system-libgs"
609578a7 335 "--with-system-libpaper"
eb0119ef 336 "--with-system-libpng"
0256c746 337 "--with-system-mpfr"
fd89b36b 338 "--with-system-pixman"
eb0119ef 339 "--with-system-poppler"
75916982 340 "--with-system-potrace"
eb0119ef
AE
341 "--with-system-teckit"
342 "--with-system-xpdf"
343 "--with-system-zlib"
344 "--with-system-zziplib")
2f4640e3 345
7683bf11
EB
346 ;; Disable tests on mips64/aarch64 to cope with a failure of luajiterr.test.
347 ;; XXX FIXME fix luajit properly on mips64 and aarch64.
348 #:tests? ,(let ((s (or (%current-target-system)
349 (%current-system))))
350 (not (or (string-prefix? "aarch64" s)
351 (string-prefix? "mips64" s))))
eb0119ef 352 #:phases
3e1ebaab 353 (modify-phases %standard-phases
f1728d43 354 (add-after 'unpack 'configure-ghostscript-executable
3e1ebaab
RW
355 ;; ps2eps.pl uses the "gswin32c" ghostscript executable on Windows,
356 ;; and the "gs" ghostscript executable on Unix. It detects Unix by
357 ;; checking for the existence of the /usr/bin directory. Since
59e80445 358 ;; Guix System does not have /usr/bin, it is also detected as Windows.
f1728d43 359 (lambda* (#:key inputs #:allow-other-keys)
3e1ebaab
RW
360 (substitute* "utils/ps2eps/ps2eps-src/bin/ps2eps.pl"
361 (("gswin32c") "gs"))
f1728d43
RW
362 (substitute* "texk/texlive/linked_scripts/epstopdf/epstopdf.pl"
363 (("\"gs\"")
364 (string-append "\"" (assoc-ref inputs "ghostscript") "/bin/gs\"")))
365 #t))
366 (add-after 'unpack 'use-code-for-new-poppler
367 (lambda _
1a753d56 368 (copy-file "texk/web2c/pdftexdir/pdftoepdf-poppler0.76.0.cc"
f1728d43 369 "texk/web2c/pdftexdir/pdftoepdf.cc")
1a753d56 370 (copy-file "texk/web2c/pdftexdir/pdftosrc-poppler0.76.0.cc"
f1728d43 371 "texk/web2c/pdftexdir/pdftosrc.cc")
3e1ebaab 372 #t))
1f2ef813 373 (add-after 'unpack 'patch-dvisvgm-build-files
9df39750 374 (lambda _
1f2ef813
MB
375 ;; XXX: Ghostscript is detected, but HAVE_LIBGS is never set, so
376 ;; the appropriate linker flags are not added.
377 (substitute* "texk/dvisvgm/configure"
378 (("^have_libgs=yes" all)
379 (string-append all "\nHAVE_LIBGS=1")))
9df39750 380 #t))
be200ef3
MB
381 (add-after 'unpack 'disable-failing-test
382 (lambda _
383 ;; FIXME: This test fails on 32-bit architectures since Glibc 2.28:
384 ;; <https://bugzilla.redhat.com/show_bug.cgi?id=1631847>.
385 (substitute* "texk/web2c/omegafonts/check.test"
21f7d88e 386 (("^\\./omfonts -ofm2opl \\$srcdir/tests/check tests/xcheck \\|\\| exit 1")
be200ef3
MB
387 "./omfonts -ofm2opl $srcdir/tests/check tests/xcheck || exit 77"))
388 #t))
3e1ebaab
RW
389 (add-after 'install 'postint
390 (lambda* (#:key inputs outputs #:allow-other-keys #:rest args)
391 (let* ((out (assoc-ref outputs "out"))
392 (share (string-append out "/share"))
393 (texlive-extra (assoc-ref inputs "texlive-extra-src"))
394 (unpack (assoc-ref %standard-phases 'unpack))
395 (patch-source-shebangs
396 (assoc-ref %standard-phases 'patch-source-shebangs)))
1574932d
RW
397 (substitute* (string-append share "/texmf-dist/web2c/texmf.cnf")
398 ;; Don't truncate lines.
399 (("^error_line = .*$") "error_line = 254\n")
400 (("^half_error_line = .*$") "half_error_line = 238\n")
401 (("^max_print_line = .*$") "max_print_line = 1000\n"))
3e1ebaab
RW
402 ;; Create symbolic links for the latex variants and their
403 ;; man pages.
404 (with-directory-excursion (string-append out "/bin/")
405 (for-each symlink
406 '("pdftex" "pdftex" "xetex" "luatex")
407 '("latex" "pdflatex" "xelatex" "lualatex")))
408 (with-directory-excursion (string-append share "/man/man1/")
409 (symlink "luatex.1" "lualatex.1"))
410 ;; Unpack texlive-extra and install tlpkg.
411 (mkdir "texlive-extra")
412 (with-directory-excursion "texlive-extra"
413 (apply unpack (list #:source texlive-extra))
414 (apply patch-source-shebangs (list #:source texlive-extra))
415 (invoke "mv" "tlpkg" share))
dfdc002c
RW
416 (let ((scripts (string-append share "/texmf-dist/scripts/texlive/")))
417 (mkdir-p scripts)
418 (copy-recursively (assoc-ref inputs "texlive-scripts") scripts)
419 ;; Make sure that fmtutil can find its Perl modules.
420 (substitute* (string-append scripts "fmtutil.pl")
421 (("\\$TEXMFROOT/") (string-append share "/"))))
422
3e1ebaab
RW
423 ;; texlua shebangs are not patched by the patch-source-shebangs
424 ;; phase because the texlua executable does not exist at that
425 ;; time.
426 (setenv "PATH" (string-append (getenv "PATH") ":" out "/bin"))
427 (with-directory-excursion out
428 (patch-source-shebangs))))))))
a1b4d62c
RW
429 (native-search-paths
430 (list (search-path-specification
431 (variable "TEXMF")
432 (files '("share/texmf-dist"))
433 (separator #f))
434 (search-path-specification
435 (variable "TEXMFCNF")
436 (files '("share/texmf-dist/web2c"))
437 (separator #f))))
0aa34e82
AE
438 (synopsis "TeX Live, a package of the TeX typesetting system")
439 (description
440 "TeX Live provides a comprehensive TeX document production system.
441It includes all the major TeX-related programs, macro packages, and fonts
442that are free software, including support for many languages around the
443world.
444
445This package contains the binaries.")
132e14b4
EF
446 (license (license:fsf-free "https://www.tug.org/texlive/copying.html"))
447 (home-page "https://www.tug.org/texlive/")))
0aa34e82 448
2cece695 449\f
7a9b737a 450(define texlive-docstrip
9d913b25 451 (package
7a9b737a
RW
452 (inherit (simple-texlive-package
453 "texlive-docstrip"
454 (list "/tex/latex/base/docstrip.tex")
455 (base32
85892948 456 "1f9sx1lp7v34zwm186msf03q2h28rrg0lh65z59zc0cvqffs6dvb")
7a9b737a
RW
457 #:trivial? #t))
458 (home-page "https://www.ctan.org/texlive")
459 (synopsis "Utility to strip documentation from TeX files.")
460 (description "This package provides the docstrip utility to strip
461documentation from TeX files. It is part of the LaTeX base.")
462 (license license:lppl1.3+)))
9d913b25 463
2cece695 464(define-public texlive-unicode-data
99952c53 465 (package
2cece695
RW
466 (inherit (simple-texlive-package
467 "texlive-unicode-data"
468 (list "/tex/generic/unicode-data/"
469 "/doc/generic/unicode-data/")
470 (base32
85892948 471 "0zy4v9y667cka5fi4dnc6x500907812y7pcaf63s5qxi8l7khxxy")
2cece695 472 #:trivial? #t))
b8d8806b 473 (home-page "https://www.ctan.org/pkg/unicode-data")
99952c53
RW
474 (synopsis "Unicode data and loaders for TeX")
475 (description "This bundle provides generic access to Unicode Consortium
476data for TeX use. It contains a set of text files provided by the Unicode
477Consortium which are currently all from Unicode 8.0.0, with the exception of
478@code{MathClass.txt} which is not currently part of the Unicode Character
479Database. Accompanying these source data are generic TeX loader files
480allowing this data to be used as part of TeX runs, in particular in building
481format files. Currently there are two loader files: one for general character
482set up and one for initializing XeTeX character classes as has been carried
483out to date by @code{unicode-letters.tex}. ")
484 (license license:lppl1.3c+)))
485
2cece695
RW
486(define-public texlive-generic-unicode-data
487 (deprecated-package "texlive-generic-unicode-data" texlive-unicode-data))
488
92b4a48c
RW
489(define-public texlive-hyphen-base
490 (package
491 (inherit (simple-texlive-package
492 "texlive-hyphen-base"
493 (list "/tex/generic/config/language.dat"
494 "/tex/generic/config/language.dat.lua"
495 "/tex/generic/config/language.def"
496 "/tex/generic/config/language.us"
497 "/tex/generic/config/language.us.def"
498 "/tex/generic/config/language.us.lua"
499 "/tex/generic/hyphen/dumyhyph.tex"
500 "/tex/generic/hyphen/hyphen.tex"
501 "/tex/generic/hyphen/hypht1.tex"
502 "/tex/generic/hyphen/zerohyph.tex")
503 (base32
85892948 504 "0f19nml4hdx9lh7accqdk1b9ismwfm2523l5zsc4kb4arysgcakz")
92b4a48c
RW
505 #:trivial? #t))
506 (home-page "https://tug.org/texlive/")
507 (synopsis "Core hyphenation support files")
508 (description "This package includes Knuth's original @file{hyphen.tex},
509@file{zerohyph.tex} to disable hyphenation, @file{language.us} which starts
510the autogenerated files @file{language.dat} and @file{language.def} (and
511default versions of those), etc.")
512 (license license:knuth)))
513
9d913b25 514(define-public texlive-dvips
9e99b1b4 515 (package
659fda6c
RW
516 (inherit (simple-texlive-package
517 "texlive-dvips"
b93d9dac
RW
518 (list "/doc/man/man1/afm2tfm.1"
519 "/doc/man/man1/dvips.1"
520 "/dvips/base/"
521 "/dvips/config/"
659fda6c 522 "/fonts/enc/dvips/base/"
b93d9dac 523 "/tex/generic/dvips/")
659fda6c 524 (base32
b93d9dac 525 "1qr7h0ahycmz5wmpv54glfss9jqdmmyymj6kim626d1c8v9bmg86")
659fda6c 526 #:trivial? #t))
b8d8806b 527 (home-page "https://www.ctan.org/pkg/dvips")
9d913b25
RW
528 (synopsis "DVI to PostScript drivers")
529 (description "This package provides files needed for converting DVI files
530to PostScript.")
b93d9dac 531 (license license:lppl)))
9e99b1b4 532
b8df0d1b 533(define-public texlive-tex-ini-files
453aae66 534 (package
b8df0d1b
RW
535 (inherit (simple-texlive-package
536 "texlive-tex-ini-files"
537 (list "/tex/generic/tex-ini-files/")
538 (base32
539 "0q1g62jg0qiqslm93ycvm30bw8ydmssjdshzsnzl7n2vpd62qfi2")
540 #:trivial? #t))
b8d8806b 541 (home-page "https://www.ctan.org/pkg/tex-ini-files")
453aae66
RW
542 (synopsis "Files for creating TeX formats")
543 (description "This bundle provides a collection of model \".ini\" files
544for creating TeX formats. These files are commonly used to introduced
545distribution-dependent variations in formats. They are also used to
546allow existing format source files to be used with newer engines, for example
547to adapt the plain e-TeX source file to work with XeTeX and LuaTeX.")
548 (license license:public-domain)))
549
b8df0d1b
RW
550(define-public texlive-generic-tex-ini-files
551 (deprecated-package "texlive-generic-tex-ini-files" texlive-tex-ini-files))
9b134da8 552
8ada0f0b
RW
553(define-public texlive-metafont-base
554 (package
555 (name "texlive-metafont-base")
556 (version (number->string %texlive-revision))
557 (source (origin
558 (method svn-fetch)
559 (uri (svn-reference
560 (url (string-append "svn://www.tug.org/texlive/tags/"
561 %texlive-tag "/Master/texmf-dist/"
562 "/metafont"))
563 (revision %texlive-revision)))
1dec413a 564 (file-name (string-append name "-" version "-checkout"))
8ada0f0b
RW
565 (sha256
566 (base32
567 "1yl4n8cn5xqk2nc22zgzq6ymd7bhm6xx1mz3azip7i3ki4bhb5q5"))))
568 (build-system gnu-build-system)
569 (arguments
570 `(#:tests? #f ; no test target
571 #:phases
572 (modify-phases %standard-phases
573 (delete 'configure)
574 (replace 'build
575 (lambda* (#:key inputs #:allow-other-keys)
576 (let ((cwd (getcwd)))
577 (setenv "MFINPUTS"
578 (string-append cwd "/base:"
579 cwd "/misc:"
580 cwd "/roex:"
581 cwd "/feynmf:"
582 cwd "/mfpic:"
583 cwd "/config")))
584 (mkdir "build")
585 (with-directory-excursion "build"
3730a107 586 (invoke "inimf" "mf.mf"))))
8ada0f0b
RW
587 (replace 'install
588 (lambda* (#:key outputs #:allow-other-keys)
589 (let* ((out (assoc-ref outputs "out"))
590 (base (string-append out "/share/texmf-dist/web2c"))
591 (mf (string-append out "/share/texmf-dist/metafont/base")))
592 (mkdir-p base)
593 (mkdir-p mf)
594 (install-file "build/mf.base" base)
595 (copy-recursively "base" mf)
596 #t))))))
597 (native-inputs
598 `(("texlive-bin" ,texlive-bin)))
b8d8806b 599 (home-page "https://www.ctan.org/pkg/metafont")
8ada0f0b
RW
600 (synopsis "Metafont base files")
601 (description "This package provides the Metafont base files needed to
602build fonts using the Metafont system.")
603 (license license:knuth)))
604
e9816fcb
RW
605(define-public texlive-fontinst
606 (let ((template (simple-texlive-package
607 "texlive-fontinst"
608 (list "/doc/fonts/fontinst/"
609 "/doc/man/man1/fontinst.1"
610 "/doc/man/man1/fontinst.man1.pdf"
611
612 ;; This is used to build parts of
613 ;; /tex/fontinst/{base,misc}/ and
614 ;; /tex/latex/fontinst/fontdoc.sty.
615 "/source/fontinst/base/"
616
617 ;; These are not generated.
618 "/tex/fontinst/base/bbox.sty"
619 "/tex/fontinst/base/multislot.sty"
620 "/tex/fontinst/misc/glyphbox.mtx"
621 "/tex/fontinst/misc/glyphoff.mtx"
622 "/tex/fontinst/misc/glyphon.mtx"
623 "/tex/fontinst/misc/kernoff.mtx"
624 "/tex/fontinst/misc/kernon.mtx"
625
626 "/tex/fontinst/latinetx/"
627 "/tex/fontinst/latinmtx/"
628 "/tex/fontinst/mathmtx/"
629 "/tex/fontinst/smblmtx/"
630
631 "/scripts/texlive/fontinst.sh")
632 (base32
85892948 633 "0lprwib7n2ygfxvrw675vhif7ghyip2x6k70kqs9syp8lqxiizf8")
e9816fcb
RW
634 #:trivial? #t)))
635 (package
636 (inherit template)
637 (arguments
638 (substitute-keyword-arguments (package-arguments template)
639 ((#:modules _ '())
640 '((guix build gnu-build-system)
641 (guix build utils)
642 (ice-9 match)))
643 ((#:phases phases)
644 `(modify-phases ,phases
645 (replace 'build
646 (lambda* (#:key inputs #:allow-other-keys)
647 (setenv "TEXINPUTS"
648 (string-append (getcwd) "//:"
649 (getcwd) "/source/fontinst/base//:"
650 (assoc-ref inputs "texlive-docstrip") "//"))
651 (mkdir "build")
652 (invoke "tex" "-ini" "-interaction=scrollmode"
653 "-output-directory=build"
654 "fontinst.ins")))
655 ;; Since we're using docstrip without LaTeX we can't set \UseTDS
656 ;; or \BaseDirectory, so the generated files are just dumped in
657 ;; the "build" directory.
658 (add-after 'install 'install-generated-files
659 (lambda* (#:key outputs #:allow-other-keys)
660 (let* ((out (assoc-ref outputs "out"))
661 (root (string-append out "/share/texmf-dist")))
662 (for-each (match-lambda
663 ((dir files ...)
664 (for-each (lambda (file)
665 (install-file
666 (string-append "build/" file)
667 (string-append root dir)))
668 files)))
669 '(("/tex/fontinst/base"
670 "fontinst.sty"
671 "cfntinst.sty"
672 "xfntinst.sty"
673 "finstmsc.sty"
674 "fontinst.ini")
675 ("/tex/fontinst/misc"
676 "csc2x.tex"
677 "csckrn2x.tex"
678 "osf2x.tex")
679 ("/tex/latex/fontinst"
680 "fontdoc.sty")))
681 #t)))))))
682 (native-inputs
683 `(("texlive-bin" ,texlive-bin)
684 ("texlive-docstrip" ,texlive-docstrip)))
685 (home-page "https://www.ctan.org/pkg/fontinst")
686 (synopsis "Tools for converting and installing fonts for TeX and LaTeX")
687 (description "This package provides TeX macros for converting Adobe Font
513fff4c
RW
688Metric files to TeX metric and virtual font format. Fontinst helps mainly
689with the number crunching and shovelling parts of font installation. This
690means in practice that it creates a number of files which give the TeX
691metrics (and related information) for a font family that TeX needs to do any
692typesetting in these fonts.")
e9816fcb
RW
693 (license license:lppl1.1+))))
694
695(define-public texlive-tex-fontinst-base
696 (deprecated-package "texlive-tex-fontinst-base" texlive-fontinst))
513fff4c 697
dea67d8a
RW
698(define-public texlive-fontname
699 (package
14a87760
RW
700 (inherit (simple-texlive-package
701 "texlive-fontname"
702 (list "/doc/fonts/fontname/fontname.texi"
703 "/fonts/map/fontname/")
704 (base32
705 "0h5im5rnhycrrkd6z10f17m2caa8lv594wf482b68qjmnxfrqnxj")
706 #:trivial? #t))
dea67d8a
RW
707 (home-page "https://www.ctan.org/pkg/fontname")
708 (synopsis "Scheme for naming fonts in TeX")
709 (description "This is Fontname, a naming scheme for (the base part of)
710external TeX font filenames. This makes at most eight-character names
711from (almost) arbitrarily complex font names, thus helping portability of TeX
712documents.")
713 (license license:public-domain)))
714
b7d779db
RW
715(define-public texlive-cm
716 (let ((template (simple-texlive-package
717 "texlive-cm"
718 (list "/fonts/source/public/cm/"
719 "/fonts/map/dvips/cm/cmtext-bsr-interpolated.map"
720 "/doc/fonts/cm/")
721 (base32
85892948 722 "09mvl94qrwlb9b4pkigi151l256v3djhwl4m5lgvk6yhn5y75zrp")
b7d779db
RW
723 #:trivial? #t)))
724 (package
725 (inherit template)
726 (arguments
727 (substitute-keyword-arguments (package-arguments template)
728 ((#:modules modules '())
729 '((guix build gnu-build-system)
730 (guix build utils)
731 (srfi srfi-26)))
732 ((#:phases phases)
733 `(modify-phases ,phases
734 (replace 'build
735 (lambda* (#:key inputs #:allow-other-keys)
736 (let ((mf (assoc-ref inputs "texlive-metafont-base")))
737 ;; Tell mf where to find mf.base
738 (setenv "MFBASES" (string-append mf "/share/texmf-dist/web2c"))
739 ;; Tell mf where to look for source files
740 (setenv "MFINPUTS"
741 (string-append (getcwd) "/fonts/source/public/cm/:"
742 mf "/share/texmf-dist/metafont/base")))
743 (for-each make-file-writable
744 (cons "fonts/source/public/cm/"
745 (find-files "fonts/source/public/cm/" ".*")))
746 (let ((build (string-append (getcwd) "/build"))
747 (pkdir (string-append (getcwd) "/pk/ljfour/public/cm/dpi600")))
748 (mkdir-p pkdir)
749 (mkdir-p build)
750 (with-directory-excursion "fonts/source/public/cm/"
751 (for-each (lambda (font)
752 (format #t "building font ~a\n" font)
753 (invoke "mf" "-progname=mf"
754 (string-append "-output-directory=" build)
755 (string-append "\\"
756 "mode:=ljfour; "
757 "mag:=1+0/600; "
758 "scrollmode; "
759 "input "
760 (basename font ".mf")))
761 (invoke "gftopk"
762 (string-append build "/"
763 (basename font ".mf") ".600gf")
764 (string-append pkdir "/"
765 (basename font ".mf") ".pk")))
766 (find-files "." "cm(.*[0-9]+.*|inch)\\.mf$"))))
767 #t))
768 (add-after 'install 'install-generated-fonts
769 (lambda* (#:key inputs outputs #:allow-other-keys)
770 (let* ((out (assoc-ref outputs "out"))
771 (fonts (string-append out "/share/texmf-dist/fonts/"))
772 (pk (string-append fonts "pk"))
773 (tfm (string-append fonts "tfm/public/cm")))
774 (for-each (cut install-file <> tfm)
775 (find-files "build" "\\.*"))
776 (copy-recursively "pk" pk)
777 #t)))))))
778 (native-inputs
779 `(("texlive-bin" ,texlive-bin)
780 ("texlive-metafont-base" ,texlive-metafont-base)))
781 (home-page "https://www.ctan.org/pkg/cm")
782 (synopsis "Computer Modern fonts for TeX")
783 (description "This package provides the Computer Modern fonts by Donald
3c4f1ec7
RW
784Knuth. The Computer Modern font family is a large collection of text,
785display, and mathematical fonts in a range of styles, based on Monotype Modern
7868A.")
b7d779db
RW
787 (license license:knuth))))
788
3c4f1ec7 789(define-public texlive-fonts-cm
b7d779db 790 (deprecated-package "texlive-fonts-cm" texlive-cm))
3c4f1ec7 791
cdc96092
RW
792(define-public texlive-cm-super
793 (let ((template (simple-texlive-package
794 "texlive-cm-super"
795 (list "/doc/fonts/cm-super/"
796 "/dvips/cm-super/"
797 "/fonts/afm/public/cm-super/"
798 "/fonts/enc/dvips/cm-super/"
799 "/fonts/map/dvips/cm-super/"
800 "/fonts/map/vtex/cm-super/"
801 "/fonts/type1/public/cm-super/"
802 "/tex/latex/cm-super/")
803 (base32
804 "1k3afl0x0bqbr5mnawbnp7rr2126dwn0vwnxzibm9ggvzqilnkm6")
805 #:trivial? #t)))
806 (package
807 (inherit template)
808 (arguments
809 (substitute-keyword-arguments (package-arguments template)
810 ((#:phases phases)
811 `(modify-phases ,phases
812 (delete 'reset-gzip-timestamps)))))
813 (home-page "https://www.ctan.org/pkg/cm-super")
814 (synopsis "Computer Modern Super family of fonts")
815 (description "The CM-Super family provides Adobe Type 1 fonts that replace
4e9242aa
RW
816the T1/TS1-encoded Computer Modern (EC/TC), T1/TS1-encoded Concrete,
817T1/TS1-encoded CM bright and LH Cyrillic fonts (thus supporting all European
818languages except Greek), and bringing many ameliorations in typesetting
819quality. The fonts exhibit the same metrics as the METAFONT-encoded
820originals.")
cdc96092
RW
821 ;; With font exception
822 (license license:gpl2+))))
4e9242aa 823
cdc96092
RW
824(define-public texlive-fonts-cm-super
825 (deprecated-package "texlive-fonts-cm-super" texlive-cm-super))
4e9242aa 826
114a5d85 827(define-public texlive-lm
c2a1fe4a 828 (package
114a5d85
RW
829 (inherit (simple-texlive-package
830 "texlive-lm"
831 (list "/doc/fonts/lm/"
832 "/fonts/afm/public/lm/"
833 "/fonts/enc/dvips/lm/"
834 "/fonts/map/dvipdfm/lm/"
835 "/fonts/map/dvips/lm/"
836 "/fonts/opentype/public/lm/"
837 "/fonts/tfm/public/lm/"
838 "/fonts/type1/public/lm/"
839 "/tex/latex/lm/")
840 (base32
841 "0i1hwr8rp0jqyvs4qyplrirscd4w7lsgwsncyv3yzy80bsa56jq5")
842 #:trivial? #t))
c2a1fe4a
RW
843 (home-page "http://www.gust.org.pl/projects/e-foundry/latin-modern/")
844 (synopsis "Latin Modern family of fonts")
845 (description "The Latin Modern fonts are derived from the famous Computer
846Modern fonts designed by Donald E. Knuth and described in Volume E of his
847Computers & Typesetting series.")
848 ;; The GUST font license (GFL) is legally identical to the LaTeX Project
849 ;; Public License (LPPL), version 1.3c or later, but comes with an
850 ;; additional but not legally binding clause.
851 (license license:lppl1.3c+)))
852
114a5d85
RW
853(define-public texlive-fonts-lm
854 (deprecated-package "texlive-fonts-lm" texlive-lm))
855
5ebba61a
RW
856(define-public texlive-fonts-knuth-lib
857 (package
858 (name "texlive-fonts-knuth-lib")
859 (version (number->string %texlive-revision))
860 (source (origin
861 (method svn-fetch)
862 (uri (svn-reference
863 (url (string-append "svn://www.tug.org/texlive/tags/"
864 %texlive-tag "/Master/texmf-dist/"
865 "/fonts/source/public/knuth-lib"))
866 (revision %texlive-revision)))
6b286e42 867 (file-name (string-append name "-" version "-checkout"))
5ebba61a
RW
868 (sha256
869 (base32
870 "0in9aqyi8jkyf9d16z0li50z5fpwj1iwgwm83gmvwqcf7chfs04y"))))
871 (build-system gnu-build-system)
872 (arguments
873 `(#:modules ((guix build gnu-build-system)
874 (guix build utils)
875 (srfi srfi-26))
876 #:tests? #f ; no tests
877 #:phases
878 (modify-phases %standard-phases
879 (delete 'configure)
880 (replace 'build
881 (lambda* (#:key inputs #:allow-other-keys)
882 (let ((mf (assoc-ref inputs "texlive-metafont-base")))
883 ;; Tell mf where to find mf.base
884 (setenv "MFBASES"
885 (string-append mf "/share/texmf-dist/web2c"))
886 ;; Tell mf where to look for source files
887 (setenv "MFINPUTS"
888 (string-append (getcwd) ":"
889 mf "/share/texmf-dist/metafont/base")))
890 (mkdir "build")
96f5377d
RW
891 (for-each (lambda (font)
892 (format #t "building font ~a\n" font)
893 (invoke "mf" "-progname=mf"
894 "-output-directory=build"
895 (string-append "\\"
896 "mode:=ljfour; "
897 "mag:=1; "
898 "batchmode; "
899 "input " font)))
900 (find-files "." "(manfnt|logo.+)\\.mf$"))
901 #t))
5ebba61a
RW
902 (replace 'install
903 (lambda* (#:key outputs #:allow-other-keys)
904 (let* ((out (assoc-ref outputs "out"))
905 (tfm (string-append
906 out "/share/texmf-dist/fonts/tfm/public/knuth-lib"))
907 (mf (string-append
908 out "/share/texmf-dist/fonts/source/public/knuth-lib")))
909 (for-each (cut install-file <> tfm)
910 (find-files "build" "\\.*"))
911 (for-each (cut install-file <> mf)
912 (find-files "." "\\.mf"))
913 #t))))))
914 (native-inputs
915 `(("texlive-bin" ,texlive-bin)
916 ("texlive-metafont-base" ,texlive-metafont-base)))
917 (home-page "https://www.ctan.org/pkg/knuth-lib")
918 (synopsis "Small library of METAFONT sources")
919 (description "This is a collection of core TeX and METAFONT macro files
920from Donald Knuth, including the plain format, plain base, and the MF logo
921fonts.")
922 (license license:knuth)))
923
a00d5933
RW
924(define-public texlive-fonts-latex
925 (package
926 (name "texlive-fonts-latex")
927 (version (number->string %texlive-revision))
928 (source (origin
929 (method svn-fetch)
930 (uri (svn-reference
931 (url (string-append "svn://www.tug.org/texlive/tags/"
932 %texlive-tag "/Master/texmf-dist/"
933 "/fonts/source/public/latex-fonts"))
934 (revision %texlive-revision)))
a4550e7d 935 (file-name (string-append name "-" version "-checkout"))
a00d5933
RW
936 (sha256
937 (base32
938 "0ypsm4xv9cw0jckk2qc7gi9hcmhf31mrg56pz3llyx3yd9vq2lps"))))
939 (build-system gnu-build-system)
940 (arguments
941 `(#:modules ((guix build gnu-build-system)
942 (guix build utils)
943 (srfi srfi-1)
944 (srfi srfi-26))
945 #:tests? #f ; no tests
946 #:phases
947 (modify-phases %standard-phases
948 (delete 'configure)
949 (replace 'build
950 (lambda* (#:key inputs #:allow-other-keys)
951 (let ((mf (assoc-ref inputs "texlive-metafont-base")))
952 ;; Tell mf where to find mf.base
953 (setenv "MFBASES" (string-append mf "/share/texmf-dist/web2c"))
954 ;; Tell mf where to look for source files
955 (setenv "MFINPUTS"
956 (string-append (getcwd) ":"
957 mf "/share/texmf-dist/metafont/base:"
a6405e03 958 (assoc-ref inputs "texlive-cm")
a00d5933
RW
959 "/share/texmf-dist/fonts/source/public/cm")))
960 (mkdir "build")
806faaab
MW
961 (for-each (lambda (font)
962 (format #t "building font ~a\n" font)
963 (invoke "mf" "-progname=mf"
964 "-output-directory=build"
965 (string-append "\\"
966 "mode:=ljfour; "
967 "mag:=1; "
968 "batchmode; "
969 "input " font)))
970 '("icmcsc10" "icmex10" "icmmi8" "icmsy8" "icmtt8"
971 "ilasy8" "ilcmss8" "ilcmssb8" "ilcmssi8"
972 "lasy5" "lasy6" "lasy7" "lasy8" "lasy9" "lasy10" "lasyb10"
973 "lcircle10" "lcirclew10" "lcmss8" "lcmssb8" "lcmssi8"
974 "line10" "linew10"))
975 #t))
a00d5933
RW
976 (replace 'install
977 (lambda* (#:key outputs #:allow-other-keys)
978 (let* ((out (assoc-ref outputs "out"))
979 (tfm (string-append
980 out "/share/texmf-dist/fonts/tfm/public/latex-fonts"))
981 (mf (string-append
982 out "/share/texmf-dist/fonts/source/public/latex-fonts")))
983 (for-each (cut install-file <> tfm)
984 (find-files "build" "\\.*"))
985 (for-each (cut install-file <> mf)
986 (find-files "." "\\.mf"))
987 #t))))))
988 (native-inputs
989 `(("texlive-bin" ,texlive-bin)
990 ("texlive-metafont-base" ,texlive-metafont-base)
a6405e03 991 ("texlive-cm" ,texlive-cm)))
b8d8806b 992 (home-page "https://www.ctan.org/pkg/latex-fonts")
a00d5933
RW
993 (synopsis "Collection of fonts used in LaTeX distributions")
994 (description "This is a collection of fonts for use with standard LaTeX
995packages and classes. It includes invisible fonts (for use with the slides
996class), line and circle fonts (for use in the picture environment) and LaTeX
997symbol fonts.")
998 (license license:lppl1.2+)))
999
6072f82a
RW
1000(define-public texlive-latex-mflogo
1001 (package
1002 (name "texlive-latex-mflogo")
1003 (version (number->string %texlive-revision))
1004 (source
1005 (origin
1006 (method svn-fetch)
1007 (uri (texlive-ref "latex" "mflogo"))
44d0717c 1008 (file-name (string-append name "-" version "-checkout"))
6072f82a
RW
1009 (sha256
1010 (base32
1011 "15i2ib6nvhf31g1b92c6njf7n0g29znlq7hbfp9ii7qabhcwwvrj"))))
1012 (build-system texlive-build-system)
1013 (arguments '(#:tex-directory "latex/mflogo"))
1014 (home-page "http://www.ctan.org/pkg/mflogo")
1015 (synopsis "LaTeX support for Metafont logo fonts")
1016 (description
1017 "This package provides LaTeX and font definition files to access the
1018Knuthian mflogo fonts described in The Metafontbook and to typeset Metafont
1019logos in LaTeX documents.")
1020 (license license:lppl)))
1021
cd957f4f 1022(define-public texlive-mflogo-font
01cf8c89 1023 (package
cd957f4f
RW
1024 (inherit (simple-texlive-package
1025 "texlive-mflogo-font"
1026 (list "/doc/fonts/mflogo-font/README"
1027 "/fonts/afm/hoekwater/mflogo-font/"
1028 "/fonts/map/dvips/mflogo-font/"
1029 "/fonts/type1/hoekwater/mflogo-font/")
1030 (base32
1031 "094mknjv8ki2pvj1zin0f1z4f1w12g0cfqjiqcsawjsry4yfrmbg")
1032 #:trivial? #t))
01cf8c89
RW
1033 (home-page "https://www.ctan.org/pkg/mflogo-font")
1034 (synopsis "Metafont logo font")
1035 (description
1036 "These fonts were created in METAFONT by Knuth, for his own publications.
1037At some stage, the letters P and S were added, so that the METAPOST logo could
1038also be expressed. The fonts were originally issued (of course) as METAFONT
1039source; they have since been autotraced and reissued in Adobe Type 1 format by
1040Taco Hoekwater.")
1041 (license license:knuth)))
1042
cd957f4f
RW
1043(define-public texlive-fonts-mflogo-font
1044 (deprecated-package "texlive-fonts-mflogo-font" texlive-mflogo-font))
1045
82ff725d
RW
1046(define-public texlive-amsfonts
1047 (let ((template (simple-texlive-package
1048 "texlive-amsfonts"
1049 (list "/source/latex/amsfonts/"
1050 "/fonts/source/public/amsfonts/"
1051 "/fonts/type1/public/amsfonts/"
1052 "/fonts/afm/public/amsfonts/"
1053 "/fonts/map/dvips/amsfonts/"
1054 "/tex/plain/amsfonts/"
1055 "/doc/fonts/amsfonts/")
1056 (base32
1057 "15q70nkjf8wqzbd5ivcdx3i2sdgqxjb38q0qn9a2qw9i0qcnx6zw"))))
1058 (package
1059 (inherit template)
1060 (arguments
1061 (substitute-keyword-arguments (package-arguments template)
d350d5e7
RW
1062 ((#:build-targets _ #t)
1063 '(list "amsfonts.ins"))
82ff725d
RW
1064 ((#:tex-directory _ #t)
1065 "latex/amsfonts")
1066 ((#:modules modules '())
1067 `((guix build texlive-build-system)
1068 (guix build utils)
1069 (ice-9 match)
1070 (srfi srfi-1)
1071 (srfi srfi-26)))
1072 ((#:phases phases)
1073 `(modify-phases ,phases
1074 (add-before 'build 'build-fonts
1075 (lambda* (#:key inputs #:allow-other-keys)
1076 (let ((mf (assoc-ref inputs "texlive-union"))
1077 (src (string-append (getcwd) "/fonts/source/public/amsfonts/")))
1078 ;; Make METAFONT reproducible
1079 (setenv "SOURCE_DATE_EPOCH" "1")
1080 ;; Tell mf where to find mf.base
1081 (setenv "MFBASES" (string-append mf "/share/texmf-dist/web2c"))
1082 ;; Tell mf where to look for source files
1083 (setenv "MFINPUTS"
1084 (string-append src ":"
1085 src "/cmextra:"
1086 src "/cyrillic:"
1087 src "/dummy:"
1088 src "/symbols:"
1089 mf "/share/texmf-dist/metafont/base:"
a6405e03 1090 (assoc-ref inputs "texlive-cm")
82ff725d 1091 "/share/texmf-dist/fonts/source/public/cm")))
d350d5e7 1092 (let ((build (string-append (getcwd) "/build-fonts")))
82ff725d
RW
1093 (mkdir-p build)
1094 (with-directory-excursion "fonts/source/public/amsfonts"
1095 (for-each (lambda (font)
1096 (format #t "building font ~a\n" (basename font ".mf"))
1097 (with-directory-excursion (dirname font)
1098 (invoke "mf" "-progname=mf"
1099 (string-append "-output-directory=" build)
1100 (string-append "\\"
1101 "mode:=ljfour; "
1102 "mag:=1; "
1103 "nonstopmode; "
1104 "input "
1105 (getcwd) "/"
1106 (basename font ".mf")))))
1107 (find-files "." "[0-9]+\\.mf$"))))
fe2bfabe 1108
82ff725d
RW
1109 ;; There are no metafont sources for the Euler fonts, so we
1110 ;; convert the afm files instead.
d350d5e7 1111 (let ((build (string-append (getcwd) "/build-fonts/euler")))
82ff725d
RW
1112 (mkdir build)
1113 (with-directory-excursion "fonts/afm/public/amsfonts/"
1114 (for-each (lambda (font)
1115 (format #t "converting afm font ~a\n" (basename font ".afm"))
1116 (invoke "afm2tfm" font
1117 (string-append build "/"
1118 (basename font ".tfm"))))
1119 (find-files "." "\\.afm$")))
fe2bfabe 1120
82ff725d
RW
1121 ;; Frustratingly, not all fonts can be created this way. To
1122 ;; generate eufm8.tfm, for example, we first scale down
1123 ;; eufm10.afm to eufm8.pl, and then generate the tfm file from
1124 ;; the pl file.
1125 (setenv "TEXINPUTS"
d350d5e7
RW
1126 (string-append build "//:"
1127 (getcwd) "/fonts/afm/public/amsfonts//:"
1128 (getcwd) "/source/latex/amsfonts//:"
1129 (assoc-ref inputs "texlive-union") "//"))
82ff725d
RW
1130 (with-directory-excursion build
1131 (for-each (match-lambda
1132 (((target-base target-size)
1133 (source-base source-size))
1134 (let ((factor (number->string
1135 (truncate/ (* 1000 target-size)
1136 source-size))))
1137 (invoke "tex"
1138 "-interaction=scrollmode"
1139 (string-append "\\input fontinst.sty "
1140 "\\transformfont{" target-base "}"
1141 "{\\scalefont{" factor "}"
1142 "{\\fromafm{" source-base "}}} "
1143 "\\bye")))
1144 (invoke "pltotf"
1145 (string-append target-base ".pl")
1146 (string-append target-base ".tfm"))
1147 (delete-file (string-append target-base ".pl"))))
fe2bfabe 1148
82ff725d 1149 '((("eufm8" 8) ("eufm10" 10))
fe2bfabe 1150
82ff725d
RW
1151 (("eufb6" 6) ("eufb7" 7))
1152 (("eufb8" 8) ("eufb10" 10))
1153 (("eufb9" 9) ("eufb10" 10))
fe2bfabe 1154
82ff725d
RW
1155 (("eufm6" 6) ("eufb7" 7))
1156 (("eufm9" 9) ("eufb10" 10))
fe2bfabe 1157
82ff725d
RW
1158 (("eurb6" 6) ("eurb7" 7))
1159 (("eurb8" 8) ("eurb10" 10))
1160 (("eurb9" 9) ("eurb10" 10))
fe2bfabe 1161
82ff725d
RW
1162 (("eurm6" 6) ("eurm7" 7))
1163 (("eurm8" 8) ("eurm10" 10))
1164 (("eurm9" 9) ("eurm10" 10))))))
1165 #t))
1166 (add-after 'install 'install-generated-fonts
1167 (lambda* (#:key inputs outputs #:allow-other-keys)
d350d5e7 1168 (copy-recursively "build-fonts"
82ff725d
RW
1169 (string-append
1170 (assoc-ref outputs "out")
1171 "/share/texmf-dist/fonts/tfm/public/amsfonts"))
1172 #t))))))
1173 (native-inputs
1174 `(("texlive-union" ,(texlive-union (list texlive-tex-fontinst-base
a6405e03 1175 texlive-cm
82ff725d
RW
1176 texlive-metafont-base)))))
1177 (home-page "https://www.ctan.org/pkg/amsfonts")
1178 (synopsis "TeX fonts from the American Mathematical Society")
1179 (description
1180 "This package provides an extended set of fonts for use in mathematics,
98b4aca1
RW
1181including: extra mathematical symbols; blackboard bold letters (uppercase
1182only); fraktur letters; subscript sizes of bold math italic and bold Greek
1183letters; subscript sizes of large symbols such as sum and product; added sizes
1184of the Computer Modern small caps font; cyrillic fonts (from the University of
1185Washington); Euler mathematical fonts. All fonts are provided as Adobe Type 1
1186files, and all except the Euler fonts are provided as Metafont source. The
1187distribution also includes the canonical Type 1 versions of the Computer
1188Modern family of fonts. The Euler fonts are supported by separate packages;
1189details can be found in the documentation.")
82ff725d
RW
1190 (license license:silofl1.1))))
1191
98b4aca1 1192(define-public texlive-fonts-amsfonts
82ff725d 1193 (deprecated-package "texlive-fonts-amsfonts" texlive-amsfonts))
98b4aca1 1194
137f9cbc 1195(define-public texlive-latex-amsfonts
82ff725d 1196 (deprecated-package "texlive-latex-amsfonts" texlive-amsfonts))
137f9cbc 1197
e4c5481d 1198(define-public texlive-mkpattern
98b4aca1 1199 (package
e4c5481d
RW
1200 (inherit (simple-texlive-package
1201 "texlive-mkpattern"
1202 (list "/doc/plain/mkpattern/README"
1203 "/doc/plain/mkpattern/mkpatdoc.tex"
1204 "/doc/plain/mkpattern/mkpatter.pdf"
1205 "/doc/plain/mkpattern/mkpattern-exmpl.tex"
1206 "/tex/plain/mkpattern/mkpatter.tex")
1207 (base32
1208 "0sxnkbcc802jl3fj56x9hvg978bpv15lhrwj0aykb4syq29l47ga")
1209 #:trivial? #t))
1210 (home-page "https://ctan.org/pkg/mkpattern")
1211 (synopsis "Utility for making hyphenation patterns")
1212 (description "Mkpattern is a general purpose program for the generation of
1213hyphenation patterns, with definition of letter sets and template-like
1214constructions. It also provides an easy way to handle different input and
1215output encodings, and features generation of clean UTF-8 patterns.")
1216 (license license:lppl)))
137f9cbc 1217
566e95f7
RW
1218;; This provides etex.src which is needed to build various formats, including
1219;; luatex.fmt and pdflatex.fmt
1e39065d
RW
1220(define-public texlive-etex
1221 (let ((template (simple-texlive-package
1222 "texlive-etex"
1223 (list "/doc/etex/base/"
1224 "/doc/man/man1/etex.1"
1225 "/doc/man/man1/etex.man1.pdf"
1226 "/tex/plain/etex/"
1227 "/fonts/source/public/etex/")
1228 (base32
1229 "1qv6vxm5a8pw38gas3i69ivmsn79zj2yq5n5vdmh0rzic5hw2hmc")
1230 #:trivial? #t)))
1231 (package
1232 (inherit template)
1233 (arguments
1234 (substitute-keyword-arguments (package-arguments template)
1235 ((#:phases phases)
1236 `(modify-phases ,phases
1237 ;; Build tfm font.
1238 (replace 'build
1239 (lambda* (#:key inputs #:allow-other-keys)
1240 (let ((mf (assoc-ref inputs "texlive-metafont-base")))
1241 ;; Tell mf where to find mf.base
1242 (setenv "MFBASES" (string-append mf "/share/texmf-dist/web2c"))
1243 ;; Tell mf where to look for source files
1244 (setenv "MFINPUTS"
1245 (string-append (getcwd)
1246 "/fonts/source/public/etex/:"
1247 mf "/share/texmf-dist/metafont/base:"
a6405e03 1248 (assoc-ref inputs "texlive-cm")
1e39065d
RW
1249 "/share/texmf-dist/fonts/source/public/cm")))
1250 (invoke "mf" "-progname=mf"
1251 (string-append "\\"
1252 "mode:=ljfour; "
1253 "mag:=1; "
1254 "scrollmode; "
1255 "input xbmc10"))
1256 #t))
1257 (add-after 'install 'install-font
1258 (lambda* (#:key outputs #:allow-other-keys)
1259 (install-file
1260 "xbmc10.tfm"
1261 (string-append (assoc-ref outputs "out")
1262 "/share/texmf-dist/fonts/tfm/public/etex/"))
1263 #t))))))
1264 (native-inputs
1265 `(("texlive-bin" ,texlive-bin)
1266 ("texlive-metafont-base" ,texlive-metafont-base)
a6405e03 1267 ("texlive-cm" ,texlive-cm)))
1e39065d
RW
1268 (home-page "https://www.ctan.org/pkg/etex")
1269 (synopsis "Extended version of TeX")
1270 (description
1271 "This package provides an extended version of TeX (which is capable of
1272running as if it were TeX unmodified). E-TeX has been specified by the LaTeX
1273team as the engine for the development of LaTeX2e; as a result, LaTeX
1274programmers may assume e-TeX functionality. The pdftex engine directly
1275incorporates the e-TeX extensions.")
1276 (license license:knuth))))
1277
566e95f7
RW
1278(define-public texlive-tex-plain
1279 (package
8fee5067
RW
1280 (inherit (simple-texlive-package
1281 "texlive-tex-plain"
1282 (list "/tex/plain/")
1283 (base32
85892948 1284 "1m4qpaszwfv7j8a85rlwl7rs4iv5nlj67c1vvn6ysly72h9gjydb")
8fee5067 1285 #:trivial? #t))
566e95f7
RW
1286 (home-page "https://www.ctan.org/pkg/plain")
1287 (synopsis "Plain TeX format and supporting files")
1288 (description
8fee5067
RW
1289 "This package contains files used to build the Plain TeX format, as
1290described in the TeXbook, together with various supporting files (some also
1291discussed in the book).")
566e95f7
RW
1292 (license license:knuth)))
1293
df73a3d3
RW
1294(define-public texlive-hyphen-afrikaans
1295 (package
1296 (inherit (texlive-hyphen-package
1297 "texlive-hyphen-afrikaans" "af"
1298 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-af.tex")
1299 (base32
85892948 1300 "1k9k27a27bbrb0gz36191w32l2v6d3zbdh8zhrp4l3ild2pj3n4l")))
df73a3d3
RW
1301 (synopsis "Hyphenation patterns for Afrikaans")
1302 (description "The package provides hyphenation patterns for the Afrikaans
1303language.")
1304 (license license:lppl1.3+)))
1305
619ca023
RW
1306(define-public texlive-hyphen-ancientgreek
1307 (package
1308 (inherit (texlive-hyphen-package
1309 "texlive-hyphen-ancientgreek" "grc"
1310 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-grc.tex"
1311 "/tex/generic/hyphen/grahyph5.tex"
1312 "/tex/generic/hyphen/ibyhyph.tex")
1313 (base32
85892948 1314 "01326lb6z0s8krcfgs8i1pnjfrm4gr33rc53gy80f63qbv4ssxrw")))
619ca023
RW
1315 (synopsis "Hyphenation patterns for ancient Greek")
1316 (description "The package provides hyphenation patterns for ancient
1317Greek.")
1318 (license license:lppl1.3+)))
1319
a361f412
RW
1320(define-public texlive-hyphen-armenian
1321 (let ((template (texlive-hyphen-package
1322 "texlive-hyphen-armenian" "hy"
85892948 1323 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-hy.tex")
a361f412 1324 (base32
85892948 1325 "0hzny0npynsb07syxrpbfa5pkpj8r0j51pj64yxyfl1c0bak1fwp"))))
010f476f 1326 (package
a361f412 1327 (inherit template)
a361f412
RW
1328 (synopsis "Hyphenation patterns for Armenian")
1329 (description "The package provides hyphenation patterns for the Armenian
1330language.")
1331 ;; Any version of the LGPL.
1332 (license license:lgpl3+))))
1333
0ddbc25c
RW
1334(define-public texlive-hyphen-basque
1335 (let ((template (texlive-hyphen-package
1336 "texlive-hyphen-basque" "eu"
85892948 1337 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-eu.tex")
0ddbc25c 1338 (base32
85892948 1339 "15w969g1jqzn68l2b2lzf7iv7g3kil02aba3if6cag3qcnq92ra9"))))
0ddbc25c
RW
1340 (package
1341 (inherit template)
0ddbc25c
RW
1342 (synopsis "Hyphenation patterns for Basque")
1343 (description "The package provides hyphenation patterns for the Basque
1344language.")
85892948 1345 ;; Similar to Unicode license.
0ddbc25c 1346 (license (license:fsf-free
85892948 1347 "/tex/generic/hyph-utf8/patterns/tex/hyph-eu.tex")))))
0ddbc25c 1348
92266796
RW
1349(define-public texlive-hyphen-belarusian
1350 (package
1351 (inherit (texlive-hyphen-package
1352 "texlive-hyphen-belarusian" "be"
1353 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-be.tex")
1354 (base32
85892948 1355 "0ppm12wndaxv9da62dwkbnk7w9nijikn6jkc97m76xis338g2h02")))
92266796
RW
1356 (synopsis "Hyphenation patterns for Belarusian")
1357 (description "The package provides hyphenation patterns for the Belarusian
1358language.")
1359 (license license:expat)))
1360
7ffc3105
RW
1361(define-public texlive-hyphen-bulgarian
1362 (package
1363 (inherit (texlive-hyphen-package
1364 "texlive-hyphen-bulgarian" "bg"
1365 (list "/doc/generic/hyph-utf8/bg/azbukaExtended.pdf"
1366 "/doc/generic/hyph-utf8/bg/azbukaExtended.tex"
1367 "/tex/generic/hyph-utf8/patterns/tex/hyph-bg.tex")
1368 (base32
85892948 1369 "0ngrgw2rmipxss76rgfk62x9nnsgwmaxxna2jqxxhybai3q39mx5")))
7ffc3105
RW
1370 (synopsis "Hyphenation patterns for Bulgarian")
1371 (description "The package provides hyphenation patterns for the Bulgarian
1372language in T2A and UTF-8 encodings.")
1373 (license (license:non-copyleft
1374 "file:///tex/generic/hyph-utf8/patterns/tex/hyph-bg.tex"
1375 "Ancestral BSD variant"))))
1376
cbc7e109
RW
1377(define-public texlive-hyphen-catalan
1378 (package
1379 (inherit (texlive-hyphen-package
1380 "texlive-hyphen-catalan" "ca"
1381 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-ca.tex")
1382 (base32
85892948 1383 "10zzlfz5v8d9csg85ibpp2vfvmpqa56vbl85qy5gws099vygpayg")))
cbc7e109
RW
1384 (synopsis "Hyphenation patterns for Catalan")
1385 (description "The package provides hyphenation patterns for Catalan in
1386T1/EC and UTF-8 encodings.")
1387 (license license:lppl1.0+)))
010f476f 1388
9ebce8fc
RW
1389(define-public texlive-hyphen-chinese
1390 (package
1391 (inherit (texlive-hyphen-package
1392 "texlive-hyphen-chinese" "zh-latn-pinyin"
1393 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-zh-latn-pinyin.tex")
1394 (base32
85892948 1395 "1j68mry2zy91m1kbzwhin5q2jajf6xh48npdds8wvp1sqmzih2a3")))
9ebce8fc
RW
1396 (synopsis "Hyphenation patterns for unaccented Chinese pinyin")
1397 (description "The package provides hyphenation patterns for unaccented
1398Chinese pinyin T1/EC and UTF-8 encodings.")
1399 (license license:gpl2+)))
010f476f 1400
beed8377
RW
1401(define-public texlive-hyphen-churchslavonic
1402 (package
1403 (inherit (texlive-hyphen-package
1404 "texlive-hyphen-churchslavonic" "cu"
1405 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-cu.tex")
756fc3e1 1406 (base32
85892948 1407 "0fhbwaapq2213msbhgr0d1lw06ihmrqirxj092mn73d8ynl13qlh")))
beed8377
RW
1408 (synopsis "Hyphenation patterns for Church Slavonic")
1409 (description "The package provides hyphenation patterns for Church
1410Slavonic in UTF-8 encoding.")
1411 (license license:expat)))
1412
1b1d8577
RW
1413(define-public texlive-hyphen-coptic
1414 (package
1415 (inherit (texlive-hyphen-package
1416 "texlive-hyphen-coptic" "cop"
1417 (list "/tex/generic/hyph-utf8/patterns/tex-8bit/copthyph.tex"
1418 "/tex/generic/hyph-utf8/patterns/tex/hyph-cop.tex")
1419 (base32
85892948 1420 "1jlxxvyfa2aljizaa3qlcxyhqsrb4dawv3q3fbyp2lxz6ag9fy6m")))
1b1d8577
RW
1421 (synopsis "Hyphenation patterns for Coptic")
1422 (description "The package provides hyphenation patterns for Coptic in
1423UTF-8 encoding as well as in ASCII-based encoding for 8-bit engines.")
1424 ;; No explicit license declaration, so we use the project license.
1425 (license license:lppl)))
010f476f 1426
9b65c611 1427(define-public texlive-hyphen-croatian
3e485ed2 1428 (package
9b65c611
RW
1429 (inherit (texlive-hyphen-package
1430 "texlive-hyphen-croatian" "hr"
1431 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-hr.tex")
1432 (base32
85892948 1433 "12n9r2winai15jc622sqdwclgcs1s68r6vcf7ic8vvq0x9qhwc5v")))
9b65c611
RW
1434 (synopsis "Hyphenation patterns for Croatian")
1435 (description "The package provides hyphenation patterns for Croatian in
1436T1/EC and UTF-8 encodings.")
1437 (license license:lppl1.0+)))
3e485ed2 1438
b5b2ef6e 1439(define-public texlive-hyphen-czech
1193aa89 1440 (package
b5b2ef6e
RW
1441 (inherit (texlive-hyphen-package
1442 "texlive-hyphen-czech" "cs"
1443 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-cs.tex")
1444 (base32
85892948 1445 "1q37s6p8yfyi3rp1azbz421lg4lr4aiki8m631i4x9rmps89m8iq")))
b5b2ef6e
RW
1446 (synopsis "Hyphenation patterns for Czech")
1447 (description "The package provides hyphenation patterns for Czech in T1/EC
1448and UTF-8 encodings.")
1449 (license license:gpl2+)))
1193aa89 1450
3889b022 1451(define-public texlive-hyphen-danish
9186c156 1452 (package
3889b022
RW
1453 (inherit (texlive-hyphen-package
1454 "texlive-hyphen-danish" "da"
1455 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-da.tex")
1456 (base32
85892948 1457 "1vj8nip64rzcrcg3skm4vqad1ggqwgan74znrdns610wjcm1z9qd")))
3889b022
RW
1458 (synopsis "Hyphenation patterns for Danish")
1459 (description "The package provides hyphenation patterns for Danish in
1460T1/EC and UTF-8 encodings.")
1461 ;; Either LPPL 1.3 or later, or Expat
1462 (license (list license:lppl1.3+ license:expat))))
1463
402b835f
RW
1464(define-public texlive-hyphen-dutch
1465 (package
1466 (inherit (texlive-hyphen-package
1467 "texlive-hyphen-dutch" "nl"
1468 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-nl.tex")
1469 (base32
85892948 1470 "1bg9g790ksq5cn8qihai6pacmkp9vpf35h4771z361nvwa40l8yk")))
402b835f
RW
1471 (synopsis "Hyphenation patterns for Dutch")
1472 (description "The package provides hyphenation patterns for Dutch in T1/EC
1473and UTF-8 encodings.")
1474 (license license:lppl1.0+)))
9186c156 1475
ab8f6de6 1476(define-public texlive-hyphen-english
437822a1 1477 (package
ab8f6de6
RW
1478 (inherit (texlive-hyphen-package
1479 "texlive-hyphen-english" '("en-gb" "en-us")
1480 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-en-gb.tex"
1481 "/tex/generic/hyph-utf8/patterns/tex/hyph-en-us.tex")
1482 (base32
85892948 1483 "08b3jihjaamcl1pvffi0s47nwavkm66l9mrrmby3l32dfpkprrc5")))
ab8f6de6
RW
1484 (synopsis "Hyphenation patterns for American and British English")
1485 (description "The package provides additional hyphenation patterns for
1486American and British English in ASCII encoding.")
1487 (license (license:non-copyleft
1488 "file:///tex/generic/hyph-utf8/patterns/tex/hyph-en-us.tex"
1489 "FSF all permissive license"))))
1490
d7c80395
RW
1491(define-public texlive-hyphen-esperanto
1492 (package
1493 (inherit (texlive-hyphen-package
1494 "texlive-hyphen-esperanto" "eo"
1495 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-eo.tex")
1496 (base32
85892948 1497 "1503kzn9bk4mm4ba35cka2hm8rz0v3j5l30v5rrsd4rqgpibcgic")))
d7c80395
RW
1498 (synopsis "Hyphenation patterns for Esperanto")
1499 (description "The package provides hyphenation patterns for Esperanto ISO
1500Latin 3 and UTF-8 encodings.")
437822a1
RW
1501 (license license:lppl1.0+)))
1502
5f229484 1503(define-public texlive-hyphen-estonian
4eebd2cd 1504 (package
5f229484
RW
1505 (inherit (texlive-hyphen-package
1506 "texlive-hyphen-estonian" "et"
1507 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-et.tex")
1508 (base32
85892948 1509 "1rdas2450ib02rwy65i69l86nyc9h15bl07xbbwhmhxfnj8zj4v8")))
5f229484
RW
1510 (synopsis "Hyphenation patterns for Estonian")
1511 (description "The package provides hyphenation patterns for Estonian in
1512T1/EC and UTF-8 encodings.")
1513 ;; Dual licensed under either license.
1514 (license (list license:lppl1.3+ license:expat))))
1515
54ef221c
RW
1516(define-public texlive-hyphen-ethiopic
1517 (let ((template (texlive-hyphen-package
1518 "texlive-hyphen-ethiopic" "mul-ethi"
85892948 1519 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-mul-ethi.tex")
54ef221c 1520 (base32
85892948 1521 "1b93fc6j4aybh0pgq23hsn1njm6asf7sfz803fbj3ai0whsxd10l"))))
54ef221c
RW
1522 (package
1523 (inherit template)
54ef221c
RW
1524 (synopsis "Hyphenation patterns for Ethiopic scripts")
1525 (description "The package provides hyphenation patterns for languages
1526written using the Ethiopic script for Unicode engines. They are not supposed
1527to be linguistically relevant in all cases and should, for proper typography,
1528be replaced by files tailored to individual languages.")
85892948 1529 (license license:expat))))
54ef221c 1530
bac10d82
RW
1531(define-public texlive-hyphen-finnish
1532 (package
1533 (inherit (texlive-hyphen-package
1534 "texlive-hyphen-finnish" "fi"
1535 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-fi.tex")
1536 (base32
85892948 1537 "1f72b4ydb4zddvw2i004948khmwzigxkdkwfym5v1kkq0183sfpj")))
bac10d82
RW
1538 (synopsis "Hyphenation patterns for Finnish")
1539 (description "The package provides hyphenation patterns for Finnish in
1540T1/EC and UTF-8 encodings.")
1541 (license license:public-domain)))
1542
a14ffed2
RW
1543(define-public texlive-hyphen-french
1544 (package
1545 (inherit (texlive-hyphen-package
1546 "texlive-hyphen-french" "fr"
1547 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-fr.tex")
1548 (base32
85892948 1549 "0jc3kqys6cxjw8x8pzjln7z78l8s7f5rlyrkv7dzr1kiwnwilk9d")))
a14ffed2
RW
1550 (synopsis "Hyphenation patterns for French")
1551 (description "The package provides hyphenation patterns for French in
1552T1/EC and UTF-8 encodings.")
1553 (license license:expat)))
1554
28fbf42a
RW
1555(define-public texlive-hyphen-friulan
1556 (package
1557 (inherit (texlive-hyphen-package
1558 "texlive-hyphen-friulan" "fur"
1559 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-fur.tex")
1560 (base32
85892948 1561 "1dlnh8slpf50mryxv7zzbx08xp54zkdfs1j7y37ipwbrajvd740f")))
28fbf42a
RW
1562 (synopsis "Hyphenation patterns for Friulan")
1563 (description "The package provides hyphenation patterns for Friulan in
1564ASCII encodings.")
1565 (license license:lppl1.3+)))
1566
8d87184b
RW
1567(define-public texlive-hyphen-galician
1568 (let ((template (texlive-hyphen-package
1569 "texlive-hyphen-galician" "gl"
85892948 1570 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-gl.tex")
8d87184b 1571 (base32
85892948 1572 "13zx2r3nrxdr025g2lxrph0ga6wf7cs8dxixn4fhbl6xr1cx028g"))))
8d87184b
RW
1573 (package
1574 (inherit template)
8d87184b
RW
1575 (synopsis "Hyphenation patterns for Galician")
1576 (description "The package provides hyphenation patterns for Galician in
1577T1/EC and UTF-8 encodings.")
85892948 1578 (license license:lppl1.3))))
8d87184b 1579
b2334b6e
RW
1580(define-public texlive-hyphen-georgian
1581 (package
1582 (inherit (texlive-hyphen-package
1583 "texlive-hyphen-georgian" "ka"
1584 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-ka.tex")
1585 (base32
85892948 1586 "0l0hk7ka04fr8x11nnw95x151cxyycy0fph772m3a3p8qk4x9wp7")))
b2334b6e
RW
1587 (synopsis "Hyphenation patterns for Georgian")
1588 (description "The package provides hyphenation patterns for Georgian in
1589T8M, T8K, and UTF-8 encodings.")
1590 (license license:lppl1.3+)))
1591
6028620d
RW
1592(define-public texlive-hyphen-german
1593 (package
1594 (inherit (texlive-hyphen-package
1595 "texlive-hyphen-german" '("de-1901" "de-1996" "de-ch-1901")
1596 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-de-1901.tex"
1597 "/tex/generic/hyph-utf8/patterns/tex/hyph-de-1996.tex"
1598 "/tex/generic/hyph-utf8/patterns/tex/hyph-de-ch-1901.tex"
85892948
MB
1599 "/tex/generic/dehyph/dehyphn.tex"
1600 "/tex/generic/dehyph/dehypht.tex"
1601 "/tex/generic/dehyph/dehyphtex.tex"
1602 "/tex/generic/dehyph/README")
6028620d 1603 (base32
85892948 1604 "0wp5by5kkf4ac6li5mbppqzw11500wa7f22p5vpz3m1kwd15zavw")))
6028620d
RW
1605 (synopsis "Hyphenation patterns for German")
1606 (description "This package provides hyphenation patterns for German in
1607T1/EC and UTF-8 encodings, for traditional and reformed spelling, including
1608Swiss German.")
1609 ;; The patterns are released under the Expat license; the dehyph* files
1610 ;; are released under the LPPL version 1 or later.
1611 (license (list license:expat license:lppl1.0+))))
1612
65e4cfd1
RW
1613(define-public texlive-hyphen-greek
1614 (package
1615 (inherit (texlive-hyphen-package
1616 "texlive-hyphen-greek" '("el-monoton" "el-polyton")
1617 (list "/doc/generic/elhyphen/"
1618 "/tex/generic/hyph-utf8/patterns/tex/hyph-el-monoton.tex"
1619 "/tex/generic/hyph-utf8/patterns/tex/hyph-el-polyton.tex"
1620 "/tex/generic/hyphen/grmhyph5.tex"
1621 "/tex/generic/hyphen/grphyph5.tex")
1622 (base32
85892948 1623 "1qyr6m1nh6d4wj68616cfxv4wjpiy1w2rlldxlx2ajzba381w3hf")))
65e4cfd1
RW
1624 (synopsis "Hyphenation patterns for Greek")
1625 (description "This package provides hyphenation patterns for Modern Greek
1626in monotonic and polytonic spelling in LGR and UTF-8 encodings.")
1627 (license license:lppl)))
1628
36f03c33
RW
1629(define-public texlive-hyphen-hungarian
1630 (package
1631 (inherit (texlive-hyphen-package
1632 "texlive-hyphen-hungarian" "hu"
1633 (list "/doc/generic/huhyphen/"
1634 "/doc/generic/hyph-utf8/hu/"
1635 "/tex/generic/hyph-utf8/patterns/tex/hyph-hu.tex")
1636 (base32
85892948 1637 "1j1b8kksg9r8nmjyjvvz8fr3hgcrjj6jlybf9p06nwrrwm2r8j8f")))
36f03c33
RW
1638 (synopsis "Hyphenation patterns for Hungarian")
1639 (description "This package provides hyphenation patterns for Hungarian in
1640T1/EC and UTF-8 encodings.")
1641 ;; Any of these licenses
1642 (license (list license:gpl2 license:lgpl2.1+ license:mpl1.1))))
1643
33a446e6
RW
1644(define-public texlive-hyphen-icelandic
1645 (package
1646 (inherit (texlive-hyphen-package
1647 "texlive-hyphen-icelandic" "is"
1648 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-is.tex")
1649 (base32
85892948 1650 "1m9xj41csj3ldym09d82zjbd3345sg2z10d8pxpvhgibf97mb66h")))
33a446e6
RW
1651 (synopsis "Hyphenation patterns for Icelandic")
1652 (description "This package provides hyphenation patterns for Icelandic in
1653T1/EC and UTF-8 encodings.")
1654 (license license:lppl1.2+)))
1655
825285d8
RW
1656(define-public texlive-hyphen-indic
1657 (package
1658 (inherit (texlive-hyphen-package
1659 "texlive-hyphen-indic"
1660 '("as" "bn" "gu" "hi" "kn" "ml" "mr" "or" "pa" "ta" "te")
1661 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-as.tex"
1662 "/tex/generic/hyph-utf8/patterns/tex/hyph-bn.tex"
1663 "/tex/generic/hyph-utf8/patterns/tex/hyph-gu.tex"
1664 "/tex/generic/hyph-utf8/patterns/tex/hyph-hi.tex"
1665 "/tex/generic/hyph-utf8/patterns/tex/hyph-kn.tex"
1666 "/tex/generic/hyph-utf8/patterns/tex/hyph-ml.tex"
1667 "/tex/generic/hyph-utf8/patterns/tex/hyph-mr.tex"
1668 "/tex/generic/hyph-utf8/patterns/tex/hyph-or.tex"
1669 "/tex/generic/hyph-utf8/patterns/tex/hyph-pa.tex"
1670 "/tex/generic/hyph-utf8/patterns/tex/hyph-ta.tex"
1671 "/tex/generic/hyph-utf8/patterns/tex/hyph-te.tex")
1672 (base32
85892948 1673 "02d2kcd3lpk95fykjwhzw9s2a1s2w1skz8h2mmszrz979d1xzhpm")))
825285d8
RW
1674 (synopsis "Indic hyphenation patterns")
1675 (description "This package provides hyphenation patterns for Assamese,
1676Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Oriya, Panjabi, Tamil
1677and Telugu for Unicode engines.")
1678 (license license:expat)))
1679
b6832d79
RW
1680(define-public texlive-hyphen-indonesian
1681 (package
1682 (inherit (texlive-hyphen-package
1683 "texlive-hyphen-indonesian" "id"
1684 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-id.tex")
1685 (base32
85892948 1686 "1r62w02rf0i4z0jgij54d16qjbj0zyfwm9dwdkqka76jrivij83q")))
b6832d79
RW
1687 (synopsis "Indonesian hyphenation patterns")
1688 (description "This package provides hyphenation patterns for
1689Indonesian (Bahasa Indonesia) in ASCII encoding. They are probably also
1690usable for Malay (Bahasa Melayu).")
1691 (license license:gpl2)))
1692
9535f149
RW
1693(define-public texlive-hyphen-interlingua
1694 (package
1695 (inherit (texlive-hyphen-package
1696 "texlive-hyphen-interlingua" "ia"
1697 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-ia.tex")
1698 (base32
85892948 1699 "0a9na20vjnzhgjbicaxay0jk4rm5zg1rjyiswr377mjhd9mx5cg3")))
9535f149
RW
1700 (synopsis "Interlingua hyphenation patterns")
1701 (description "This package provides hyphenation patterns for Interlingua
1702in ASCII encoding.")
1703 (license license:lppl1.3+)))
1704
88963a8e
RW
1705(define-public texlive-hyphen-irish
1706 (package
1707 (inherit (texlive-hyphen-package
1708 "texlive-hyphen-irish" "ga"
1709 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-ga.tex")
1710 (base32
85892948 1711 "1h1l9jzkpsb91nyhz6s6c9jfrbz8jx5ip8vyq3dkz0rl6g960i6b")))
88963a8e
RW
1712 (synopsis "Irish hyphenation patterns")
1713 (description "This package provides hyphenation patterns for
1714Irish (Gaeilge) in T1/EC and UTF-8 encodings.")
1715 ;; Either of these licenses
1716 (license (list license:gpl2+ license:expat))))
1717
e33250e4
RW
1718(define-public texlive-hyphen-italian
1719 (package
1720 (inherit (texlive-hyphen-package
1721 "texlive-hyphen-italian" "it"
1722 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-it.tex")
1723 (base32
85892948 1724 "03c7jiqslfxvl3gbdx79hggbvrfi2l4z2bnwxc0na8f8lkp1m787")))
e33250e4
RW
1725 (synopsis "Italian hyphenation patterns")
1726 (description "This package provides hyphenation patterns for Italian in
1727ASCII encoding. Compliant with the Recommendation UNI 6461 on hyphenation
1728issued by the Italian Standards Institution (Ente Nazionale di Unificazione
1729UNI).")
1730 (license license:lppl1.3+)))
1731
0b344257
RW
1732(define-public texlive-hyphen-kurmanji
1733 (package
1734 (inherit (texlive-hyphen-package
1735 "texlive-hyphen-kurmanji" "kmr"
1736 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-kmr.tex")
1737 (base32
85892948 1738 "01ylbsi5wymrdrxr9b28nmjmcj72mdhqr657lwsb6m9aj33c9ql6")))
0b344257
RW
1739 (synopsis "Kurmanji hyphenation patterns")
1740 (description "This package provides hyphenation patterns for
1741Kurmanji (Northern Kurdish) as spoken in Turkey and by the Kurdish diaspora in
1742Europe, in T1/EC and UTF-8 encodings.")
1743 (license license:lppl1.3)))
1744
2f3a07c6
RW
1745(define-public texlive-hyphen-latin
1746 (package
1747 (inherit (texlive-hyphen-package
1748 "texlive-hyphen-latin" '("la-x-classic" "la-x-liturgic" "la")
1749 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-la-x-classic.tex"
1750 "/tex/generic/hyph-utf8/patterns/tex/hyph-la-x-liturgic.tex"
1751 "/tex/generic/hyph-utf8/patterns/tex/hyph-la.tex")
1752 (base32
85892948 1753 "0rxg8a4s5cpj8vlkz5a74a036axda5jqgvr3f9aj2cc2x9f2f3w9")))
2f3a07c6
RW
1754 (synopsis "Liturgical Latin hyphenation patterns")
1755 (description "This package provides hyphenation patterns for Latin in
1756T1/EC and UTF-8 encodings, mainly in modern spelling (u when u is needed and v
1757when v is needed), medieval spelling with the ligatures @code{\\ae} and
1758@code{\\oe} and the (uncial) lowercase 'v' written as a 'u' is also supported.
1759Apparently there is no conflict between the patterns of modern Latin and those
1760of medieval Latin. It also includes hyphenation patterns for the Classical
1761Latin in T1/EC and UTF-8 encodings. Classical Latin hyphenation patterns are
1762different from those of 'plain' Latin, the latter being more adapted to modern
1763Latin. It also provides hyphenation patterns for the Liturgical Latin in
1764T1/EC and UTF-8 encodings.")
1765 ;; Either of these licenses
1766 (license (list license:lppl1.0+ license:expat))))
1767
e8effd27
RW
1768(define-public texlive-hyphen-latvian
1769 (package
1770 (inherit (texlive-hyphen-package
1771 "texlive-hyphen-latvian" "lv"
1772 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-lv.tex")
1773 (base32
85892948 1774 "00jf8xma4ldz0zpqwma97k9q3j0mqx7qdj6b7baph3n5xgc24aaw")))
e8effd27
RW
1775 (synopsis "Latvian hyphenation patterns")
1776 (description "This package provides hyphenation patterns for Latvian in
1777L7X and UTF-8 encodings.")
1778 ;; Either of these licenses.
1779 (license (list license:gpl2 license:lgpl2.1))))
1780
af0e6cc8
RW
1781(define-public texlive-hyphen-lithuanian
1782 (package
1783 (inherit (texlive-hyphen-package
1784 "texlive-hyphen-lithuanian" "lt"
1785 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-lt.tex")
1786 (base32
85892948 1787 "1kfq7j2ajg6nj952s1ygd520sj9z9kl0bqvd291a36ni2b1frzgd")))
af0e6cc8
RW
1788 (synopsis "Lithuanian hyphenation patterns")
1789 (description "This package provides hyphenation patterns for Lithuanian in
1790L7X and UTF-8 encodings.")
1791 ;; "Do ... whatever ... as long as you respect the copyright"; as part of
1792 ;; the hyph-utf8 package we choose the LPPL license.
1793 (license license:lppl)))
1794
1890799b
RW
1795(define-public texlive-hyphen-mongolian
1796 (package
1797 (inherit (texlive-hyphen-package
1798 "texlive-hyphen-mongolian" '("mn-cyrl-x-lmc" "mn-cyrl")
1799 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-mn-cyrl-x-lmc.tex"
1800 "/tex/generic/hyph-utf8/patterns/tex/hyph-mn-cyrl.tex")
1801 (base32
85892948 1802 "1y1b91ihrdl9bad3rxlsfjpd9wmyd5zzgci3qv9w8qqk33jxhwya")))
1890799b
RW
1803 (synopsis "Mongolian hyphenation patterns in Cyrillic script")
1804 (description "This package provides hyphenation patterns for Mongolian in
1805T2A, LMC and UTF-8 encodings.")
1806 ;; Either of these licenses
1807 (license (list license:lppl1.3+ license:expat))))
1808
da2b2d49
RW
1809(define-public texlive-hyphen-norwegian
1810 (package
1811 (inherit (texlive-hyphen-package
1812 "texlive-hyphen-norwegian" '("nb" "nn" "no")
1813 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-nb.tex"
1814 "/tex/generic/hyph-utf8/patterns/tex/hyph-nn.tex"
1815 "/tex/generic/hyph-utf8/patterns/tex/hyph-no.tex")
1816 (base32
85892948 1817 "08gbwj64p4fckm199k52yp5lx65h9f4wwdkvl4pv4aa7k370jq9y")))
da2b2d49
RW
1818 (synopsis "Norwegian Bokmal and Nynorsk hyphenation patterns")
1819 (description "This package provides hyphenation patterns for Norwegian
1820Bokmal and Nynorsk in T1/EC and UTF-8 encodings.")
1821 (license (license:non-copyleft
1822 "/tex/generic/hyph-utf8/patterns/tex/hyph-no.tex"
1823 "FSF All permissive license"))))
1824
033406ad
RW
1825(define-public texlive-hyphen-occitan
1826 (package
1827 (inherit (texlive-hyphen-package
1828 "texlive-hyphen-occitan" "oc"
1829 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-oc.tex")
1830 (base32
85892948 1831 "0vhjbq2nr58vhqwwky3cwx4dqiwjmmfwp81rb65mfpf0m8yypdfg")))
033406ad
RW
1832 (synopsis "Occitan hyphenation patterns")
1833 (description "This package provides hyphenation patterns for Occitan in
1834T1/EC and UTF-8 encodings. They are supposed to be valid for all the Occitan
1835variants spoken and written in the wide area called 'Occitanie' by the French.
1836It ranges from the Val d'Aran within Catalunya, to the South Western Italian
1837Alps encompassing the southern half of the French pentagon.")
1838 (license license:lppl1.0+)))
1839
737ac0b7
MB
1840(define-public texlive-hyphen-pali
1841 (package
1842 (inherit (texlive-hyphen-package
1843 "texlive-hyphen-pali" "pi"
1844 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-pi.tex")
1845 (base32
1846 "1fak853s4ijdqgrnhwymaq1lh8jab3qfyxapdmf6qpg6bqd20kxq")))
1847 (synopsis "Panjabi hyphenation patterns")
1848 (description "This package provides hyphenation patterns for Panjabi in
1849T1/EC encoding.")
1850 ;; Can be used with either license.
1851 (license (list license:expat license:lgpl3+ license:gpl3+))))
1852
db3f7fda
RW
1853(define-public texlive-hyphen-piedmontese
1854 (package
1855 (inherit (texlive-hyphen-package
1856 "texlive-hyphen-piedmontese" "pms"
1857 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-pms.tex")
1858 (base32
85892948 1859 "0xva3l2gwzkqw1sz64k5g5iprhdyr27w1mv8rxp8x62i5y3aqr1k")))
db3f7fda
RW
1860 (synopsis "Piedmontese hyphenation patterns")
1861 (description "This package provides hyphenation patterns for Piedmontese
1862in ASCII encoding. Compliant with 'Gramatica dla lengua piemonteisa' by
1863Camillo Brero.")
1864 (license license:lppl1.3+)))
1865
9c451e77
RW
1866(define-public texlive-hyphen-polish
1867 (package
1868 (inherit (texlive-hyphen-package
1869 "texlive-hyphen-polish" "pl"
1870 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-pl.tex")
1871 (base32
85892948 1872 "1c22g99isxapv4xjrmsw24hhp1xb83wbgcxyd8j24mxdnizywxzm")))
9c451e77
RW
1873 (synopsis "Polish hyphenation patterns")
1874 (description "This package provides hyphenation patterns for Polish in QX
1875and UTF-8 encodings.")
1876 ;; No differing license declared, so we choose the project license.
1877 (license license:lppl)))
1878
5fd12ffb
RW
1879(define-public texlive-hyphen-portuguese
1880 (package
1881 (inherit (texlive-hyphen-package
1882 "texlive-hyphen-portuguese" "pt"
1883 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-pt.tex")
1884 (base32
85892948 1885 "00rkjy4p7893zs940bq3s4hp7al0skgxqggj5qfax0bx8karf30b")))
5fd12ffb
RW
1886 (synopsis "Portuguese hyphenation patterns")
1887 (description "This package provides hyphenation patterns for Portuguese in
1888T1/EC and UTF-8 encodings.")
1889 (license license:bsd-3)))
1890
6fa3b112
RW
1891(define-public texlive-hyphen-romanian
1892 (package
1893 (inherit (texlive-hyphen-package
1894 "texlive-hyphen-romanian" "ro"
1895 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-ro.tex")
1896 (base32
85892948 1897 "1ykb5v7ip6p3n34wq8qypfyrap4gg946by5rsl6ab0k5gv6ypsbf")))
6fa3b112
RW
1898 (synopsis "Romanian hyphenation patterns")
1899 (description "This package provides hyphenation patterns for Romanian in
1900T1/EC and UTF-8 encodings.")
1901 ;; No differing license declared, so we choose the project license.
1902 (license license:lppl)))
1903
c4abd4a2
RW
1904(define-public texlive-hyphen-romansh
1905 (package
1906 (inherit (texlive-hyphen-package
1907 "texlive-hyphen-romansh" "rm"
1908 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-rm.tex")
1909 (base32
85892948 1910 "0a1q9p6sp5n6a9w6xhwk03vmkrrmnh2md7g1k4qhnf0dc4h7dy9r")))
c4abd4a2
RW
1911 (synopsis "Romansh hyphenation patterns")
1912 (description "This package provides hyphenation patterns for Romansh in
1913ASCII encodings. They are supposed to comply with the rules indicated by the
1914Lia Rumantscha (Romansh language society).")
1915 (license license:lppl1.3+)))
1916
483d8af6
RW
1917(define-public texlive-hyphen-russian
1918 (package
1919 (inherit (texlive-hyphen-package
1920 "texlive-hyphen-russian" "ru"
1921 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-ru.tex")
1922 (base32
85892948 1923 "00sy7qh5f8ryxw36fwbyd1yi2hxhv7hmk99yp7dwh73n4mxv6lpl")))
483d8af6
RW
1924 (synopsis "Russian hyphenation patterns")
1925 (description "This package provides hyphenation patterns for Russian in
1926T2A and UTF-8 encodings.")
1927 (license license:lppl1.2+)))
1928
19e31f91
RW
1929(define-public texlive-hyphen-sanskrit
1930 (package
1931 (inherit (texlive-hyphen-package
1932 "texlive-hyphen-sanskrit" "sa"
1933 (list "/doc/generic/hyph-utf8/sa/hyphenmin.txt"
1934 "/tex/generic/hyph-utf8/patterns/tex/hyph-sa.tex")
1935 (base32
85892948 1936 "0gi2qk0wf388h9n25gzhv0cdz67ph83wal8h3iz2sqnpdjsw8kpc")))
19e31f91
RW
1937 (synopsis "Sanskrit hyphenation patterns")
1938 (description "This package provides hyphenation patterns for Sanskrit and
1939Prakrit in longdesc transliteration, and in Devanagari, Bengali, Kannada,
1940Malayalam longdesc and Telugu scripts for Unicode engines.")
1941 ;; "You may freely use, copy, modify and/or distribute this file."
1942 (license (license:non-copyleft
1943 "file:///tex/generic/hyph-utf8/patterns/tex/hyph-sa.tex"))))
1944
67c7900e
RW
1945(define-public texlive-hyphen-serbian
1946 (package
1947 (inherit (texlive-hyphen-package
1948 "texlive-hyphen-serbian" '("sh-cyrl" "sh-latn" "sr-cyrl")
1949 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-sh-cyrl.tex"
1950 "/tex/generic/hyph-utf8/patterns/tex/hyph-sh-latn.tex"
1951 "/tex/generic/hyph-utf8/patterns/tex/hyph-sr-cyrl.tex")
1952 (base32
85892948 1953 "0pwc9z0m5y6acq1vqm0da9akg156jbhxzvsfp2f8bsz5b99y5z45")))
67c7900e
RW
1954 (synopsis "Serbian hyphenation patterns")
1955 (description "This package provides hyphenation patterns for Serbian in
1956T1/EC, T2A and UTF-8 encodings.")
1957 ;; Any version of the GPL.
1958 (license license:gpl3+)))
1959
af13345a
RW
1960(define-public texlive-hyphen-slovak
1961 (package
1962 (inherit (texlive-hyphen-package
1963 "texlive-hyphen-slovak" "sk"
1964 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-sk.tex")
1965 (base32
85892948 1966 "0ppp53bbclp5c8wvx748krvrp5y5053khgkjnnv966a90fvp3vgd")))
af13345a
RW
1967 (synopsis "Slovak hyphenation patterns")
1968 (description "This package provides hyphenation patterns for Slovak in
1969T1/EC and UTF-8 encodings.")
1970 (license license:gpl2+)))
1971
3cd8868f
RW
1972(define-public texlive-hyphen-slovenian
1973 (package
1974 (inherit (texlive-hyphen-package
1975 "texlive-hyphen-slovenian" "sl"
1976 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-sl.tex")
1977 (base32
85892948 1978 "02n8l9yf4hqyhbpsc1n6b2mggy09z6lq4dcb8ndiwawb6h0mp7s4")))
3cd8868f
RW
1979 (synopsis "Slovenian hyphenation patterns")
1980 (description "This package provides hyphenation patterns for Slovenian in
1981T1/EC and UTF-8 encodings.")
1982 ;; Either license
1983 (license (list license:lppl1.0+ license:expat))))
1984
40b009b8
RW
1985(define-public texlive-hyphen-spanish
1986 (package
1987 ;; The source files "eshyph-make.lua" and "eshyph.src" are provided to
1988 ;; generate obsolete hyphenation patterns, which aren't included in a
1989 ;; default TeX Live distribution, so we don't include them either.
1990 (inherit (texlive-hyphen-package
1991 "texlive-hyphen-spanish" "es"
1992 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-es.tex")
1993 (base32
85892948 1994 "1h3yg9vcq0lf7hxv0ahkqmyg269dxjs8m2mz8sgz5l1fxmvahvaj")))
40b009b8
RW
1995 (synopsis "Hyphenation patterns for Spanish")
1996 (description "The package provides hyphenation patterns for Spanish in
1997T1/EC and UTF-8 encodings.")
1998 (license license:expat)))
1999
1e7db181
RW
2000(define-public texlive-hyphen-swedish
2001 (package
2002 (inherit (texlive-hyphen-package
2003 "texlive-hyphen-swedish" "sv"
2004 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-sv.tex")
2005 (base32
85892948 2006 "1n7incy7n24pix1q2i8c3h7i78zpql5ayhskavlmy6mhd7ayncaw")))
1e7db181
RW
2007 (synopsis "Swedish hyphenation patterns")
2008 (description "This package provides hyphenation patterns for Swedish in
2009T1/EC and UTF-8 encodings.")
2010 (license license:lppl1.2+)))
2011
3eaee8fb
RW
2012(define-public texlive-hyphen-thai
2013 (package
2014 (inherit (texlive-hyphen-package
2015 "texlive-hyphen-thai" "th"
2016 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-th.tex")
2017 (base32
85892948 2018 "00gxcs4jfqifd5cnrjipn77m73fmpw2qms4lp216jj3kz4a7h9kf")))
3eaee8fb
RW
2019 (synopsis "Thai hyphenation patterns")
2020 (description "This package provides hyphenation patterns for Thai in LTH
2021and UTF-8 encodings.")
2022 (license license:lppl1.3+)))
2023
e80ecb7b
RW
2024(define-public texlive-hyphen-turkish
2025 (let ((template (texlive-hyphen-package
2026 "texlive-hyphen-turkish" "tr"
85892948 2027 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-tr.tex")
e80ecb7b 2028 (base32
85892948 2029 "04sihjgpm31i5bi67rrfp15w3imn7hxwwk70v0vhx053ghxy72vh"))))
e80ecb7b
RW
2030 (package
2031 (inherit template)
e80ecb7b
RW
2032 (synopsis "Hyphenation patterns for Turkish")
2033 (description "The package provides hyphenation patterns for Turkish in
2034T1/EC and UTF-8 encodings. The patterns for Turkish were first produced for
2035the Ottoman Texts Project in 1987 and were suitable for both Modern Turkish
2036and Ottoman Turkish in Latin script, however the required character set didn't
2037fit into EC encoding, so support for Ottoman Turkish had to be dropped to keep
2038compatibility with 8-bit engines.")
2039 (license license:lppl1.0+))))
2040
5f50dd95
RW
2041(define-public texlive-hyphen-turkmen
2042 (let ((template (texlive-hyphen-package
2043 "texlive-hyphen-turkmen" "tk"
85892948 2044 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-tk.tex")
5f50dd95 2045 (base32
85892948 2046 "0g5ip2lw9g47s61mv3cypswc6qm7zy9c4iqq4h19ysvds81adzkr"))))
5f50dd95
RW
2047 (package
2048 (inherit template)
5f50dd95
RW
2049 (synopsis "Hyphenation patterns for Turkmen")
2050 (description "The package provides hyphenation patterns for Turkmen in
2051T1/EC and UTF-8 encodings.")
85892948 2052 (license license:expat))))
5f50dd95 2053
cf8f4e1b
RW
2054(define-public texlive-hyphen-ukrainian
2055 (package
2056 (inherit (texlive-hyphen-package
2057 "texlive-hyphen-ukrainian" "uk"
2058 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-uk.tex")
2059 (base32
85892948 2060 "0fbfhx1fmbshxr4ihsjaqgx251h69h7i288p8gh3w6ysgxr53p60")))
cf8f4e1b
RW
2061 (synopsis "Ukrainian hyphenation patterns")
2062 (description "This package provides hyphenation patterns for Ukrainian in
2063T2A and UTF-8 encodings.")
2064 ;; No version specified
2065 (license license:lppl)))
2066
71e58125
RW
2067(define-public texlive-hyphen-uppersorbian
2068 (package
2069 (inherit (texlive-hyphen-package
2070 "texlive-hyphen-uppersorbian" "hsb"
2071 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-hsb.tex")
2072 (base32
85892948 2073 "0x0051wph3sqmzzw6prvjy6bp7gn02rbmys1bmbc210jk3pkylfj")))
71e58125
RW
2074 (synopsis "Upper Sorbian hyphenation patterns")
2075 (description "This package provides hyphenation patterns for Upper Sorbian
2076in T1/EC and UTF-8 encodings.")
2077 (license license:lppl1.3a+)))
2078
0d4088e4
RW
2079(define-public texlive-hyphen-welsh
2080 (package
2081 (inherit (texlive-hyphen-package
2082 "texlive-hyphen-welsh" "cy"
2083 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-cy.tex")
2084 (base32
85892948 2085 "1bpxp3jiifdw7waw2idz5j9xgi3526nkxm8mbmsspr4mlf2xyr76")))
0d4088e4
RW
2086 (synopsis "Welsh hyphenation patterns")
2087 (description "This package provides hyphenation patterns for Welsh in
2088T1/EC and UTF-8 encodings.")
2089 ;; Either license
2090 (license (list license:lppl1.0+ license:expat))))
2091
5153431c
RW
2092(define-public texlive-hyph-utf8
2093 (package
2094 (inherit (simple-texlive-package
2095 "texlive-hyph-utf8"
2096 (list "/source/generic/hyph-utf8/"
2097 "/source/luatex/hyph-utf8/"
2098 "/doc/luatex/hyph-utf8/"
2099 "/tex/luatex/hyph-utf8/etex.src"
2100 ;; Used to extract luatex-hyphen.lua
2101 "/tex/latex/base/docstrip.tex"
2102
2103 ;; Documentation; we can't use the whole directory because
2104 ;; it includes files from other packages.
2105 "/doc/generic/hyph-utf8/CHANGES"
2106 "/doc/generic/hyph-utf8/HISTORY"
2107 "/doc/generic/hyph-utf8/hyph-utf8.pdf"
2108 "/doc/generic/hyph-utf8/hyph-utf8.tex"
2109 "/doc/generic/hyph-utf8/hyphenation-distribution.pdf"
2110 "/doc/generic/hyph-utf8/hyphenation-distribution.tex"
2111 "/doc/generic/hyph-utf8/img/miktex-languages.png"
2112 "/doc/generic/hyph-utf8/img/texlive-collection.png")
2113 (base32
85892948 2114 "1bar5mc808ch20anhqrdxcwiych359qsvr7mggxpg2l2kq5xdyq0")))
5153431c
RW
2115 (outputs '("out" "doc"))
2116 (build-system gnu-build-system)
2117 (arguments
2118 `(#:tests? #f ; there are none
2119 #:modules ((guix build gnu-build-system)
2120 (guix build utils)
2121 (ice-9 match))
2122 #:make-flags
2123 (list "-C" "source/luatex/hyph-utf8/"
2124 (string-append "DO_TEX = tex --interaction=nonstopmode '&tex' $<")
2125 (string-append "RUNDIR =" (assoc-ref %outputs "out") "/share/texmf-dist/tex/luatex/hyph-utf8/")
2126 (string-append "DOCDIR =" (assoc-ref %outputs "doc") "/share/texmf-dist/doc/luatex/hyph-utf8/")
2127 ;; hyphen.cfg is neither included nor generated, so let's only build the lua file.
2128 (string-append "UNPACKED = $(NAME).lua"))
2129 #:phases
2130 (modify-phases %standard-phases
2131 ;; TeX isn't usable at this point, so we first need to generate the
2132 ;; tex.fmt.
2133 (replace 'configure
2134 (lambda* (#:key inputs outputs #:allow-other-keys)
2135 ;; Target directories must exist.
2136 (mkdir-p (string-append (assoc-ref %outputs "out")
2137 "/share/texmf-dist/tex/luatex/hyph-utf8/"))
2138 (mkdir-p (string-append (assoc-ref %outputs "doc")
2139 "/share/texmf-dist/doc/luatex/hyph-utf8/"))
2140
2141 ;; We cannot build the documentation because that requires a
2142 ;; fully functional pdflatex, which depends on this package.
2143 (substitute* "source/luatex/hyph-utf8/Makefile"
2144 (("all: .*") "all: $(RUNFILES)\n"))
2145
2146 ;; Find required fonts for building tex.fmt
2147 (setenv "TFMFONTS"
a6405e03 2148 (string-append (assoc-ref inputs "texlive-cm")
5153431c
RW
2149 "/share/texmf-dist/fonts/tfm/public/cm:"
2150 (assoc-ref inputs "texlive-fonts-knuth-lib")
2151 "/share/texmf-dist/fonts/tfm/public/knuth-lib"))
2152 ;; ...and find all tex files in this environment.
2153 (setenv "TEXINPUTS"
2154 (string-append
2155 (getcwd) ":"
2156 (string-join
2157 (map (match-lambda ((_ . dir) dir)) inputs)
2158 "//:")))
2159
2160 ;; Generate tex.fmt.
2161 (let ((where "source/luatex/hyph-utf8"))
2162 (mkdir-p where)
2163 (with-directory-excursion where
2164 (invoke "tex" "-ini"
2165 (string-append (assoc-ref inputs "texlive-tex-plain")
2166 "/share/texmf-dist/tex/plain/config/tex.ini"))))))
2167 (add-before 'build 'build-loaders-and-converters
2168 (lambda* (#:key outputs #:allow-other-keys)
2169 (let* ((root (string-append (assoc-ref outputs "out")
2170 "/share/texmf-dist"))
2171 (conv
2172 (string-append root
2173 "/tex/generic/hyph-utf8/conversions")))
2174
2175 ;; Build converters
2176 (mkdir-p conv)
2177 (with-directory-excursion "source/generic/hyph-utf8"
2178 (substitute* "generate-converters.rb"
2179 (("\\$path_root=File.*")
2180 (string-append "$path_root=\"" root "\"\n"))
2181 ;; Avoid error with newer Ruby.
2182 (("#1\\{%") "#1{%%"))
2183 (invoke "ruby" "generate-converters.rb"))
2184 #t)))
2185 (replace 'install
2186 (lambda* (#:key source outputs #:allow-other-keys)
2187 (let ((doc (assoc-ref outputs "doc"))
2188 (out (assoc-ref outputs "out")))
2189 (mkdir-p doc)
2190 (copy-recursively
2191 (string-append source "/doc")
2192 (string-append doc "/doc"))
2193 (install-file
2194 (string-append source "/tex/luatex/hyph-utf8/etex.src")
2195 (string-append out "/share/texmf-dist/tex/luatex/hyph-utf8/")))
2196 #t)))))
2197 (native-inputs
2198 `(("ruby" ,ruby)
2199 ("texlive-bin" ,texlive-bin)
2200 ;; The following packages are needed for build "tex.fmt", which we need
2201 ;; for a working "tex".
2202 ("texlive-tex-plain" ,texlive-tex-plain)
a6405e03 2203 ("texlive-cm" ,texlive-cm)
5153431c
RW
2204 ("texlive-fonts-knuth-lib" ,texlive-fonts-knuth-lib)
2205 ("texlive-hyphen-base" ,texlive-hyphen-base)))
2206 (home-page "https://ctan.org/pkg/hyph-utf8")
2207 (synopsis "Hyphenation patterns expressed in UTF-8")
2208 (description "Modern native UTF-8 engines such as XeTeX and LuaTeX need
2209hyphenation patterns in UTF-8 format, whereas older systems require
2210hyphenation patterns in the 8-bit encoding of the font in use (such encodings
2211are codified in the LaTeX scheme with names like OT1, T2A, TS1, OML, LY1,
2212etc). The present package offers a collection of conversions of existing
2213patterns to UTF-8 format, together with converters for use with 8-bit fonts in
2214older systems. Since hyphenation patterns for Knuthian-style TeX systems are
2215only read at iniTeX time, it is hoped that the UTF-8 patterns, with their
2216converters, will completely supplant the older patterns.")
2217 ;; Individual files each have their own license. Most of these files are
2218 ;; independent hyphenation patterns.
2219 (license (list license:lppl1.0+
2220 license:lppl1.2+
2221 license:lppl1.3
2222 license:lppl1.3+
2223 license:lppl1.3a+
2224 license:lgpl2.1
2225 license:lgpl2.1+
2226 license:lgpl3+
2227 license:gpl2+
2228 license:gpl3+
2229 license:mpl1.1
2230 license:asl2.0
2231 license:expat
2232 license:bsd-3
2233 license:cc0
2234 license:public-domain
2235 license:wtfpl2))))
2236
2237(define-public texlive-generic-hyph-utf8
2238 (deprecated-package "texlive-generic-hyph-utf8" texlive-hyph-utf8))
2239
e68c7091
RW
2240(define-public texlive-dehyph-exptl
2241 (package
2242 (inherit (simple-texlive-package
2243 "texlive-dehyph-exptl"
2244 (list "/tex/generic/dehyph-exptl/"
2245 "/doc/generic/dehyph-exptl/")
2246 (base32
85892948 2247 "1fnqc63gz8gvdyfz45bx8dxn1r1rwrypahs3bqd2vlc8ff76xp86")
e68c7091
RW
2248 #:trivial? #t))
2249 (propagated-inputs
2250 `(("texlive-hyphen-base" ,texlive-hyphen-base)
2251 ("texlive-hyph-utf8" ,texlive-hyph-utf8)))
2252 (home-page "http://projekte.dante.de/Trennmuster/WebHome")
2253 (synopsis "Hyphenation patterns for German")
2254 (description "The package provides experimental hyphenation patterns for
2255the German language, covering both traditional and reformed orthography. The
2256patterns can be used with packages Babel and hyphsubst from the Oberdiek
2257bundle.")
2258 ;; Hyphenation patterns are under the Expat license; documentation is
2259 ;; under LPPL.
2260 (license (list license:expat license:lppl))))
2261
2262(define-public texlive-generic-dehyph-exptl
2263 (deprecated-package "texlive-generic-dehyph-exptl" texlive-dehyph-exptl))
2264
10e8b338
RW
2265(define-public texlive-ukrhyph
2266 (package
2267 (inherit (simple-texlive-package
2268 "texlive-ukrhyph"
2269 (list "/doc/generic/ukrhyph/"
2270 "/tex/generic/ukrhyph/")
2271 (base32
2272 "01ma274sixcrbpb7fpqkxwfvrnzfj2srv9b4a42rfnph1pdql74z")
2273 #:trivial? #t))
2274 (home-page "https://www.ctan.org/pkg/ukrhyph")
2275 (synopsis "Hyphenation patterns for Ukrainian")
2276 (description "The package provides a range of hyphenation patterns for
2277Ukrainian, depending on the encoding of the output font including the standard
2278T2A.")
2279 (license license:lppl)))
2280
c87d8a14
RW
2281(define-public texlive-ruhyphen
2282 (let ((template (simple-texlive-package
2283 "texlive-ruhyphen"
2284 (list "/source/generic/ruhyphen/"
2285 "/tex/generic/ruhyphen/")
2286 (base32
2287 "18n1bqhh8jv765vz3a3fjwffy7m71vhwx9yq8zl0p5j7p72q9qcn")
2288 #:trivial? #t)))
2289 (package
2290 (inherit template)
2291 (arguments
2292 (substitute-keyword-arguments (package-arguments template)
2293 ((#:phases phases)
2294 `(modify-phases ,phases
2295 (replace 'build
2296 (lambda _
2297 (let ((cwd (getcwd)))
2298 ;; Remove generated files.
2299 (for-each delete-file
2300 (find-files "tex/generic/ruhyphen/"
2301 "^cyry.*.tex$"))
2302 (substitute* "source/generic/ruhyphen/Makefile"
2303 (("./mkcyryo") (string-append cwd "/source/generic/ruhyphen/mkcyryo")))
2304 (with-directory-excursion "tex/generic/ruhyphen"
2305 (invoke "make" "-f"
2306 (string-append cwd "/source/generic/ruhyphen/Makefile"))))))))))
2307 (native-inputs
2308 `(("coreutils" ,coreutils)
2309 ("gawk" ,gawk)
2310 ("sed" ,sed)
2311 ("grep" ,grep)
2312 ("perl" ,perl)))
2313 (home-page "https://www.ctan.org/pkg/ruhyphen")
2314 (synopsis "Hyphenation patterns for Russian")
2315 (description "The package provides a collection of Russian hyphenation
2316patterns supporting a number of Cyrillic font encodings, including T2,
2317UCY (Omega Unicode Cyrillic), LCY, LWN (OT2), and koi8-r.")
2318 (license license:lppl))))
2319
2b254694
RW
2320(define-public texlive-kpathsea
2321 (package
2322 (inherit (simple-texlive-package
2323 "texlive-kpathsea"
2324 (list "/web2c/amiga-pl.tcx"
2325 "/web2c/cp1250cs.tcx"
2326 "/web2c/cp1250pl.tcx"
2327 "/web2c/cp1250t1.tcx"
2328 "/web2c/cp227.tcx"
2329 "/web2c/cp852-cs.tcx"
2330 "/web2c/cp852-pl.tcx"
2331 "/web2c/cp8bit.tcx"
2332 "/web2c/empty.tcx"
2333 "/web2c/fmtutil.cnf"
2334 "/web2c/il1-t1.tcx"
2335 "/web2c/il2-cs.tcx"
2336 "/web2c/il2-pl.tcx"
2337 "/web2c/il2-t1.tcx"
2338 "/web2c/kam-cs.tcx"
2339 "/web2c/kam-t1.tcx"
2340 "/web2c/macce-pl.tcx"
2341 "/web2c/macce-t1.tcx"
2342 "/web2c/maz-pl.tcx"
2343 "/web2c/mktex.cnf"
2344 "/web2c/mktex.opt"
2345 "/web2c/mktexdir"
2346 "/web2c/mktexdir.opt"
2347 "/web2c/mktexnam"
2348 "/web2c/mktexnam.opt"
2349 "/web2c/mktexupd"
2350 "/web2c/natural.tcx"
2351 "/web2c/tcvn-t5.tcx"
2352 "/web2c/viscii-t5.tcx")
2353 (base32
85892948 2354 "191i8n3g46p53bb9dkx2ggwpzy7skgg0pbklsrpx8x4ayd86wcaf")
2b254694
RW
2355 #:trivial? #t))
2356 (home-page "https://www.tug.org/texlive/")
2357 (synopsis "Files related to the path searching library for TeX")
2358 (description "Kpathsea is a library and utility programs which provide
2359path searching facilities for TeX file types, including the self-locating
2360feature required for movable installations, layered on top of a general search
2361mechanism. This package provides supporting files.")
2362 (license license:lgpl3+)))
2363
57680dc2
RW
2364(define-public texlive-latexconfig
2365 (package
2366 (inherit (simple-texlive-package
2367 "texlive-latexconfig"
2368 (list "/tex/latex/latexconfig/")
2369 (base32
2370 "1wa7yhdpnz1nyidwgli68fyr33jn951bnniqrih5lj98k09rqc3h")
2371 #:trivial? #t))
2372 (home-page "https://www.tug.org/")
2373 (synopsis "Configuration files for LaTeX-related formats")
2374 (description "The package provides configuration files for LaTeX-related
2375formats.")
2376 (license license:lppl)))
2377
010f476f 2378(define-public texlive-latex-base
09e2f258
RW
2379 (let ((template (simple-texlive-package
2380 "texlive-latex-base"
2381 (list "/doc/latex/base/"
2382 "/source/latex/base/"
2383 ;; Almost all files in /tex/latex/base are generated, but
2384 ;; these are not:
2385 "/tex/latex/base/idx.tex"
2386 "/tex/latex/base/lablst.tex"
09e2f258
RW
2387 "/tex/latex/base/ltnews.cls"
2388 "/tex/latex/base/ltxcheck.tex"
2389 "/tex/latex/base/ltxguide.cls"
2390 "/tex/latex/base/minimal.cls"
2391 "/tex/latex/base/sample2e.tex"
2392 "/tex/latex/base/small2e.tex"
09e2f258
RW
2393 "/tex/latex/base/testpage.tex"
2394 "/tex/latex/base/texsys.cfg")
2395 (base32
85892948 2396 "0m0gjb4hbsf2iqkkx3px4f28r2scjvsjv4zb2whkbnb44apyw1f0")
09e2f258
RW
2397 #:trivial? #t)))
2398 (package
2399 (inherit template)
2400 (arguments
2401 (substitute-keyword-arguments (package-arguments template)
2402 ((#:modules modules '())
2403 '((guix build gnu-build-system)
2404 (guix build utils)
2405 (ice-9 match)
2406 (srfi srfi-26)))
2407 ((#:phases phases)
2408 `(modify-phases ,phases
201015b1
RW
2409 ;; The literal tab in the dtx file is translated to the string
2410 ;; "^^I" in the generated Lua file, which causes a syntax error.
2411 (add-after 'unpack 'fix-lua-sources
2412 (lambda _
2413 (substitute* "source/latex/base/ltluatex.dtx"
2414 ((" ") " "))
2415 #t))
09e2f258
RW
2416 (replace 'build
2417 (lambda* (#:key inputs #:allow-other-keys)
2418 ;; Find required fonts
2419 (setenv "TFMFONTS"
2420 (string-join
2421 (map (match-lambda
2422 ((pkg-name . dir)
2423 (string-append
2424 (assoc-ref inputs pkg-name)
2425 "/share/texmf-dist/fonts/tfm/public"
2426 dir)))
2427 '(("texlive-etex" . "/etex")
2428 ("texlive-cm" . "/cm")
2429 ("texlive-fonts-latex" . "/latex-fonts")
2430 ("texlive-fonts-knuth-lib" . "/knuth-lib")))
2431 ":"))
2432 (let ((cwd (getcwd)))
2433 (setenv "TEXINPUTS"
2434 (string-append
2435 cwd "//:"
2436 cwd "/source/latex/base//:"
2437 cwd "/build:"
2438 (string-join
2439 (map (match-lambda ((_ . dir) dir)) inputs)
2440 "//:"))))
2441
2442 ;; This is the actual build step.
2443 (mkdir "build")
2444 (invoke "tex" "-ini" "-interaction=scrollmode"
2445 "-output-directory=build" "unpack.ins")
2446
2447 ;; XXX: We can't build all formats at this point, nor are they
2448 ;; part of the LaTeX base, so we disable them. Actually, we
2449 ;; should be running this all in a profile hook, so that only
2450 ;; selected formats and hyphenation patterns are included, but it
2451 ;; takes long and TeX Live isn't designed to be modular like
2452 ;; that. Everything operates on a shared directory, which we
2453 ;; would only have at profile generation time.
2454 (let ((disabled-formats
2455 '("aleph aleph" "lamed aleph" "uptex uptex" "euptex euptex"
2456 "eptex eptex" "ptex ptex" "pdfxmltex pdftex" "platex eptex"
2457 "csplain pdftex" "mf mf-nowin" "mex pdftex" "pdfmex pdftex"
85892948 2458 "luacsplain luatex"
09e2f258
RW
2459 "cont-en xetex" "cont-en pdftex" "pdfcsplain xetex"
2460 "pdfcsplain pdftex" "pdfcsplain luatex" "cslatex pdftex"
2461 "mptopdf pdftex" "uplatex euptex" "jadetex pdftex"
2462 "amstex pdftex" "pdfcslatex pdftex" "lollipop tex"
2463 "xmltex pdftex" "pdfjadetex pdftex" "eplain pdftex"
2464 "texsis pdftex" "mltex pdftex" "utf8mex pdftex")))
2465 (mkdir "web2c")
2466 (install-file (string-append
2467 (assoc-ref inputs "texlive-kpathsea")
2468 "/share/texmf-dist/web2c/fmtutil.cnf")
2469 "web2c")
2470 (make-file-writable "web2c/fmtutil.cnf")
2471 (substitute* "web2c/fmtutil.cnf"
2472 (((string-append "^(" (string-join disabled-formats "|") ")") m)
2473 (string-append "#! " m))))
2474 (invoke "fmtutil-sys" "--all"
2475 "--fmtdir=web2c"
2476 (string-append "--cnffile=web2c/fmtutil.cnf"))
2477 ;; We don't actually want to install it.
2478 (delete-file "web2c/fmtutil.cnf")
2479 #t))
2480 (add-after 'install 'install-more
2481 (lambda* (#:key inputs outputs #:allow-other-keys)
2482 (let* ((out (assoc-ref outputs "out"))
2483 (root (string-append out "/share/texmf-dist"))
2484 (target (string-append root "/tex/latex/base"))
2485 (web2c (string-append root "/web2c"))
2486 (makeindex (string-append root "/makeindex/latex")))
2487 (for-each delete-file (find-files "." "\\.(log|aux)$"))
2488
2489 ;; The usedir directive in docstrip.ins is ignored, so these
2490 ;; two files end up in the wrong place. Move them.
2491 (mkdir-p makeindex)
2492 (for-each (lambda (file)
2493 (install-file file makeindex)
2494 (delete-file file))
2495 '("build/gglo.ist"
2496 "build/gind.ist"))
2497 (for-each (cut install-file <> target)
2498 (find-files "build" ".*"))
2499 (for-each (cut install-file <> web2c)
2500 (find-files "web2c" ".*"))
2501 #t)))))))
2502 (native-inputs
2503 `(("texlive-bin" ,texlive-bin)
2504 ("texlive-tex-ini-files" ,texlive-tex-ini-files)
2505 ("texlive-tex-plain" ,texlive-tex-plain)
2506 ("texlive-kpathsea" ,texlive-kpathsea)
2507 ("texlive-cm" ,texlive-cm)
2508 ("texlive-fonts-latex" ,texlive-fonts-latex)
2509 ("texlive-fonts-knuth-lib" ,texlive-fonts-knuth-lib)
2510 ("texlive-luatexconfig"
2511 ,(texlive-origin
2512 "texlive-luatexconfig" (number->string %texlive-revision)
2513 (list "/tex/generic/config/luatex-unicode-letters.tex"
2514 "/tex/generic/config/luatexiniconfig.tex"
2515 "/web2c/texmfcnf.lua")
2516 (base32
85892948 2517 "1gi87wy12r8w8fhx9ajcid382dmqzf6b9070b5nndvbbjrvhwf23")))))
09e2f258
RW
2518 (propagated-inputs
2519 `(("texlive-dehyph-exptl" ,texlive-dehyph-exptl)
2520 ("texlive-etex" ,texlive-etex)
2521 ("texlive-hyph-utf8" ,texlive-hyph-utf8)
2522 ("texlive-hyphen-base" ,texlive-hyphen-base)
2523 ("texlive-hyphen-afrikaans" ,texlive-hyphen-afrikaans)
2524 ("texlive-hyphen-ancientgreek" ,texlive-hyphen-ancientgreek)
2525 ("texlive-hyphen-armenian" ,texlive-hyphen-armenian)
2526 ("texlive-hyphen-basque" ,texlive-hyphen-basque)
2527 ("texlive-hyphen-belarusian" ,texlive-hyphen-belarusian)
2528 ("texlive-hyphen-bulgarian" ,texlive-hyphen-bulgarian)
2529 ("texlive-hyphen-catalan" ,texlive-hyphen-catalan)
2530 ("texlive-hyphen-chinese" ,texlive-hyphen-chinese)
2531 ("texlive-hyphen-churchslavonic" ,texlive-hyphen-churchslavonic)
2532 ("texlive-hyphen-coptic" ,texlive-hyphen-coptic)
2533 ("texlive-hyphen-croatian" ,texlive-hyphen-croatian)
2534 ("texlive-hyphen-czech" ,texlive-hyphen-czech)
2535 ("texlive-hyphen-danish" ,texlive-hyphen-danish)
2536 ("texlive-hyphen-dutch" ,texlive-hyphen-dutch)
2537 ("texlive-hyphen-english" ,texlive-hyphen-english)
2538 ("texlive-hyphen-esperanto" ,texlive-hyphen-esperanto)
2539 ("texlive-hyphen-estonian" ,texlive-hyphen-estonian)
2540 ("texlive-hyphen-ethiopic" ,texlive-hyphen-ethiopic)
2541 ("texlive-hyphen-finnish" ,texlive-hyphen-finnish)
2542 ("texlive-hyphen-french" ,texlive-hyphen-french)
2543 ("texlive-hyphen-friulan" ,texlive-hyphen-friulan)
2544 ("texlive-hyphen-galician" ,texlive-hyphen-galician)
2545 ("texlive-hyphen-georgian" ,texlive-hyphen-georgian)
2546 ("texlive-hyphen-german" ,texlive-hyphen-german)
2547 ("texlive-hyphen-greek" ,texlive-hyphen-greek)
2548 ("texlive-hyphen-hungarian" ,texlive-hyphen-hungarian)
2549 ("texlive-hyphen-icelandic" ,texlive-hyphen-icelandic)
2550 ("texlive-hyphen-indic" ,texlive-hyphen-indic)
2551 ("texlive-hyphen-indonesian" ,texlive-hyphen-indonesian)
2552 ("texlive-hyphen-interlingua" ,texlive-hyphen-interlingua)
2553 ("texlive-hyphen-irish" ,texlive-hyphen-irish)
2554 ("texlive-hyphen-italian" ,texlive-hyphen-italian)
2555 ("texlive-hyphen-kurmanji" ,texlive-hyphen-kurmanji)
2556 ("texlive-hyphen-latin" ,texlive-hyphen-latin)
2557 ("texlive-hyphen-latvian" ,texlive-hyphen-latvian)
2558 ("texlive-hyphen-lithuanian" ,texlive-hyphen-lithuanian)
2559 ("texlive-hyphen-mongolian" ,texlive-hyphen-mongolian)
2560 ("texlive-hyphen-norwegian" ,texlive-hyphen-norwegian)
2561 ("texlive-hyphen-occitan" ,texlive-hyphen-occitan)
85892948 2562 ("texlive-hyphen-pali" ,texlive-hyphen-pali)
09e2f258
RW
2563 ("texlive-hyphen-piedmontese" ,texlive-hyphen-piedmontese)
2564 ("texlive-hyphen-polish" ,texlive-hyphen-polish)
2565 ("texlive-hyphen-portuguese" ,texlive-hyphen-portuguese)
2566 ("texlive-hyphen-romanian" ,texlive-hyphen-romanian)
2567 ("texlive-hyphen-romansh" ,texlive-hyphen-romansh)
2568 ("texlive-hyphen-russian" ,texlive-hyphen-russian)
2569 ("texlive-hyphen-sanskrit" ,texlive-hyphen-sanskrit)
2570 ("texlive-hyphen-serbian" ,texlive-hyphen-serbian)
2571 ("texlive-hyphen-slovak" ,texlive-hyphen-slovak)
2572 ("texlive-hyphen-slovenian" ,texlive-hyphen-slovenian)
2573 ("texlive-hyphen-spanish" ,texlive-hyphen-spanish)
2574 ("texlive-hyphen-swedish" ,texlive-hyphen-swedish)
2575 ("texlive-hyphen-thai" ,texlive-hyphen-thai)
2576 ("texlive-hyphen-turkish" ,texlive-hyphen-turkish)
2577 ("texlive-hyphen-turkmen" ,texlive-hyphen-turkmen)
2578 ("texlive-hyphen-ukrainian" ,texlive-hyphen-ukrainian)
2579 ("texlive-hyphen-uppersorbian" ,texlive-hyphen-uppersorbian)
2580 ("texlive-hyphen-welsh" ,texlive-hyphen-welsh)
2581 ("texlive-unicode-data" ,texlive-unicode-data)
2582 ("texlive-ukrhyph" ,texlive-ukrhyph)
2583 ("texlive-ruhyphen" ,texlive-ruhyphen)
2584 ("texlive-latexconfig" ,texlive-latexconfig)))
2585 (home-page "https://www.ctan.org/pkg/latex-base")
2586 (synopsis "Base sources of LaTeX")
2587 (description
2588 "This bundle comprises the source of LaTeX itself, together with several
010f476f
RW
2589packages which are considered \"part of the kernel\". This bundle, together
2590with the required packages, constitutes what every LaTeX distribution should
2591contain.")
09e2f258 2592 (license license:lppl1.3c+))))
010f476f 2593
3e485ed2
RW
2594(define-public texlive-latex-filecontents
2595 (package
2596 (name "texlive-latex-filecontents")
2597 (version (number->string %texlive-revision))
2598 (source (origin
2599 (method svn-fetch)
2600 (uri (texlive-ref "latex" "filecontents"))
7e353a77 2601 (file-name (string-append name "-" version "-checkout"))
3e485ed2
RW
2602 (sha256
2603 (base32
85892948 2604 "1h78zw0vhldx478zs4v86ajg7vpkysd1kg3npc480qqls3q6ba40"))))
3e485ed2
RW
2605 (build-system texlive-build-system)
2606 (arguments '(#:tex-directory "latex/filecontents"))
b8d8806b 2607 (home-page "https://www.ctan.org/pkg/filecontents")
3e485ed2
RW
2608 (synopsis "Extended filecontents and filecontents* environments")
2609 (description
2610 "LaTeX2e's @code{filecontents} and @code{filecontents*} environments
2611enable a LaTeX source file to generate external files as it runs through
2612LaTeX. However, there are two limitations of these environments: they refuse
2613to overwrite existing files, and they can only be used in the preamble of a
2614document. The filecontents package removes these limitations, letting you
2615overwrite existing files and letting you use @code{filecontents} /
2616@code{filecontents*} anywhere.")
2617 (license license:lppl1.3c+)))
2618
1193aa89
RW
2619(define-public texlive-generic-ifxetex
2620 (package
2621 (name "texlive-generic-ifxetex")
fea8eef3 2622 (version (number->string %texlive-revision))
1193aa89
RW
2623 (source (origin
2624 (method svn-fetch)
2625 (uri (texlive-ref "generic" "ifxetex"))
24dbc602 2626 (file-name (string-append name "-" version "-checkout"))
1193aa89
RW
2627 (sha256
2628 (base32
2629 "0w2xj7n0szavj329kds09q626szkc378p3w0sk022q0ln4ksz86d"))))
2630 (build-system texlive-build-system)
2631 (arguments
2632 '(#:tex-directory "generic/ifxetex"
2633 #:tex-format "xelatex"))
2634 (inputs
2635 `(("texlive-latex-filecontents" ,texlive-latex-filecontents)))
b8d8806b 2636 (home-page "https://www.ctan.org/pkg/ifxetex")
1193aa89
RW
2637 (synopsis "Am I running under XeTeX?")
2638 (description
2639 "This is a simple package which provides an @code{\\ifxetex} conditional,
2640so that other code can determine that it is running under XeTeX. The package
beb476ed 2641requires the e-TeX extensions to the TeX primitive set.")
1193aa89
RW
2642 (license license:lppl1.3c+)))
2643
f104ff61 2644(define-public texlive-epsf
9186c156 2645 (package
f104ff61
RW
2646 (inherit (simple-texlive-package
2647 "texlive-epsf"
2648 (list "/doc/generic/epsf/"
2649 "/tex/generic/epsf/")
2650 (base32
2651 "03jcf0kqh47is965d2590miwj7d5kif3c4mgsnvkyl664jzjkh92")
2652 #:trivial? #t))
b8d8806b 2653 (home-page "https://www.ctan.org/pkg/epsf")
9186c156
RW
2654 (synopsis "Simple macros for EPS inclusion")
2655 (description
2656 "This package provides the original (and now obsolescent) graphics
2657inclusion macros for use with dvips, still widely used by Plain TeX users (in
2658particular). For LaTeX users, the package is nowadays (rather strongly)
2659deprecated in favour of the more sophisticated standard LaTeX latex-graphics
2660bundle of packages. (The latex-graphics bundle is also available to Plain TeX
2661users, via its Plain TeX version.)")
2662 (license license:public-domain)))
2663
f104ff61
RW
2664(define-public texlive-generic-epsf
2665 (deprecated-package "texlive-generic-epsf" texlive-epsf))
2666
437822a1
RW
2667(define-public texlive-latex-fancyvrb
2668 (package
85892948
MB
2669 (inherit (simple-texlive-package
2670 "texlive-latex-fancyvrb"
2671 (list "/doc/latex/fancyvrb/README"
2672 "/tex/latex/fancyvrb/")
2673 (base32
2674 "1dwkcradz9nwpjwmv1sjzn77lvw25ypr0rrgmf1kd8pd2mw7dxcn")
2675 #:trivial? #t))
b8d8806b 2676 (home-page "https://www.ctan.org/pkg/fancyvrb")
437822a1
RW
2677 (synopsis "Sophisticated verbatim text")
2678 (description
2679 "This package provides tools for the flexible handling of verbatim text
2680including: verbatim commands in footnotes; a variety of verbatim environments
2681with many parameters; ability to define new customized verbatim environments;
2682save and restore verbatim text and environments; write and read files in
2683verbatim mode; build \"example\" environments (showing both result and
2684verbatim source).")
2685 (license license:lppl1.0+)))
2686
f1b0939d
RW
2687(define-public texlive-graphics-def
2688 (package
2689 (inherit (simple-texlive-package
2690 "texlive-graphics-def"
2691 (list "/doc/latex/graphics-def/README.md"
2692 "/tex/latex/graphics-def/")
2693 (base32
2694 "0zrbn9cwfnnrrl3b2zsd74ldksp9jwpvjh7z93ild1m75crpb39a")
2695 #:trivial? #t))
2696 (home-page "https://www.ctan.org/pkg/latex-graphics")
2697 (synopsis "Color and graphics option files")
2698 (description
2699 "This bundle is a combined distribution consisting of @file{dvips.def},
2700@file{pdftex.def}, @file{luatex.def}, @file{xetex.def}, @file{dvipdfmx.def},
2701and @file{dvisvgm.def} driver option files for the LaTeX graphics and color
2702packages.")
2703 (license license:lppl1.3c+)))
2704
83a5c617
RW
2705(define-public texlive-graphics-cfg
2706 (package
2707 (inherit (simple-texlive-package
2708 "texlive-graphics-cfg"
2709 (list "/doc/latex/graphics-cfg/README.md"
2710 "/tex/latex/graphics-cfg/")
2711 (base32
2712 "00n63adb2laf43lzix39xl68aq0k5k80mmrw602w99w5n7f96gsf")
2713 #:trivial? #t))
2714 (home-page "https://www.ctan.org/pkg/latex-graphics")
2715 (synopsis "Sample configuration files for LaTeX color and graphics")
2716 (description
2717 "This bundle includes @file{color.cfg} and @file{graphics.cfg} files that
2718set default \"driver\" options for the color and graphics packages.")
2719 (license license:public-domain)))
2720
4eebd2cd
RW
2721(define-public texlive-latex-graphics
2722 (package
2723 (name "texlive-latex-graphics")
2724 (version (number->string %texlive-revision))
2725 (source (origin
2726 (method svn-fetch)
2727 (uri (texlive-ref "latex" "graphics"))
f7302073 2728 (file-name (string-append name "-" version "-checkout"))
4eebd2cd
RW
2729 (sha256
2730 (base32
d4d9a1ec 2731 "0nlfhn55ax89rcvpkrl9570671b62kcr4c9l5ch3w5zw9vmi00dz"))))
4eebd2cd 2732 (build-system texlive-build-system)
152950d4
RW
2733 (arguments '(#:tex-directory "latex/graphics"))
2734 (propagated-inputs
2735 `(("texlive-graphics-cfg" ,texlive-graphics-cfg)
2736 ("texlive-graphics-def" ,texlive-graphics-def)))
b8d8806b 2737 (home-page "https://www.ctan.org/pkg/latex-graphics")
4eebd2cd
RW
2738 (synopsis "LaTeX standard graphics bundle")
2739 (description
2740 "This is a collection of LaTeX packages for producing color, including
2741graphics (e.g. PostScript) files, and rotation and scaling of text in LaTeX
2742documents. It comprises the packages color, graphics, graphicx, trig, epsfig,
2743keyval, and lscape.")
152950d4 2744 (license license:lppl1.3c+)))
4eebd2cd 2745
266e0742
RW
2746(define-public texlive-xcolor
2747 (let ((template (simple-texlive-package
2748 "texlive-xcolor"
2749 (list "/doc/latex/xcolor/"
2750 "/source/latex/xcolor/")
2751 (base32
2752 "12q6spmpxg30alhvarjmxzigmz7lazapbrb0mc4vhbn6n1sdz7pp"))))
2753 (package
2754 (inherit template)
2755 (arguments
2756 (substitute-keyword-arguments (package-arguments template)
2757 ((#:tex-directory _ #t)
2758 "latex/xcolor")
2759 ((#:phases phases)
2760 `(modify-phases ,phases
2761 (add-after 'unpack 'chdir
2762 (lambda _ (chdir "source/latex/xcolor") #t))
2763 (add-after 'install 'move-files
2764 (lambda* (#:key outputs #:allow-other-keys)
2765 (let ((share (string-append (assoc-ref outputs "out")
2766 "/share/texmf-dist")))
2767 (mkdir-p (string-append share "/dvips/xcolor"))
2768 (rename-file (string-append share "/tex/latex/xcolor/xcolor.pro")
2769 (string-append share "/dvips/xcolor/xcolor.pro"))
2770 #t)))))))
2771 (home-page "https://www.ctan.org/pkg/xcolor")
2772 (synopsis "Driver-independent color extensions for LaTeX and pdfLaTeX")
2773 (description
2774 "The package starts from the basic facilities of the colorcolor package,
f5a6af42
RW
2775and provides easy driver-independent access to several kinds of color tints,
2776shades, tones, and mixes of arbitrary colors. It allows a user to select a
2777document-wide target color model and offers complete tools for conversion
2778between eight color models. Additionally, there is a command for alternating
2779row colors plus repeated non-aligned material (like horizontal lines) in
2780tables.")
266e0742
RW
2781 (license license:lppl1.2+))))
2782
2783(define-public texlive-latex-xcolor
2784 (deprecated-package "texlive-latex-xcolor" texlive-xcolor))
f5a6af42 2785
4d660fdf
RW
2786(define-public texlive-latex-hyperref
2787 (package
2788 (name "texlive-latex-hyperref")
2789 (version "6.84a2")
2790 ;; The sources in the TeX Live SVN repository do not contain hluatex.dtx,
2791 ;; so we fetch the release from GitHub.
2792 (source (origin
2793 (method url-fetch)
2794 (uri (string-append "https://github.com/ho-tex/hyperref/"
2795 "archive/release-" version ".tar.gz"))
2796 (file-name (string-append name "-" version ".tar.gz"))
2797 (sha256
2798 (base32
2799 "1d3rmjgzh0025a1dza55zb6nzzlgd1y9snwx45wq1c1vf42m79h2"))))
2800 (build-system texlive-build-system)
2801 (arguments '(#:tex-directory "latex/hyperref"))
2a0bcbf4
RW
2802 (propagated-inputs
2803 `(("texlive-latex-oberdiek" ,texlive-latex-oberdiek) ; for ltxcmds.sty
2804 ("texlive-latex-url" ,texlive-latex-url)))
b8d8806b 2805 (home-page "https://www.ctan.org/pkg/hyperref")
4d660fdf
RW
2806 (synopsis "Extensive support for hypertext in LaTeX")
2807 (description
c5a8ecb6
RW
2808 "The @code{hyperref} package is used to handle cross-referencing commands
2809in LaTeX to produce hypertext links in the document. The package provides
2810backends for the @code{\\special} set defined for HyperTeX DVI processors; for
2811embedded @code{pdfmark} commands for processing by Acrobat
2812Distiller (@code{dvips} and Y&Y's @code{dvipsone}); for Y&Y's @code{dviwindo};
2813for PDF control within pdfTeX and @code{dvipdfm}; for TeX4ht; and for VTeX's
2814pdf and HTML backends. The package is distributed with the @code{backref} and
2815@code{nameref} packages, which make use of the facilities of @code{hyperref}.")
4d660fdf
RW
2816 (license license:lppl1.3+)))
2817
c3455b7d
RW
2818(define-public texlive-latex-oberdiek
2819 (package
2820 (name "texlive-latex-oberdiek")
2821 (version (number->string %texlive-revision))
2822 (source (origin
2823 (method svn-fetch)
2824 (uri (texlive-ref "latex" "oberdiek"))
7dea3119 2825 (file-name (string-append name "-" version "-checkout"))
c3455b7d
RW
2826 (sha256
2827 (base32
85892948 2828 "0pi2d6gsddcs9wprdbar46s91kdc5fxl1m79g7xrbccsx8s9xbml"))))
c3455b7d
RW
2829 (build-system texlive-build-system)
2830 (arguments
2831 '(#:tex-directory "latex/oberdiek"
05d28068 2832 #:build-targets '("oberdiek.ins")
c3455b7d
RW
2833 #:phases
2834 (modify-phases %standard-phases
05d28068 2835 ;; "ifpdf.ins" is not generated, so we need to process the dtx file.
c3455b7d
RW
2836 (add-after 'unpack 'do-not-process-ifpdf.ins
2837 (lambda _
2838 (substitute* "oberdiek.ins"
05d28068 2839 (("ifpdf.ins") "ifpdf.dtx"))
c3455b7d 2840 #t)))))
a9cd7b03
RW
2841 (propagated-inputs
2842 `(("texlive-generic-ifxetex" ,texlive-generic-ifxetex)))
b8d8806b 2843 (home-page "https://www.ctan.org/pkg/oberdiek")
c3455b7d
RW
2844 (synopsis "Bundle of packages submitted by Heiko Oberdiek")
2845 (description
2846 "The bundle comprises various LaTeX packages, providing among others:
2847better accessibility support for PDF files; extensible chemists reaction
2848arrows; record information about document class(es) used; and many more.")
2849 (license license:lppl1.3+)))
2850
f2536af2
RW
2851(define-public texlive-latex-tools
2852 (package
2853 (name "texlive-latex-tools")
2854 (version (number->string %texlive-revision))
2855 (source (origin
2856 (method svn-fetch)
2857 (uri (texlive-ref "latex" "tools"))
f8340ab1 2858 (file-name (string-append name "-" version "-checkout"))
f2536af2
RW
2859 (sha256
2860 (base32
85892948 2861 "1wqvn4z0s92h5iqzrvxw7hinzp95avjk9v8lnqbqr4kz6nv4xb9l"))))
f2536af2
RW
2862 (build-system texlive-build-system)
2863 (arguments
2864 '(#:tex-directory "latex/tools"
2865 #:build-targets '("tools.ins")))
b8d8806b 2866 (home-page "https://www.ctan.org/pkg/latex-tools")
f2536af2
RW
2867 (synopsis "LaTeX standard tools bundle")
2868 (description
2869 "This package is a collection of (variously) simple tools provided as
2870part of the LaTeX required tools distribution, comprising the following
2871packages: afterpage, array, bm, calc, dcolumn, delarray, enumerate, fileerr,
2872fontsmpl, ftnright, hhline, indentfirst, layout, longtable, multicol,
2873rawfonts, showkeys, somedefs, tabularx, theorem, trace, varioref, verbatim,
2874xr, and xspace.")
2875 (license license:lppl1.3+)))
2876
c97d1a91 2877(define-public texlive-url
35adcc3a 2878 (package
c97d1a91
RW
2879 (inherit (simple-texlive-package
2880 "texlive-url"
2881 (list "/doc/latex/url/"
2882 "/tex/latex/url/")
2883 (base32
2884 "184m40wgnx939ky2hbxnj0v9aak023ldrhgffp0lgyk9wdqpxlqg")
2885 #:trivial? #t))
35adcc3a
RW
2886 (home-page "https://www.ctan.org/pkg/url")
2887 (synopsis "Verbatim with URL-sensitive line breaks")
2888 (description "The command @code{\\url} is a form of verbatim command that
2889allows linebreaks at certain characters or combinations of characters, accepts
2890reconfiguration, and can usually be used in the argument to another command.
2891The command is intended for email addresses, hypertext links,
2892directories/paths, etc., which normally have no spaces, so by default the
2893package ignores spaces in its argument. However, a package option allows
2894spaces, which is useful for operating systems where spaces are a common part
2895of file names.")
2896 ;; The license header states that it is under LPPL version 2 or later, but
2897 ;; the latest version is 1.3c.
2898 (license license:lppl1.3c+)))
2899
c97d1a91
RW
2900(define-public texlive-latex-url
2901 (deprecated-package "texlive-latex-url" texlive-url))
2902
192ad4d1
RW
2903(define-public texlive-tetex
2904 (package
2905 (inherit (simple-texlive-package
2906 "texlive-tetex"
2907 (list "/dvips/tetex/"
2908 "/fonts/enc/dvips/tetex/"
2909 "/fonts/map/dvips/tetex/")
2910 (base32
2911 "1si3as8mwi8837965djlw6jhwwzsp3r1hkflvdxv2avx9vb45hjb")
2912 #:trivial? #t))
2913 (home-page "https://www.ctan.org/pkg/tetex")
2914 (synopsis "Font maps originally from teTeX")
2915 (description "This package provides font maps that were originally part of
2916the now obsolete teTeX distributions but are still used at the core of the TeX
2917Live distribution.")
2918 (license license:public-domain)))
2919
a5b1ef84
RW
2920(define-public texlive-latex-l3kernel
2921 (package
2922 (name "texlive-latex-l3kernel")
2923 (version (number->string %texlive-revision))
2924 (source (origin
2925 (method svn-fetch)
2926 (uri (texlive-ref "latex" "l3kernel"))
f4a39a5b 2927 (file-name (string-append name "-" version "-checkout"))
a5b1ef84
RW
2928 (sha256
2929 (base32
85892948 2930 "0s77z2cbv841l45qrpf0s8qhzfa4wi689lg7zkw88qg18nzvy0ly"))))
a5b1ef84
RW
2931 (build-system texlive-build-system)
2932 (arguments
2933 '(#:tex-directory "latex/l3kernel"))
b8d8806b 2934 (home-page "https://www.ctan.org/pkg/l3kernel")
a5b1ef84
RW
2935 (synopsis "LaTeX3 programmers’ interface")
2936 (description
2937 "The l3kernel bundle provides an implementation of the LaTeX3
2938programmers’ interface, as a set of packages that run under LaTeX 2e. The
2939interface provides the foundation on which the LaTeX3 kernel and other future
2940code are built: it is an API for TeX programmers. The packages are set up so
2941that the LaTeX3 conventions can be used with regular LaTeX 2e packages.")
2942 (license license:lppl1.3c+)))
2943
cc09d48b
RW
2944(define-public texlive-latex-l3packages
2945 (package
2946 (name "texlive-latex-l3packages")
2947 (version (number->string %texlive-revision))
2948 (source (origin
2949 (method svn-fetch)
2950 (uri (texlive-ref "latex" "l3packages"))
b749aa98 2951 (file-name (string-append name "-" version "-checkout"))
cc09d48b
RW
2952 (sha256
2953 (base32
85892948 2954 "1cv4fk9pabh7mkxhfsdmh4k8xpmzg1psgcsvd11c869m7n3a629h"))))
cc09d48b
RW
2955 (build-system texlive-build-system)
2956 (arguments
2957 '(#:tex-directory "latex/l3packages"
3d4908a7
PN
2958 ;; build-targets must be specified manually since they are in
2959 ;; sub-directories.
2960 #:build-targets '("l3keys2e.ins" "xparse.ins" "xfrac.ins" "xfp.ins" "xtemplate.ins")
cc09d48b
RW
2961 #:phases
2962 (modify-phases %standard-phases
2963 ;; All package sources are in sub-directories, so we need to add them
2964 ;; to TEXINPUTS.
2965 (add-after 'unpack 'set-TEXINPUTS
2966 (lambda _
2967 (let ((cwd (getcwd)))
2968 (setenv "TEXINPUTS"
2969 (string-append cwd "/l3keys2e:"
2970 cwd "/xparse:"
2971 cwd "/xfrac:"
2972 cwd "/xfp:"
3d4908a7
PN
2973 cwd "/xtemplate"
2974 ;; The terminating ":" is required to include the
2975 ;; l3kernel input as well.
2976 ":")))
2977 #t)))
2978 ))
2fea7041 2979 (propagated-inputs
cc09d48b 2980 `(("texlive-latex-l3kernel" ,texlive-latex-l3kernel)))
b8d8806b 2981 (home-page "https://www.ctan.org/pkg/l3packages")
cc09d48b
RW
2982 (synopsis "High-level LaTeX3 concepts")
2983 (description
2984 "This bundle holds prototype implementations of concepts for a LaTeX
2985designer interface, to be used with the experimental LaTeX kernel as
2986programming tools and kernel sup­port. Packages provided in this release are:
2987
2988@enumerate
2989@item l3keys2e, which makes the facilities of the kernel module l3keys
2990 available for use by LaTeX 2e packages;
2991@item xfrac, which provides flexible splitlevel fractions;
2992@item xparse, which provides a high-level interface for declaring document
2993 commands; and
2994@item xtemplate, which provides a means of defining generic functions using a
2995 key-value syntax.
2996@end enumerate\n")
2997 (license license:lppl1.3c+)))
2998
58308491
RW
2999(define-public texlive-latex-fontspec
3000 (package
3001 (name "texlive-latex-fontspec")
3002 (version (number->string %texlive-revision))
3003 (source (origin
3004 (method svn-fetch)
3005 (uri (texlive-ref "latex" "fontspec"))
634a4a7f 3006 (file-name (string-append name "-" version "-checkout"))
58308491
RW
3007 (sha256
3008 (base32
85892948 3009 "1223cw029n6zff7pqpwbsq1x8v3w63smczkmnybqxkw5h2za8gbz"))))
58308491
RW
3010 (build-system texlive-build-system)
3011 (arguments
9c45beb4
RW
3012 '(#:tex-directory "latex/fontspec"
3013 #:phases
3014 (modify-phases %standard-phases
3015 (add-after 'install 'install-default-fontspec.cfg
3016 (lambda* (#:key outputs #:allow-other-keys)
3017 (with-output-to-file
3018 (string-append (assoc-ref outputs "out")
3019 "/share/texmf-dist/tex/latex/fontspec/fontspec.cfg")
3020 (lambda _
3021 (display "\
3022%%% FONTSPEC.CFG %%%
3023%
3024% This configuration file sets up TeX Ligatures by default for all fonts loaded
3025% with `\\setmainfont` and `\\setsansfont`.
3026%
3027% In addition, `\\setmonofont` has default features to enforce \"monospace\"
3028% settings with regard to space stretchability and shrinkability.
3029
3030\\defaultfontfeatures
3031 [\\rmfamily,\\sffamily]
3032 {Ligatures=TeX}
3033
3034\\defaultfontfeatures
3035 [\\ttfamily]
3036 {WordSpace={1,0,0},
3037 HyphenChar=None,
3038 PunctuationSpace=WordSpace}
3039")))
3040 #t)))))
b80ecc5a
RW
3041 (propagated-inputs
3042 `(("texlive-latex-l3packages" ,texlive-latex-l3packages)))
b8d8806b 3043 (home-page "https://www.ctan.org/pkg/fontspec")
58308491
RW
3044 (synopsis "Advanced font selection in XeLaTeX and LuaLaTeX")
3045 (description
3046 "Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an
3047automatic and unified interface to feature-rich AAT and OpenType fonts through
3048the NFSS in LaTeX running on XeTeX or LuaTeX engines. The package requires
3049the l3kernel and xparse bundles from the LaTeX 3 development team.")
3050 (license license:lppl1.3+)))
3051
e93f472d
RW
3052;; The SVN directory contains little more than a dtx file that generates three
3053;; of the many lua files that should be installed as part of this package.
3054;; This is why we take the release from GitHub instead.
3055(define-public texlive-luatex-lualibs
3056 (package
3057 (name "texlive-luatex-lualibs")
3058 (version "2.5")
3059 (source (origin
3060 (method url-fetch)
3061 (uri (string-append "https://github.com/lualatex/lualibs/"
3062 "releases/download/v"
3063 version "/lualibs.zip"))
01d79c30 3064 (file-name (string-append name "-" version ".zip"))
e93f472d
RW
3065 (sha256
3066 (base32
3067 "1xx9blvrmx9hyhrl345lpai9m6xxnw997261a1ahn1bm5r2j5fqy"))))
3068 (build-system gnu-build-system)
3069 (arguments
3070 `(#:make-flags
3071 (list (string-append "DESTDIR="
3072 (assoc-ref %outputs "out")
3073 "/share/texmf-dist"))
3074 #:phases
3075 (modify-phases %standard-phases
3076 (delete 'configure))))
3077 (native-inputs
3078 `(("texlive-bin" ,texlive-bin)
3079 ("unzip" ,unzip)
3080 ("zip" ,zip)))
3081 (home-page "https://github.com/lualatex/lualibs")
3082 (synopsis "Lua modules for general programming (in the (La)TeX world)")
3083 (description
3084 "Lualibs is a collection of Lua modules useful for general programming.
3085The bundle is based on Lua modules shipped with ConTeXt, and made available in
3086this bundle for use independent of ConTeXt.")
3087 ;; GPL version 2 only
3088 (license license:gpl2)))
3089
769bb5e5
RW
3090(define-public texlive-luatex-luaotfload
3091 (package
3092 (name "texlive-luatex-luaotfload")
3093 (version "2.8-fix-2")
3094 ;; The release tarball does not contain all source files.
3095 (source (origin
3096 (method git-fetch)
3097 (uri (git-reference
b0e7b699 3098 (url "https://github.com/lualatex/luaotfload")
769bb5e5
RW
3099 (commit (string-append "v" version))))
3100 (file-name (git-file-name name version))
3101 (sha256
3102 (base32
3103 "0l5l7iq3dxcxl65qaghcpjg27yd9iw1sxa8pnd7xlvlm09dhfdnf"))))
3104 (build-system gnu-build-system)
3105 (arguments
3106 `(#:make-flags
3107 (list (string-append "DESTDIR="
3108 (assoc-ref %outputs "out")
3109 "/share/texmf-dist")
3110 "all")
3111 #:parallel-build? #f ; not supported
3112 #:phases
3113 (modify-phases %standard-phases
3114 (replace 'configure
3115 (lambda* (#:key inputs #:allow-other-keys)
3116 (substitute* "doc/Makefile"
3117 (("rst2man") "rst2man.py")
3118 ;; Don't build the PDF. This requires more of LaTeX.
3119 (("\\$\\(DOCPDF\\)") ""))
3120
3121 (substitute* "Makefile"
3122 ;; We don't build the PDF, so don't attempt to install it.
3123 (("cp \\$\\(RESOURCES\\) \\$\\(DOCPDF\\)")
3124 "cp $(RESOURCES)")
3125 (("= \\$\\(DOCPDF\\)") "= ")
3126 ;; Fix name of fontloader file
3127 (("^LOADER.*= \\$\\(BUILDDIR\\)/fontloader-\\$\\(shell date \\+%F\\).lua")
3128 "LOADER = $(BUILDDIR)/fontloader.lua"))
3129
3130 (mkdir "build")
3131
3132 ;; Don't download this file.
3133 (copy-file (assoc-ref inputs "glyphlist")
3134 "build/glyphlist.txt")
3135
3136 ;; Don't use git
3137 (let ((notes
3138 `((committer . "Philipp Gesang <phg@phi-gamma.net>")
3139 (description . ,version)
3140 (loader . "fontloader.lua")
3141 (revision . "ad480924393fffa2896156e1a32c22f5c61120dd")
3142 (timestamp . "2019-01-01 00:00:00 +0000"))))
3143 (substitute* "scripts/mkstatus"
3144 (("local notes.*=.*")
3145 (string-append "local notes = {"
3146 (string-join
3147 (map (lambda (entry)
3148 (format "[\"~a\"]=\"~a\","
3149 (symbol->string (car entry))
3150 (cdr entry)))
3151 notes))
3152 "}"))))
3153 #t)))))
3154 (native-inputs
3155 `(("zip" ,zip)
3156 ("unzip" ,unzip)
3157 ("graphviz" ,graphviz)
3158 ("lualatex" ,(texlive-union (list texlive-luatex-lualibs
3159 texlive-context-base)))
3160 ("python-docutils" ,python-docutils)
3161 ("glyphlist"
3162 ,(origin
3163 (method url-fetch)
3164 (uri (string-append "https://raw.githubusercontent.com/adobe-type-tools/"
3165 "agl-aglfn/b2a04cb906f9257cc06a2fe0ad4b3d663bc02136/"
3166 "glyphlist.txt"))
3167 (sha256
3168 (base32 "1s6svfw23rqzdvflv8frgd4xrwvrmsj8szwzqgcd39dp9rpjafjp"))))))
3169 (propagated-inputs
3170 `(("texlive-luatex-lualibs" ,texlive-luatex-lualibs)))
3171 (home-page "https://github.com/lualatex/luaotfload")
3172 (synopsis "OpenType font loader for LuaTeX")
3173 (description
3174 "Luaotfload is an adaptation of the ConTeXt font loading system for the
3175Plain and LaTeX formats. It allows OpenType fonts to be loaded with font
3176features accessible using an extended font request syntax while providing
3177compatibilitywith XeTeX. By indexing metadata in a database it facilitates
3178loading fonts by their proper names instead of file names.")
3179 ;; GPL version 2 only
3180 (license license:gpl2)))
3181
2573163a
RW
3182(define-public texlive-latex-amsmath
3183 (package
3184 (name "texlive-latex-amsmath")
3185 (version (number->string %texlive-revision))
3186 (source (origin
3187 (method svn-fetch)
3188 (uri (texlive-ref "latex" "amsmath"))
320c771a 3189 (file-name (string-append name "-" version "-checkout"))
2573163a
RW
3190 (sha256
3191 (base32
85892948 3192 "0qgk2332dacsxn1z95qzp35gbs7wrzl1ipjdhnmk1r897msm4sf5"))))
2573163a
RW
3193 (build-system texlive-build-system)
3194 (arguments '(#:tex-directory "latex/amsmath"))
b8d8806b 3195 (home-page "https://www.ctan.org/pkg/amsmath")
2573163a
RW
3196 (synopsis "AMS mathematical facilities for LaTeX")
3197 (description
3198 "This is the principal package in the AMS-LaTeX distribution. It adapts
3199for use in LaTeX most of the mathematical features found in AMS-TeX; it is
3200highly recommended as an adjunct to serious mathematical typesetting in LaTeX.
3201When amsmath is loaded, AMS-LaTeX packages @code{amsbsyamsbsy} (for bold
3202symbols), @code{amsopnamsopn} (for operator names) and
3203@code{amstextamstext} (for text embedded in mathematics) are also loaded.
3204This package is part of the LaTeX required distribution; however, several
3205contributed packages add still further to its appeal; examples are
3206@code{empheqempheq}, which provides functions for decorating and highlighting
3207mathematics, and @code{ntheoremntheorem}, for specifying theorem (and similar)
3208definitions.")
3209 (license license:lppl1.3c+)))
3210
18e366e8
RW
3211(define-public texlive-latex-amscls
3212 (package
3213 (name "texlive-latex-amscls")
3214 (version (number->string %texlive-revision))
3215 (source (origin
3216 (method svn-fetch)
3217 (uri (texlive-ref "latex" "amscls"))
43059ed0 3218 (file-name (string-append name "-" version "-checkout"))
18e366e8
RW
3219 (sha256
3220 (base32
d4d9a1ec 3221 "0c2j9xh4qpi0x1vvcxdjxq6say0zhyr569fryi5cmhp8bclh4kca"))))
18e366e8
RW
3222 (build-system texlive-build-system)
3223 (arguments
3224 `(#:tex-directory "latex/amscls"))
b8d8806b 3225 (home-page "https://www.ctan.org/pkg/amscls")
18e366e8
RW
3226 (synopsis "AMS document classes for LaTeX")
3227 (description
3228 "This bundle contains three AMS classes: @code{amsartamsart} (for writing
3229articles for the AMS), @code{amsbookamsbook} (for books) and
3230@code{amsprocamsproc} (for proceedings), together with some supporting
3231material. The material is made available as part of the AMS-LaTeX
3232distribution.")
3233 (license license:lppl1.3c+)))
3234
f84d5a09
RW
3235(define-public texlive-latex-babel
3236 (package
3237 (name "texlive-latex-babel")
3238 (version (number->string %texlive-revision))
3239 (source (origin
3240 (method svn-fetch)
3241 (uri (texlive-ref "latex" "babel"))
8732493e 3242 (file-name (string-append name "-" version "-checkout"))
f84d5a09
RW
3243 (sha256
3244 (base32
85892948 3245 "1rwqq841i1rxywymzwkw0cw2yhgvxwjx5mgygfasvypwrwll6f6s"))))
f84d5a09
RW
3246 (build-system texlive-build-system)
3247 (arguments
dcc8af4a 3248 '(#:tex-directory "generic/babel"
f84d5a09
RW
3249 #:phases
3250 (modify-phases %standard-phases
3251 ;; This package tries to produce babel.aux twice but refuses to
3252 ;; overwrite the first one.
3253 (add-before 'build 'fix-ins
3254 (lambda _
3255 (substitute* "babel.ins"
3256 (("askonceonly") "askforoverwritefalse"))
3257 #t)))))
b8d8806b 3258 (home-page "https://www.ctan.org/pkg/babel")
f84d5a09
RW
3259 (synopsis "Multilingual support for Plain TeX or LaTeX")
3260 (description
3261 "The package manages culturally-determined typographical (and other)
3262rules, and hyphenation patterns for a wide range of languages. A document may
3263select a single language to be supported, or it may select several, in which
3264case the document may switch from one language to another in a variety of
3265ways. Babel uses contributed configuration files that provide the detail of
3266what has to be done for each language. Users of XeTeX are advised to use the
3267polyglossia package rather than Babel.")
3268 (license license:lppl1.3+)))
3269
876a1980
RW
3270(define-public texlive-generic-babel-english
3271 (package
3272 (name "texlive-generic-babel-english")
3273 (version (number->string %texlive-revision))
3274 (source (origin
3275 (method svn-fetch)
3276 (uri (texlive-ref "generic" "babel-english"))
3277 (file-name (string-append name "-" version "-checkout"))
3278 (sha256
3279 (base32
3280 "1s404wbx91z5w65hm024kyl4h56zsa096irx18vsx8jvlmwsr5wc"))))
3281 (build-system texlive-build-system)
3282 (arguments '(#:tex-directory "generic/babel-english"))
b8d8806b 3283 (home-page "https://www.ctan.org/pkg/babel-english")
876a1980
RW
3284 (synopsis "Babel support for English")
3285 (description
3286 "This package provides the language definition file for support of
3287English in @code{babel}. Care is taken to select British hyphenation patterns
3288for British English and Australian text, and default (\"american\") patterns
3289for Canadian and USA text.")
3290 (license license:lppl1.3+)))
3291
6309d215
RW
3292(define-public texlive-generic-babel-german
3293 (package
3294 (name "texlive-generic-babel-german")
3295 (version (number->string %texlive-revision))
3296 (source (origin
3297 (method svn-fetch)
3298 (uri (texlive-ref "generic" "babel-german"))
3299 (file-name (string-append name "-" version "-checkout"))
3300 (sha256
3301 (base32
85892948 3302 "129f9w41cb6yyrr6kpv3zz9ml6334hyq1wcz7j9jn47p0hlxqfk8"))))
6309d215
RW
3303 (build-system texlive-build-system)
3304 (arguments '(#:tex-directory "generic/babel-german"))
3305 (home-page "https://www.ctan.org/pkg/babel-german")
3306 (synopsis "Babel support for German")
3307 (description
3308 "This package provides the language definition file for support of German
3309in @code{babel}. It provides all the necessary macros, definitions and
3310settings to typeset German documents. The bundle includes support for the
3311traditional and reformed German orthography as well as for the Austrian and
3312Swiss varieties of German.")
3313 (license license:lppl1.3+)))
3314
93286d38
RW
3315(define-public texlive-latex-cyrillic
3316 (package
3317 (name "texlive-latex-cyrillic")
3318 (version (number->string %texlive-revision))
3319 (source (origin
3320 (method svn-fetch)
3321 (uri (texlive-ref "latex" "cyrillic"))
51bffe79 3322 (file-name (string-append name "-" version "-checkout"))
93286d38
RW
3323 (sha256
3324 (base32
d4d9a1ec 3325 "083xbwg7hrnlv47fkwvz8yjb830bhxx7y0mq7z7nz2f96y2ldr6b"))))
93286d38
RW
3326 (build-system texlive-build-system)
3327 (arguments
3328 '(#:tex-directory "latex/cyrillic"))
b8d8806b 3329 (home-page "https://www.ctan.org/pkg/latex-cyrillic")
93286d38
RW
3330 (synopsis "Support for Cyrillic fonts in LaTeX")
3331 (description
3332 "This bundle of macros files provides macro support (including font
3333encoding macros) for the use of Cyrillic characters in fonts encoded under the
3334T2* and X2 encodings. These encodings cover (between them) pretty much every
3335language that is written in a Cyrillic alphabet.")
3336 (license license:lppl1.3c+)))
3337
83fe6231 3338(define-public texlive-latex-psnfss
3fef44ed
EF
3339 (package
3340 (name "texlive-latex-psnfss")
3341 (version (number->string %texlive-revision))
3342 (source (origin
3343 (method svn-fetch)
3344 (uri (texlive-ref "latex" "psnfss"))
3345 (file-name (string-append name "-" version "-checkout"))
3346 (sha256
3347 (base32
3348 "1920dcq8613yzprasbg80fh4fcjcidvvl54wkx438nimyxcri7qz"))))
3349 (build-system texlive-build-system)
3350 (arguments '(#:tex-directory "latex/psnfss"))
3351 (home-page "https://www.ctan.org/pkg/psnfss")
3352 (synopsis "Font support for common PostScript fonts")
3353 (description
3354 "The PSNFSS collection includes a set of files that provide a complete
3355working setup of the LaTeX font selection scheme (NFSS2) for use with common
3356PostScript fonts. It covers the so-called \"Base\" fonts (which are built
3357into any Level 2 PostScript printing device and the Ghostscript interpreter)
3358and a number of free fonts. It provides font definition files, macros and
3359font metrics. The bundle as a whole is part of the LaTeX required set of
3360packages.")
3361 (license license:lppl1.2+)))
83fe6231 3362
bfcb9d4d
RW
3363;; For user profiles
3364(define-public texlive-base
3365 (let ((default-packages
3366 (list texlive-bin
3367 texlive-dvips
3368 texlive-fontname
a6405e03 3369 texlive-cm
bfcb9d4d
RW
3370 texlive-fonts-latex
3371 texlive-metafont-base
3372 texlive-latex-base
3373 ;; LaTeX packages from the "required" set.
3374 texlive-latex-amsmath
3375 texlive-latex-amscls
3376 texlive-latex-babel
3377 texlive-generic-babel-english
3378 texlive-latex-cyrillic
3379 texlive-latex-graphics
3380 texlive-latex-psnfss
fdb8841f
RW
3381 texlive-latex-tools
3382 texlive-tetex)))
bfcb9d4d
RW
3383 (package
3384 (name "texlive-base")
3385 (version (number->string %texlive-revision))
3386 (source #f)
3387 (build-system trivial-build-system)
3388 (arguments
3389 '(#:builder
3390 (begin (mkdir (assoc-ref %outputs "out")))))
3391 (propagated-inputs
3392 (map (lambda (package)
3393 (list (package-name package) package))
3394 default-packages))
3395 (home-page (package-home-page texlive-bin))
3396 (synopsis "TeX Live base packages")
3397 (description "This is a very limited subset of the TeX Live distribution.
3398It includes little more than the required set of LaTeX packages.")
3399 (license (fold (lambda (package result)
3400 (match (package-license package)
3401 ((lst ...)
3402 (append lst result))
3403 ((? license:license? license)
3404 (cons license result))))
3405 '()
3406 default-packages)))))
3407
d7da2372 3408;; For use in package definitions only
cb7bc20a
RW
3409(define-public texlive-union
3410 (lambda* (#:optional (packages '()))
3411 "Return 'texlive-union' package which is a union of PACKAGES and the
3412standard LaTeX packages."
d7da2372
RW
3413 (let ((default-packages (match (package-propagated-inputs texlive-base)
3414 (((labels packages) ...) packages))))
3415 (package (inherit texlive-base)
cb7bc20a 3416 (name "texlive-union")
cb7bc20a
RW
3417 (build-system trivial-build-system)
3418 (arguments
3419 '(#:modules ((guix build union)
3420 (guix build utils)
3421 (guix build texlive-build-system)
3422 (guix build gnu-build-system)
3423 (guix build gremlin)
3424 (guix elf))
3425 #:builder
3426 (begin
3427 (use-modules (ice-9 match)
1a64a7b3 3428 (ice-9 popen)
cb7bc20a
RW
3429 (srfi srfi-26)
3430 (guix build union)
3431 (guix build utils)
3432 (guix build texlive-build-system))
3433 (let* ((out (assoc-ref %outputs "out"))
3434 (texmf.cnf (string-append out "/share/texmf-dist/web2c/texmf.cnf")))
1a64a7b3
RW
3435 ;; Build a modifiable union of all inputs (but exclude bash and
3436 ;; the updmap.cfg file)
cb7bc20a
RW
3437 (match (filter (match-lambda
3438 ((name . _)
813ed0bd
RW
3439 (not (member name '("bash"
3440 "coreutils"
3441 "sed"
3442 "updmap.cfg")))))
cb7bc20a
RW
3443 %build-inputs)
3444 (((names . directories) ...)
3445 (union-build (assoc-ref %outputs "out")
3446 directories
c58d1b5f
RW
3447 #:create-all-directories? #t
3448 #:log-port (%make-void-port "w"))))
cb7bc20a
RW
3449
3450 ;; The configuration file "texmf.cnf" is provided by the
3451 ;; "texlive-bin" package. We take it and override only the
3452 ;; setting for TEXMFROOT and TEXMF. This file won't be consulted
3453 ;; by default, though, so we still need to set TEXMFCNF.
3454 (substitute* texmf.cnf
3455 (("^TEXMFROOT = .*")
3456 (string-append "TEXMFROOT = " out "/share\n"))
3457 (("^TEXMF = .*")
3458 "TEXMF = $TEXMFROOT/share/texmf-dist\n"))
1a64a7b3
RW
3459 (setenv "PATH" (string-append
3460 (assoc-ref %build-inputs "bash") "/bin:"
3461 (assoc-ref %build-inputs "coreutils") "/bin:"
813ed0bd 3462 (assoc-ref %build-inputs "sed") "/bin:"
1a64a7b3 3463 (string-append out "/bin")))
cb7bc20a
RW
3464 (for-each
3465 (cut wrap-program <>
476f7fce
RW
3466 `("TEXMFCNF" ":" suffix (,(dirname texmf.cnf)))
3467 `("TEXMF" ":" suffix (,(string-append out "/share/texmf-dist"))))
cb7bc20a 3468 (find-files (string-append out "/bin") ".*"))
1a64a7b3
RW
3469
3470 ;; Remove invalid maps from config file.
813ed0bd
RW
3471 (let ((web2c (string-append out "/share/texmf-config/web2c/"))
3472 (maproot (string-append out "/share/texmf-dist/fonts/map/")))
3473 (mkdir-p web2c)
3474 (copy-file
3475 (assoc-ref %build-inputs "updmap.cfg")
3476 (string-append web2c "updmap.cfg"))
3477 (make-file-writable (string-append web2c "updmap.cfg"))
3478
3479 (let* ((port (open-pipe* OPEN_WRITE "updmap-sys"
3480 "--syncwithtrees"
3481 "--nohash"
3482 (string-append "--cnffile=" web2c "updmap.cfg"))))
3483 (display "Y\n" port)
3484 (when (not (zero? (status:exit-val (close-pipe port))))
3485 (error "failed to filter updmap.cfg")))
3486 ;; Generate maps.
3487 (invoke "updmap-sys"
3488 (string-append "--cnffile=" web2c "updmap.cfg")
3489 (string-append "--dvipdfmxoutputdir="
3490 maproot "dvipdfmx/updmap/")
3491 (string-append "--dvipsoutputdir="
3492 maproot "dvips/updmap/")
3493 (string-append "--pdftexoutputdir="
3494 maproot "pdftex/updmap/"))
3495 ;; Having this file breaks all file lookups later.
3496 (delete-file (string-append out "/share/texmf-dist/ls-R")))
cb7bc20a
RW
3497 #t))))
3498 (inputs
3499 `(("bash" ,bash)
3500 ,@(map (lambda (package)
3501 (list (package-name package) package))
3502 (append default-packages packages))))
1a64a7b3
RW
3503 (native-inputs
3504 `(("coreutils" ,coreutils)
3505 ("sed" ,sed)
3506 ("updmap.cfg"
3507 ,(origin
3508 (method url-fetch)
3509 (uri (string-append "https://tug.org/svn/texlive/tags/"
3510 %texlive-tag "/Master/texmf-dist/web2c/updmap.cfg"
3511 "?revision=" (number->string %texlive-revision)))
3512 (file-name (string-append "updmap.cfg-"
3513 (number->string %texlive-revision)))
3514 (sha256
3515 (base32
85892948 3516 "0faqknqxs80qp9ywk0by5k85s0yalg97c4lja4q56lsyblrr4j7i"))))))
cb7bc20a
RW
3517 (home-page (package-home-page texlive-bin))
3518 (synopsis "Union of TeX Live packages")
3519 (description "This package provides a subset of the TeX Live
3520distribution.")
3521 (license (fold (lambda (package result)
3522 (match (package-license package)
3523 ((lst ...)
3524 (append lst result))
3525 ((? license:license? license)
3526 (cons license result))))
3527 '()
3528 (append default-packages packages)))))))
3529
d7da2372 3530;; For use in package definitions only
9d4f8dc2
RW
3531(define-public texlive-tiny
3532 (package
3533 (inherit (texlive-union))
3534 (name "texlive-tiny")
3535 (description "This is a very limited subset of the TeX Live distribution.
3536It includes little more than the required set of LaTeX packages.")))
3537
60b5e228
RW
3538(define-public texlive-latex-amsrefs
3539 (package
3540 (name "texlive-latex-amsrefs")
3541 (version (number->string %texlive-revision))
3542 (source (origin
3543 (method svn-fetch)
3544 (uri (texlive-ref "latex" "amsrefs"))
3545 (file-name (string-append name "-" version "-checkout"))
3546 (sha256
3547 (base32
3548 "15i4k479dwrpr0kspmm70g1yn4p3dkh0whyzmr93hph9bggnh1i1"))))
3549 (build-system texlive-build-system)
3550 (arguments '(#:tex-directory "latex/amsrefs"))
b8d8806b 3551 (home-page "https://www.ctan.org/pkg/amsrefs")
60b5e228
RW
3552 (synopsis "LaTeX-based replacement for BibTeX")
3553 (description
3554 "Amsrefs is a LaTeX package for bibliographies that provides an archival
3555data format similar to the format of BibTeX database files, but adapted to
3556make direct processing by LaTeX easier. The package can be used either in
3557conjunction with BibTeX or as a replacement for BibTeX.")
3558 (license license:lppl1.3+)))
3559
3236599f
RW
3560(define-public texlive-latex-bigfoot
3561 (package
3562 (name "texlive-latex-bigfoot")
3563 (version (number->string %texlive-revision))
3564 (source (origin
3565 (method svn-fetch)
3566 (uri (texlive-ref "latex" "bigfoot"))
3567 (file-name (string-append name "-" version "-checkout"))
3568 (sha256
3569 (base32
3570 "092g8alnsdwlgl1isdnqrr32l161994295kadr1n05d81xgj5wnv"))))
3571 (build-system texlive-build-system)
3572 (arguments
3573 '(#:tex-directory "latex/bigfoot"
3574 #:phases
3575 (modify-phases %standard-phases
3576 (add-after 'unpack 'remove-generated-file
3577 (lambda _
3578 (for-each delete-file (find-files "." "\\.drv$"))
3579 #t)))))
b8d8806b 3580 (home-page "https://www.ctan.org/pkg/bigfoot")
3236599f
RW
3581 (synopsis "Footnotes for critical editions")
3582 (description
3583 "This package aims to provide a one-stop solution to requirements for
3584footnotes. It offers: Multiple footnote apparatus superior to that of
3585@code{manyfoot}. Footnotes can be formatted in separate paragraphs, or be run
3586into a single paragraph (this choice may be selected per footnote series);
3587Things you might have expected (such as @code{\\verb}-like material in
3588footnotes, and color selections over page breaks) now work. Note that the
3589majority of the bigfoot package's interface is identical to that of
3590@code{manyfoot}; users should seek information from that package's
3591documentation. The bigfoot bundle also provides the @code{perpage} and
3592@code{suffix} packages.")
3593 (license license:gpl2+)))
3594
8e732b49
RW
3595(define-public texlive-latex-blindtext
3596 (package
3597 (name "texlive-latex-blindtext")
3598 (version (number->string %texlive-revision))
3599 (source (origin
3600 (method svn-fetch)
3601 (uri (texlive-ref "latex" "blindtext"))
3602 (file-name (string-append name "-" version "-checkout"))
3603 (sha256
3604 (base32
3605 "1jrja9b1pzdh9zgv1jh807w4xijqja58n2mqny6dkwicv8qfgbfg"))))
3606 (build-system texlive-build-system)
3607 (arguments '(#:tex-directory "latex/blindtext"))
b8d8806b 3608 (home-page "https://www.ctan.org/pkg/blindtext")
8e732b49
RW
3609 (synopsis "Producing 'blind' text for testing")
3610 (description
3611 "The package provides the commands @code{\\blindtext} and
3612@code{\\Blindtext} for creating \"blind\" text useful in testing new classes
3613and packages, and @code{\\blinddocument}, @code{\\Blinddocument} for creating
3614an entire random document with sections, lists, mathematics, etc. The package
3615supports three languages, @code{english}, @code{(n)german} and @code{latin};
3616the @code{latin} option provides a short \"lorem ipsum\" (for a fuller \"lorem
3617ipsum\" text, see the @code{lipsum} package).")
3618 (license license:lppl)))
3619
7cda03bd
RW
3620(define-public texlive-latex-dinbrief
3621 (package
3622 (name "texlive-latex-dinbrief")
3623 (version (number->string %texlive-revision))
3624 (source (origin
3625 (method svn-fetch)
3626 (uri (texlive-ref "latex" "dinbrief"))
3627 (file-name (string-append name "-" version "-checkout"))
3628 (sha256
3629 (base32
3630 "0lb0kiy8fxzl6cnhcw1sggy6jrjvcd6kj1kkw3k9lkimm388yjz6"))))
3631 (build-system texlive-build-system)
3632 (arguments
3633 '(#:tex-directory "latex/dinbrief"
3634 #:phases
3635 (modify-phases %standard-phases
3636 (add-after 'unpack 'remove-generated-file
3637 (lambda _
3638 (delete-file "dinbrief.drv")
d4d9a1ec
RW
3639 #t))
3640 (add-after 'unpack 'fix-encoding-error
3641 (lambda _
3642 (with-fluids ((%default-port-encoding "ISO-8859-1"))
3643 (substitute* "dinbrief.dtx"
3644 (("zur Verf.+ung. In der Pr\"aambel")
3645 "zur Verf\"ung. In der Pr\"aambel")))
7cda03bd 3646 #t)))))
b8d8806b 3647 (home-page "https://www.ctan.org/pkg/dinbrief")
7cda03bd
RW
3648 (synopsis "German letter DIN style")
3649 (description
3650 "This package implements a document layout for writing letters according
3651to the rules of DIN (Deutsches Institut für Normung, German standardisation
3652institute). A style file for LaTeX 2.09 (with limited support of the
3653features) is part of the package. Since the letter layout is based on a
3654German standard, the user guide is written in German, but most macros have
3655English names from which the user can recognize what they are used for. In
3656addition there are example files showing how letters may be created with the
3657package.")
3658 (license license:lppl)))
3659
de224adb
RW
3660(define-public texlive-latex-draftwatermark
3661 (package
3662 (name "texlive-latex-draftwatermark")
3663 (version (number->string %texlive-revision))
3664 (source (origin
3665 (method svn-fetch)
3666 (uri (texlive-ref "latex" "draftwatermark"))
3667 (file-name (string-append name "-" version "-checkout"))
3668 (sha256
3669 (base32
3670 "1zyl2pcz2x529gzj5m93a1s4ipymdabf7qdjl3l1673pizd4hfyv"))))
3671 (build-system texlive-build-system)
3672 (arguments '(#:tex-directory "latex/draftwatermark"))
b8d8806b 3673 (home-page "https://www.ctan.org/pkg/draftwatermark")
de224adb
RW
3674 (synopsis "Put a grey textual watermark on document pages")
3675 (description
3676 "This package provides a means to add a textual, light grey watermark on
3677every page or on the first page of a document. Typical usage may consist in
3678writing words such as DRAFT or CONFIDENTIAL across document pages. The
3679package performs a similar function to that of @code{draftcopy}, but its
3680implementation is output device independent, and made very simple by relying
3681on everypage.")
3682 (license license:lppl1.3+)))
3683
74e9c9a4
RW
3684(define-public texlive-latex-environ
3685 (package
3686 (name "texlive-latex-environ")
3687 (version (number->string %texlive-revision))
3688 (source (origin
3689 (method svn-fetch)
3690 (uri (texlive-ref "latex" "environ"))
3691 (file-name (string-append name "-" version "-checkout"))
3692 (sha256
3693 (base32
3694 "06h28b26dyjkj9shksphgqfv4130jfkwhbw737hxn7d3yvdfffyd"))))
3695 (build-system texlive-build-system)
3696 (arguments '(#:tex-directory "latex/environ"))
b8d8806b 3697 (home-page "https://www.ctan.org/pkg/environ")
74e9c9a4
RW
3698 (synopsis "New interface for environments in LaTeX")
3699 (description
09acbb02
RW
3700 "This package provides the @code{\\collect@@body} command (as in
3701@code{amsmath}), as well as a @code{\\long} version @code{\\Collect@@Body},
3702for collecting the body text of an environment. These commands are used to
3703define a new author interface to creating new environments.")
74e9c9a4
RW
3704 (license license:lppl)))
3705
adfa7a2a
RW
3706(define-public texlive-latex-eqparbox
3707 (package
3708 (name "texlive-latex-eqparbox")
3709 (version (number->string %texlive-revision))
3710 (source (origin
3711 (method svn-fetch)
3712 (uri (texlive-ref "latex" "eqparbox"))
3713 (file-name (string-append name "-" version "-checkout"))
3714 (sha256
3715 (base32
d4d9a1ec 3716 "1ib5xdwcj5wk23wgk41m2hdcjr1dzrs4l3wwnpink9mlapz12wjs"))))
adfa7a2a
RW
3717 (build-system texlive-build-system)
3718 (arguments '(#:tex-directory "latex/eqparbox"))
b8d8806b 3719 (home-page "https://www.ctan.org/pkg/eqparbox")
adfa7a2a
RW
3720 (synopsis "Create equal-widthed parboxes")
3721 (description
3722 "LaTeX users sometimes need to ensure that two or more blocks of text
3723occupy the same amount of horizontal space on the page. To that end, the
3724@code{eqparbox} package defines a new command, @code{\\eqparbox}, which works
3725just like @code{\\parbox}, except that instead of specifying a width, one
3726specifies a tag. All @code{eqparbox}es with the same tag---regardless of
3727where they are in the document---will stretch to fit the widest
3728@code{eqparbox} with that tag. This simple, equal-width mechanism can be used
3729for a variety of alignment purposes, as is evidenced by the examples in
3730@code{eqparbox}'s documentation. Various derivatives of @code{\\eqparbox} are
3731also provided.")
3732 (license license:lppl1.3+)))
3733
32e623d0
RW
3734(define-public texlive-latex-expdlist
3735 (package
3736 (name "texlive-latex-expdlist")
3737 (version (number->string %texlive-revision))
3738 (source (origin
3739 (method svn-fetch)
3740 (uri (texlive-ref "latex" "expdlist"))
3741 (file-name (string-append name "-" version "-checkout"))
3742 (sha256
3743 (base32
3744 "1x7byk6x10njir3y9rm56glhdzrxwqag7gsnw2sqn1czlq525w7r"))))
3745 (build-system texlive-build-system)
3746 (arguments
3747 '(#:tex-directory "latex/expdlist"
3748 #:phases
3749 (modify-phases %standard-phases
3750 (add-after 'unpack 'remove-generated-file
3751 (lambda _
3752 (for-each delete-file
3753 (find-files "." "\\.drv$"))
3754 #t)))))
b8d8806b 3755 (home-page "https://www.ctan.org/pkg/expdlist")
32e623d0
RW
3756 (synopsis "Expanded description environments")
3757 (description
3758 "The package provides additional features for the LaTeX
3759@code{description} environment, including adjustable left margin. The package
3760also allows the user to \"break\" a list (for example, to interpose a comment)
3761without affecting the structure of the list (this works for @code{itemize} and
3762@code{enumerate} lists, and numbered lists remain in sequence).")
3763 (license license:lppl)))
3764
1333198d 3765(define-public texlive-filemod
893e3fc1 3766 (package
1333198d
RW
3767 (inherit (simple-texlive-package
3768 "texlive-filemod"
3769 (list "/doc/latex/filemod/"
3770 "/tex/latex/filemod/"
3771 "/tex/generic/filemod/")
3772 (base32
3773 "1snsj7kblkj1ig3x3845lsypz7ab04lf0dcpdh946xakgjnz4fb5")
3774 #:trivial? #t))
b8d8806b 3775 (home-page "https://www.ctan.org/pkg/filemod")
893e3fc1
RW
3776 (synopsis "Provide file modification times, and compare them")
3777 (description
3778 "This package provides macros to read and compare the modification dates
3779of files. The files may be @code{.tex} files, images or other files (as long
3780as they can be found by LaTeX). It uses the @code{\\pdffilemoddate} primitive
3781of pdfLaTeX to find the file modification date as PDF date string, parses the
3782string and returns the value to the user. The package will also work for DVI
3783output with recent versions of the LaTeX compiler which uses pdfLaTeX in DVI
3784mode. The functionality is provided by purely expandable macros or by faster
3785but non-expandable ones.")
3786 (license license:lppl1.3+)))
3787
1333198d
RW
3788(define-public texlive-latex-filemod
3789 (deprecated-package "texlive-latex-filemod" texlive-filemod))
3790
8c23f238
RW
3791(define-public texlive-latex-ifplatform
3792 (package
3793 (name "texlive-latex-ifplatform")
3794 (version (number->string %texlive-revision))
3795 (source (origin
3796 (method svn-fetch)
3797 (uri (texlive-ref "latex" "ifplatform"))
3798 (file-name (string-append name "-" version "-checkout"))
3799 (sha256
3800 (base32
d4d9a1ec 3801 "157pplavvm2z97b3jl4x41w11k6q9wgy074mfg0dwmsx5lm328jy"))))
8c23f238
RW
3802 (build-system texlive-build-system)
3803 (arguments '(#:tex-directory "latex/ifplatform"))
b8d8806b 3804 (home-page "https://www.ctan.org/pkg/ifplatform")
8c23f238
RW
3805 (synopsis "Conditionals to test which platform is being used")
3806 (description
3807 "This package uses the (La)TeX extension @code{-shell-escape} to
3808establish whether the document is being processed on a Windows or on a
3809Unix-like system, or on Cygwin (Unix environment over a Windows system).
3810Booleans provided are: @code{\\ifwindows}, @code{\\iflinux}, @code{\\ifmacosx}
3811and @code{\\ifcygwin}. The package also preserves the output of @code{uname}
3812on a Unix-like system, which may be used to distinguish between various
3813classes of systems.")
3814 (license license:lppl)))
3815
9b416042
RW
3816(define-public texlive-latex-natbib
3817 (package
3818 (name "texlive-latex-natbib")
3819 (version (number->string %texlive-revision))
3820 (source (origin
3821 (method svn-fetch)
3822 (uri (texlive-ref "latex" "natbib"))
23ae6e65 3823 (file-name (string-append name "-" version "-checkout"))
9b416042
RW
3824 (sha256
3825 (base32
3826 "0aqliq0nwblxyrzhwhv77pnmk7qh2y3prgq7z7qhwcbgz5kisld7"))))
3827 (build-system texlive-build-system)
3828 (arguments '(#:tex-directory "latex/natbib"))
b8d8806b 3829 (home-page "https://www.ctan.org/pkg/natbib")
9b416042
RW
3830 (synopsis "Flexible bibliography support")
3831 (description
3832 "This bundle provides a package that implements both author-year and
3833numbered references, as well as much detailed of support for other
3834bibliography use. Also provided are versions of the standard BibTeX styles
3835that are compatible with @code{natbib}: @code{plainnat}, @code{unsrtnat},
3836@code{abbrnat}. The bibliography styles produced by @code{custom-bib} are
3837designed from the start to be compatible with @code{natbib}.")
3838 (license license:lppl)))
3839
d770d07f
RW
3840(define-public texlive-latex-psfrag
3841 (package
3842 (name "texlive-latex-psfrag")
3843 (version (number->string %texlive-revision))
3844 (source (origin
3845 (method svn-fetch)
3846 (uri (texlive-ref "latex" "psfrag"))
3847 (file-name (string-append name "-" version "-checkout"))
3848 (sha256
3849 (base32
3850 "1dxbl5il7wbbsp0v45vk884xi1192wxw03849pb1g5q4x808n352"))))
3851 (build-system texlive-build-system)
3852 (arguments '(#:tex-directory "latex/psfrag"))
b8d8806b 3853 (home-page "https://www.ctan.org/pkg/psfrag")
d770d07f
RW
3854 (synopsis "Replace strings in encapsulated PostScript figures")
3855 (description
3856 "This package allows LaTeX constructions (equations, picture
3857environments, etc.) to be precisely superimposed over Encapsulated PostScript
3858figures, using your own favorite drawing tool to create an EPS figure and
3859placing simple text \"tags\" where each replacement is to be placed, with
3860PSfrag automatically removing these tags from the figure and replacing them
3861with a user specified LaTeX construction, properly aligned, scaled, and/or
3862rotated.")
3863 (license (license:fsf-free "file://psfrag.dtx"))))
3864
6090b6c4 3865(define-public texlive-pstool
5a1ee7d8 3866 (package
6090b6c4
RW
3867 (inherit (simple-texlive-package
3868 "texlive-pstool"
3869 (list "/doc/latex/pstool/"
3870 "/tex/latex/pstool/")
3871 (base32
3872 "12clzcw2cl7g2chr2phgmmiwxw4859cln1gbx1wgp8bl9iw590nc")
3873 #:trivial? #t))
5a1ee7d8 3874 (propagated-inputs
d4d9a1ec 3875 `(("texlive-latex-bigfoot" ,texlive-latex-bigfoot) ; for suffix
5a1ee7d8
RW
3876 ("texlive-latex-filemod" ,texlive-latex-filemod)
3877 ("texlive-latex-graphics" ,texlive-latex-graphics)
3878 ("texlive-latex-ifplatform" ,texlive-latex-ifplatform)
d4d9a1ec 3879 ("texlive-latex-l3kernel" ,texlive-latex-l3kernel) ; for expl3
5a1ee7d8
RW
3880 ("texlive-latex-oberdiek" ,texlive-latex-oberdiek)
3881 ("texlive-latex-psfrag" ,texlive-latex-psfrag)
d4d9a1ec
RW
3882 ("texlive-latex-tools" ,texlive-latex-tools) ; for shellesc
3883 ("texlive-latex-trimspaces" ,texlive-latex-trimspaces)
3884 ("texlive-latex-xkeyval" ,texlive-latex-xkeyval)))
b8d8806b 3885 (home-page "https://www.ctan.org/pkg/pstool")
d4d9a1ec 3886 (synopsis "Process PostScript graphics within pdfLaTeX documents")
5a1ee7d8
RW
3887 (description
3888 "This is a package for processing PostScript graphics with @code{psfrag}
3889labels within pdfLaTeX documents. Every graphic is compiled individually,
3890drastically speeding up compilation time when only a single figure needs
3891re-processing.")
3892 (license license:lppl)))
3893
6090b6c4
RW
3894(define-public texlive-latex-pstool
3895 (deprecated-package "texlive-latex-pstool" texlive-pstool))
3896
a72058b9 3897(define-public texlive-seminar
171160d5 3898 (package
a72058b9
RW
3899 (inherit (simple-texlive-package
3900 "texlive-seminar"
3901 (list "/doc/latex/seminar/"
3902 "/tex/latex/seminar/")
3903 (base32
3904 "1clgw5xy867khzfn8d210rc5hsw5s7r0pznhk84niybvw4zc7r3f")
3905 #:trivial? #t))
b8d8806b 3906 (home-page "https://www.ctan.org/pkg/seminar")
171160d5
RW
3907 (synopsis "Make overhead slides")
3908 ;; TODO: This package may need fancybox and xcomment at runtime.
3909 (description
3910 "This package provides a class that produces overhead
3911slides (transparencies), with many facilities. Seminar is not nowadays
3912reckoned a good basis for a presentation — users are advised to use more
3913recent classes such as powerdot or beamer, both of which are tuned to
391421st-century presentation styles.")
3915 (license license:lppl1.2+)))
3916
a72058b9
RW
3917(define-public texlive-latex-seminar
3918 (deprecated-package "texlive-latex-seminar" texlive-seminar))
3919
f3540dbd
RW
3920(define-public texlive-latex-trimspaces
3921 (package
3922 (name "texlive-latex-trimspaces")
3923 (version (number->string %texlive-revision))
3924 (source (origin
3925 (method svn-fetch)
3926 (uri (texlive-ref "latex" "trimspaces"))
70a71d19 3927 (file-name (string-append name "-" version "-checkout"))
f3540dbd
RW
3928 (sha256
3929 (base32
3930 "0da00lb32am4g63mn96625wg48p3pj3spx79lajrk17d549apwqa"))))
3931 (build-system texlive-build-system)
3932 (arguments
3933 '(#:tex-directory "latex/trimspaces"
3934 #:tex-format "latex"
3935 #:phases
3936 (modify-phases %standard-phases
3937 (add-after 'unpack 'fix-bug
3938 (lambda _
3939 ;; The "ins" file refers to the wrong source file.
3940 (substitute* "trimspaces.ins"
3941 (("pstool.tex") "trimspaces.tex"))
3942 #t)))))
3943 (inputs
3944 `(("texlive-latex-filecontents" ,texlive-latex-filecontents)))
b8d8806b 3945 (home-page "https://www.ctan.org/pkg/trimspaces")
f3540dbd
RW
3946 (synopsis "Trim spaces around an argument or within a macro")
3947 (description
3948 "This very short package allows you to expandably remove spaces around a
3949token list (commands are provided to remove spaces before, spaces after, or
3950both); or to remove surrounding spaces within a macro definition, or to define
3951space-stripped macros.")
3952 (license license:lppl)))
3953
7709d4d8
RW
3954(define-public texlive-latex-capt-of
3955 (package
3956 (name "texlive-latex-capt-of")
3957 (version (number->string %texlive-revision))
3958 (source (origin
3959 (method svn-fetch)
3960 (uri (svn-reference
3961 (url (string-append "svn://www.tug.org/texlive/tags/"
3962 %texlive-tag "/Master/texmf-dist/"
3963 "/tex/latex/capt-of"))
3964 (revision %texlive-revision)))
3965 (file-name (string-append name "-" version "-checkout"))
3966 (sha256
3967 (base32
3968 "1y2s50f6lz0jx2748lj3iy56hrpcczgnbzmvphxv7aqndyyamd4x"))))
3969 (build-system trivial-build-system)
3970 (arguments
3971 `(#:modules ((guix build utils))
3972 #:builder
3973 (begin
3974 (use-modules (guix build utils))
3975 (let ((target (string-append (assoc-ref %outputs "out")
3976 "/share/texmf-dist/tex/latex/capt-of")))
3977 (mkdir-p target)
3978 (copy-recursively (assoc-ref %build-inputs "source") target)
3979 #t))))
b8d8806b 3980 (home-page "https://www.ctan.org/pkg/capt-of")
7709d4d8
RW
3981 (synopsis "Captions on more than floats")
3982 (description
3983 "This package defines a command @code{\\captionof} for putting a caption
3984to something that's not a float.")
3985 (license license:lppl)))
3986
fb01a296 3987(define-public texlive-doi
49b2e86a 3988 (package
fb01a296
RW
3989 (inherit (simple-texlive-package
3990 "texlive-doi"
85892948 3991 (list "/doc/latex/doi/README.md"
fb01a296
RW
3992 "/tex/latex/doi/")
3993 (base32
85892948 3994 "18z9922lqb3hliqn95h883fndqs4lgyi5yqbnq2932ya0imc3j7h")
fb01a296 3995 #:trivial? #t))
49b2e86a
RW
3996 (home-page "https://www.ctan.org/pkg/doi")
3997 (synopsis "Create correct hyperlinks for DOI numbers")
3998 (description
3999 "You can hyperlink DOI numbers to doi.org. However, some publishers have
4000elected to use nasty characters in their DOI numbering scheme (@code{<},
4001@code{>}, @code{_} and @code{;} have all been spotted). This will either
4002upset LaTeX, or your PDF reader. This package contains a single user-level
4003command @code{\\doi{}}, which takes a DOI number, and creates a correct
4004hyperlink to the target of the DOI.")
4005 ;; Any version of the LPPL.
4006 (license license:lppl1.3+)))
4007
fb01a296
RW
4008(define-public texlive-latex-doi
4009 (deprecated-package "texlive-latex-doi" texlive-doi))
4010
346354a1 4011(define-public texlive-etoolbox
a8ac7c0b 4012 (package
346354a1
RW
4013 (inherit (simple-texlive-package
4014 "texlive-etoolbox"
4015 (list "/doc/latex/etoolbox/"
4016 "/tex/latex/etoolbox/")
4017 (base32
85892948 4018 "1cc1vw1ach55g4ff4x30by8k1mg01w199ccxvn72f5khlnnxial0")
346354a1 4019 #:trivial? #t))
b8d8806b 4020 (home-page "https://www.ctan.org/pkg/etoolbox")
a8ac7c0b
RW
4021 (synopsis "e-TeX tools for LaTeX")
4022 (description
4023 "This package is a toolbox of programming facilities geared primarily
4024towards LaTeX class and package authors. It provides LaTeX frontends to some
4025of the new primitives provided by e-TeX as well as some generic tools which
4026are not strictly related to e-TeX but match the profile of this package. The
4027package provides functions that seem to offer alternative ways of implementing
4028some LaTeX kernel commands; nevertheless, the package will not modify any part
4029of the LaTeX kernel.")
4030 (license license:lppl1.3+)))
4031
346354a1
RW
4032(define-public texlive-latex-etoolbox
4033 (deprecated-package "texlive-latex-etoolbox" texlive-etoolbox))
4034
17dce7e5
RW
4035(define-public texlive-latex-fncychap
4036 (package
4037 (name "texlive-latex-fncychap")
4038 (version (number->string %texlive-revision))
4039 (source (origin
4040 (method svn-fetch)
4041 (uri (svn-reference
4042 (url (string-append "svn://www.tug.org/texlive/tags/"
4043 %texlive-tag "/Master/texmf-dist/"
4044 "/tex/latex/fncychap"))
4045 (revision %texlive-revision)))
4046 (file-name (string-append name "-" version "-checkout"))
4047 (sha256
4048 (base32
4049 "0fdk84dbicfjfprkz6vk15x36mvlhaw9isjmgkc56jp2khwjswwq"))))
4050 (build-system trivial-build-system)
4051 (arguments
4052 `(#:modules ((guix build utils))
4053 #:builder
4054 (begin
4055 (use-modules (guix build utils))
4056 (let ((target (string-append (assoc-ref %outputs "out")
4057 "/share/texmf-dist/tex/latex/fncychap")))
4058 (mkdir-p target)
4059 (copy-recursively (assoc-ref %build-inputs "source") target)
4060 #t))))
b8d8806b 4061 (home-page "https://www.ctan.org/pkg/fncychap")
17dce7e5
RW
4062 (synopsis "Seven predefined chapter heading styles")
4063 (description
4064 "This package provides seven predefined chapter heading styles. Each
4065style can be modified using a set of simple commands. Optionally one can
4066modify the formatting routines in order to create additional chapter
4067headings.")
4068 (license license:lppl1.3+)))
4069
ef1e2ef0
RW
4070(define-public texlive-latex-framed
4071 (package
4072 (name "texlive-latex-framed")
4073 (version (number->string %texlive-revision))
4074 (source (origin
4075 (method svn-fetch)
4076 (uri (svn-reference
4077 (url (string-append "svn://www.tug.org/texlive/tags/"
4078 %texlive-tag "/Master/texmf-dist/"
4079 "/tex/latex/framed"))
4080 (revision %texlive-revision)))
4081 (file-name (string-append name "-" version "-checkout"))
4082 (sha256
4083 (base32
4084 "14a4ydqsvp3vcfavl21jrv0ybiqypaaqzg2q2cs3rzkandg7w98x"))))
4085 (build-system trivial-build-system)
4086 (arguments
4087 `(#:modules ((guix build utils))
4088 #:builder
4089 (begin
4090 (use-modules (guix build utils))
4091 (let ((target (string-append (assoc-ref %outputs "out")
4092 "/share/texmf-dist/tex/latex/framed")))
4093 (mkdir-p target)
4094 (copy-recursively (assoc-ref %build-inputs "source") target)
4095 #t))))
b8d8806b 4096 (home-page "https://www.ctan.org/pkg/framed")
ef1e2ef0
RW
4097 (synopsis "Framed or shaded regions that can break across pages")
4098 (description
4099 "The package creates three environments: @code{framed}, which puts an
4100ordinary frame box around the region, @code{shaded}, which shades the region,
4101and @code{leftbar}, which places a line at the left side. The environments
4102allow a break at their start (the @code{\\FrameCommand} enables creation of a
4103title that is “attached” to the environment); breaks are also allowed in the
4104course of the framed/shaded matter. There is also a command
4105@code{\\MakeFramed} to make your own framed-style environments.")
4106 ;; The header states: "These macros may be freely transmitted, reproduced,
4107 ;; or modified for any purpose provided that this notice is left intact."
4108 (license (license:fsf-free "file://framed.sty"))))
4109
588b5e96
RW
4110(define-public texlive-latex-g-brief
4111 (package
4112 (name "texlive-latex-g-brief")
4113 (version (number->string %texlive-revision))
4114 (source (origin
4115 (method svn-fetch)
4116 (uri (texlive-ref "latex" "g-brief"))
4117 (file-name (string-append name "-" version "-checkout"))
4118 (sha256
4119 (base32
85892948 4120 "1br4kv9y17cvngp83ykpvy7gy3jqfan5plk7sggcgbdfhndi5dsr"))))
588b5e96
RW
4121 (build-system texlive-build-system)
4122 (arguments
4123 '(#:tex-directory "latex/g-brief"
4124 #:phases
4125 (modify-phases %standard-phases
4126 (add-after 'unpack 'remove-generated-file
4127 (lambda _
4128 (delete-file "g-brief.drv")
4129 #t)))))
b8d8806b 4130 (home-page "https://www.ctan.org/pkg/g-brief")
588b5e96
RW
4131 (synopsis "Letter document class")
4132 (description
4133 "This package is designed for formatting formless letters in German; it
4134can also be used for English (by those who can read the documentation). There
4135are LaTeX 2.09 @code{documentstyle} and LaTeX 2e class files for both an
4136\"old\" and a \"new\" version of g-brief.")
4137 (license license:lppl)))
4138
9b4d5c09
RW
4139(define-public texlive-latex-galois
4140 (package
4141 (name "texlive-latex-galois")
4142 (version (number->string %texlive-revision))
4143 (source (origin
4144 (method svn-fetch)
4145 (uri (texlive-ref "latex" "galois"))
4146 (file-name (string-append name "-" version "-checkout"))
4147 (sha256
4148 (base32
4149 "0d4l0msk8j5pi95xnmm9wygv1vbpkwkv5amx9l0km86cs79jpp1h"))))
4150 (build-system texlive-build-system)
4151 (arguments '(#:tex-directory "latex/galois"))
b8d8806b 4152 (home-page "https://www.ctan.org/pkg/galois")
9b4d5c09
RW
4153 (synopsis "Typeset Galois connections")
4154 (description
4155 "The package deals with connections in two-dimensional style, optionally
4156in colour.")
4157 (license license:lppl)))
4158
5f691e2e
RW
4159(define-public texlive-latex-gcite
4160 (package
4161 (name "texlive-latex-gcite")
4162 (version (number->string %texlive-revision))
4163 (source (origin
4164 (method svn-fetch)
4165 (uri (texlive-ref "latex" "gcite"))
4166 (file-name (string-append name "-" version "-checkout"))
4167 (sha256
4168 (base32
4169 "03g9by54yrypn599y98r1xh7qw0bbbmpzq0bfwpj6j5q5rkl1mfa"))))
4170 (build-system texlive-build-system)
4171 (arguments '(#:tex-directory "latex/gcite"))
b8d8806b 4172 (home-page "https://www.ctan.org/pkg/gcite")
5f691e2e
RW
4173 (synopsis "Citations in a reader-friendly style")
4174 (description
4175 "The package allows citations in the German style, which is considered by
4176many to be particularly reader-friendly. The citation provides a small amount
4177of bibliographic information in a footnote on the page where each citation is
4178made. It combines a desire to eliminate unnecessary page-turning with the
4179look-up efficiency afforded by numeric citations. The package makes use of
4180BibLaTeX, and is considered experimental.")
4181 (license license:lppl1.3+)))
4182
f47d1a52
RW
4183(define-public texlive-latex-geometry
4184 (package
4185 (name "texlive-latex-geometry")
4186 (version (number->string %texlive-revision))
4187 (source (origin
4188 (method svn-fetch)
4189 (uri (texlive-ref "latex" "geometry"))
4190 (file-name (string-append name "-" version "-checkout"))
4191 (sha256
4192 (base32
85892948 4193 "0a8f38c2ds1flxcr0apdpyaaz3k6fyalz6dkbrmcv9srjc40mh3n"))))
f47d1a52
RW
4194 (build-system texlive-build-system)
4195 (arguments '(#:tex-directory "latex/geometry"))
00a7af0e
RW
4196 (propagated-inputs
4197 `(("texlive-latex-oberdiek" ,texlive-latex-oberdiek))) ;for ifpdf
b8d8806b 4198 (home-page "https://www.ctan.org/pkg/geometry")
f47d1a52
RW
4199 (synopsis "Flexible and complete interface to document dimensions")
4200 (description
4201 "This package provides an easy and flexible user interface to customize
4202page layout, implementing auto-centering and auto-balancing mechanisms so that
4203the users have only to give the least description for the page layout. The
4204package knows about all the standard paper sizes, so that the user need not
4205know what the nominal \"real\" dimensions of the paper are, just its standard
4206name (such as a4, letter, etc.). An important feature is the package's
4207ability to communicate the paper size it's set up to the output.")
4208 (license license:lppl)))
4209
d48091be
RW
4210(define-public texlive-latex-mdwtools
4211 (package
4212 (name "texlive-latex-mdwtools")
4213 (version (number->string %texlive-revision))
4214 (source (origin
4215 (method svn-fetch)
4216 (uri (texlive-ref "latex" "mdwtools"))
4217 (file-name (string-append name "-" version "-checkout"))
4218 (sha256
4219 (base32
4220 "0caxs74hla28hc67csf5i5ahadx97w8vxh3mdmsprxbpd1mr7ssg"))))
4221 (build-system texlive-build-system)
4222 (arguments '(#:tex-directory "latex/mdwtools"))
b8d8806b 4223 (home-page "https://www.ctan.org/pkg/mdwtools")
d48091be
RW
4224 (synopsis "Miscellaneous tools by Mark Wooding")
4225 (description
4226 "This collection of tools includes: @code{atsupport} for short commands
fb5dfa86
RW
4227starting with @code{@@}, macros to sanitize the OT1 encoding of the
4228@code{cmtt} fonts; a @code{doafter} command; improved @code{footnote} support;
d48091be
RW
4229@code{mathenv} for various alignment in maths; list handling; @code{mdwmath}
4230which adds some minor changes to LaTeX maths; a rewrite of LaTeX's tabular and
4231array environments; verbatim handling; and syntax diagrams.")
4232 (license license:gpl3+)))
4233
80bf1f21
RW
4234(define-public texlive-latex-polyglossia
4235 (package
4236 (name "texlive-latex-polyglossia")
4237 (version (number->string %texlive-revision))
4238 (source (origin
4239 (method svn-fetch)
4240 (uri (texlive-ref "latex" "polyglossia"))
4241 (file-name (string-append name "-" version "-checkout"))
4242 (sha256
4243 (base32
85892948 4244 "0na7v4hsyx5s67cpjj2dbnq8j67k8lln6b19hmj631gfs27slss1"))))
80bf1f21
RW
4245 (build-system texlive-build-system)
4246 (arguments '(#:tex-directory "latex/polyglossia"))
b8d8806b 4247 (home-page "https://www.ctan.org/pkg/polyglossia")
80bf1f21
RW
4248 (synopsis "Alternative to babel for XeLaTeX and LuaLaTeX")
4249 (description
4250 "This package provides a complete Babel replacement for users of LuaLaTeX
4251and XeLaTeX; it relies on the @code{fontspec} package, version 2.0 at least.")
4252 (license license:lppl1.3+)))
4253
84f8035a
RW
4254(define-public texlive-latex-supertabular
4255 (package
4256 (name "texlive-latex-supertabular")
4257 (version (number->string %texlive-revision))
4258 (source (origin
4259 (method svn-fetch)
4260 (uri (texlive-ref "latex" "supertabular"))
4261 (file-name (string-append name "-" version "-checkout"))
4262 (sha256
4263 (base32
4264 "14b2bc7cqz4ckxxycim9sw6jkrr1pahivm1rdbpz5k6hl967w1s3"))))
4265 (build-system texlive-build-system)
4266 (arguments '(#:tex-directory "latex/supertabular"))
b8d8806b 4267 (home-page "https://www.ctan.org/pkg/supertabular")
84f8035a
RW
4268 (synopsis "Multi-page tables package")
4269 (description
4270 "This package was a predecessor of @code{longtable}; the newer
4271package (designed on quite different principles) is easier to use and more
4272flexible, in many cases, but supertabular retains its usefulness in a few
4273situations where longtable has problems.")
4274 (license license:lppl1.3+)))
4275
a0aa6b59
RW
4276(define-public texlive-tex-texinfo
4277 (package
4278 (name "texlive-tex-texinfo")
4279 (version (number->string %texlive-revision))
4280 (source (origin
4281 (method svn-fetch)
4282 (uri (svn-reference
4283 (url (string-append "svn://www.tug.org/texlive/tags/"
4284 %texlive-tag "/Master/texmf-dist/"
4285 "/tex/texinfo"))
4286 (revision %texlive-revision)))
88ae1921 4287 (file-name (string-append name "-" version "-checkout"))
a0aa6b59
RW
4288 (sha256
4289 (base32
85892948 4290 "16jy02m089m7n6v9vbfi4xjgngc1fnvsmmppk8axfwzbhdky3c9c"))))
a0aa6b59
RW
4291 (build-system trivial-build-system)
4292 (arguments
4293 `(#:modules ((guix build utils))
4294 #:builder
4295 (begin
4296 (use-modules (guix build utils))
4297 (let ((target (string-append (assoc-ref %outputs "out")
4298 "/share/texmf-dist/tex/texinfo")))
4299 (mkdir-p target)
4300 (copy-recursively (assoc-ref %build-inputs "source") target)
4301 #t))))
b8d8806b 4302 (home-page "https://www.ctan.org/pkg/texinfo")
a0aa6b59
RW
4303 (synopsis "TeX macros to handle Texinfo files")
4304 (description
4305 "Texinfo is the preferred format for documentation in the GNU project;
4306the format may be used to produce online or printed output from a single
4307source. The Texinfo macros may be used to produce printable output using TeX;
4308other programs in the distribution offer online interactive use (with
4309hypertext linkages in some cases).")
4310 (license license:gpl3+)))
4311
0de81b09
RW
4312(define-public texlive-latex-upquote
4313 (package
4314 (name "texlive-latex-upquote")
4315 (version (number->string %texlive-revision))
4316 (source (origin
4317 (method svn-fetch)
4318 (uri (texlive-ref "latex" "upquote"))
4319 (file-name (string-append name "-" version "-checkout"))
4320 (sha256
4321 (base32
4322 "0d1050i973wnxigy0xpky5l7vn4ff7ldhkjpdqsw5s653gagwixp"))))
4323 (build-system texlive-build-system)
4324 (arguments '(#:tex-directory "latex/upquote"))
b8d8806b 4325 (home-page "https://www.ctan.org/pkg/upquote")
0de81b09
RW
4326 (synopsis "Show \"realistic\" quotes in verbatim")
4327 (description
4328 "Typewriter-style fonts are best for program listings, but Computer
4329Modern Typewriter prints @code{`} and @code{'} as bent opening and closing
4330single quotes. Other fonts, and most programming languages, print @code{`} as
4331a grave accent and @code{'} upright; @code{'} is used both to open and to
4332close quoted strings. The package switches the typewriter font to Computer
4333Modern Typewriter in OT1 encoding, and modifies the behaviour of
4334@code{verbatim}, @code{verbatim*}, @code{\\verb}, and @code{\\verb*} to print
4335in the expected way. It does this regardless of other fonts or encodings in
4336use, so long as the package is loaded after the other fonts were. The package
4337does not affect @code{\\tt}, @code{\\texttt}, etc.")
4338 (license license:lppl1.2+)))
4339
bda61541
RW
4340(define-public texlive-latex-anysize
4341 (package
4342 (name "texlive-latex-anysize")
4343 (version (number->string %texlive-revision))
4344 (source (origin
4345 (method svn-fetch)
4346 (uri (svn-reference
4347 (url (string-append "svn://www.tug.org/texlive/tags/"
4348 %texlive-tag "/Master/texmf-dist/"
4349 "/tex/latex/anysize"))
4350 (revision %texlive-revision)))
de4eb4d1 4351 (file-name (string-append name "-" version "-checkout"))
bda61541
RW
4352 (sha256
4353 (base32
4354 "19khwqjlvznc955sijhww3c4zbb0053rvzwv9nz738qknq7y18vb"))))
4355 (build-system trivial-build-system)
4356 (arguments
4357 `(#:modules ((guix build utils))
4358 #:builder
4359 (begin
4360 (use-modules (guix build utils))
4361 (let ((target (string-append (assoc-ref %outputs "out")
4362 "/share/texmf-dist/tex/latex/anysize")))
4363 (mkdir-p target)
4364 (copy-recursively (assoc-ref %build-inputs "source") target)
4365 #t))))
b8d8806b 4366 (home-page "https://www.ctan.org/pkg/anysize")
bda61541
RW
4367 (synopsis "Simple package to set up document margins")
4368 (description
4369 "This is a simple package to set up document margins. This package is
4370considered obsolete; alternatives are the @code{typearea} package from the
4371@code{koma-script} bundle, or the @code{geometry} package.")
4372 (license license:public-domain)))
4373
1d3be84e
RW
4374(define-public texlive-latex-appendix
4375 (package
4376 (name "texlive-latex-appendix")
4377 (version (number->string %texlive-revision))
4378 (source (origin
4379 (method svn-fetch)
4380 (uri (texlive-ref "latex" "appendix"))
72d5adf4 4381 (file-name (string-append name "-" version "-checkout"))
1d3be84e
RW
4382 (sha256
4383 (base32
4384 "0rxfpr8vq3brwx5rc7qn91ixlp9zva4zrms8a579fqa1g5yva7vg"))))
4385 (build-system texlive-build-system)
4386 (arguments '(#:tex-directory "latex/appendix"))
b8d8806b 4387 (home-page "https://www.ctan.org/pkg/appendix")
1d3be84e
RW
4388 (synopsis "Extra control of appendices")
4389 (description
4390 "The appendix package provides various ways of formatting the titles of
4391appendices. Also (sub)appendices environments are provided that can be used,
4392for example, for per chapter/section appendices. An @code{appendices}
4393environment is provided which can be used instead of the @code{\\appendix}
4394command.")
4395 (license license:lppl)))
4396
b92ac281
RW
4397(define-public texlive-latex-changebar
4398 (package
4399 (name "texlive-latex-changebar")
4400 (version (number->string %texlive-revision))
4401 (source (origin
4402 (method svn-fetch)
4403 (uri (texlive-ref "latex" "changebar"))
af8aa105 4404 (file-name (string-append name "-" version "-checkout"))
b92ac281
RW
4405 (sha256
4406 (base32
d4d9a1ec 4407 "05x15ilynqrl448h8l6qiraygamdldlngz89a2bw7kg74fym14ch"))))
b92ac281
RW
4408 (build-system texlive-build-system)
4409 (arguments '(#:tex-directory "latex/changebar"))
b8d8806b 4410 (home-page "https://www.ctan.org/pkg/changebar")
b92ac281
RW
4411 (synopsis "Generate changebars in LaTeX documents")
4412 (description
4413 "Identify areas of text to be marked with changebars with the
4414@code{\\cbstart} and @code{\\cbend} commands; the bars may be coloured. The
36a4366d
EF
4415package uses @code{drivers} to place the bars; the available drivers can work
4416with @code{dvitoln03}, @code{dvitops}, @code{dvips}, the emTeX and TeXtures DVI
b92ac281
RW
4417drivers, and VTeX and pdfTeX.")
4418 (license license:lppl)))
4419
fedd77c1
RW
4420(define-public texlive-latex-cmap
4421 (package
4422 (name "texlive-latex-cmap")
4423 (version (number->string %texlive-revision))
4424 (source (origin
4425 (method svn-fetch)
4426 (uri (svn-reference
4427 (url (string-append "svn://www.tug.org/texlive/tags/"
4428 %texlive-tag "/Master/texmf-dist/"
4429 "/tex/latex/cmap"))
4430 (revision %texlive-revision)))
4431 (file-name (string-append name "-" version "-checkout"))
4432 (sha256
4433 (base32
4434 "1s1rv6zgw105w2j6ffhnk914qrix87y1ndzri1q72g2kbr91zlbg"))))
4435 (build-system trivial-build-system)
4436 (arguments
4437 `(#:modules ((guix build utils))
4438 #:builder
4439 (begin
4440 (use-modules (guix build utils))
4441 (let ((target (string-append (assoc-ref %outputs "out")
4442 "/share/texmf-dist/tex/latex/cmap")))
4443 (mkdir-p target)
4444 (copy-recursively (assoc-ref %build-inputs "source") target)
4445 #t))))
4446 (home-page "https://www.tug.org/svn/texlive/tags/texlive-2017.1/\
4447Master/texmf-dist/tex/latex/cmap/")
4448 (synopsis "CMap support for PDF files")
4449 (description
4450 "This package embeds CMap tables into PDF files to make search and
4451copy-and-paste functions work properly.")
4452 (license license:lppl)))
4453
e003a5f0
RW
4454(define-public texlive-latex-colortbl
4455 (package
4456 (name "texlive-latex-colortbl")
4457 (version (number->string %texlive-revision))
4458 (source (origin
4459 (method svn-fetch)
4460 (uri (texlive-ref "latex" "colortbl"))
4439c1de 4461 (file-name (string-append name "-" version "-checkout"))
e003a5f0
RW
4462 (sha256
4463 (base32
85892948 4464 "16vd99p01a0y30xr5yf1z2j5da9x8gy21vb30wk08jh31zffbaqj"))))
e003a5f0
RW
4465 (build-system texlive-build-system)
4466 (arguments '(#:tex-directory "latex/colortbl"))
b8d8806b 4467 (home-page "https://www.ctan.org/pkg/colortbl")
e003a5f0 4468 (synopsis "Add colour to LaTeX tables")
83c830d1 4469 (description
e003a5f0
RW
4470 "This package allows rows, columns, and even individual cells in LaTeX
4471tables to be coloured.")
4472 (license license:lppl)))
83c830d1 4473
36ce05ff 4474(define-public texlive-latex-fancybox
5e9bf5a2 4475 (package
36ce05ff 4476 (name "texlive-latex-fancybox")
5e9bf5a2
RW
4477 (version (number->string %texlive-revision))
4478 (source (origin
4479 (method svn-fetch)
4480 (uri (svn-reference
4481 (url (string-append "svn://www.tug.org/texlive/tags/"
4482 %texlive-tag "/Master/texmf-dist/"
36ce05ff 4483 "/tex/latex/fancybox"))
5e9bf5a2
RW
4484 (revision %texlive-revision)))
4485 (file-name (string-append name "-" version "-checkout"))
4486 (sha256
4487 (base32
36ce05ff 4488 "0smmnaad2q8qwicay1frri990lv65l0k8cwzsvdsyp3jk8kp042w"))))
5e9bf5a2
RW
4489 (build-system trivial-build-system)
4490 (arguments
36ce05ff 4491 `(#:modules ((guix build utils))
5e9bf5a2
RW
4492 #:builder
4493 (begin
36ce05ff
RW
4494 (use-modules (guix build utils))
4495 (let ((target (string-append (assoc-ref %outputs "out")
4496 "/share/texmf-dist/tex/latex/fancybox")))
4497 (mkdir-p target)
4498 (copy-recursively (assoc-ref %build-inputs "source") target)
5e9bf5a2 4499 #t))))
b8d8806b 4500 (home-page "https://www.ctan.org/pkg/fancybox")
36ce05ff 4501 (synopsis "Variants of \\fbox and other games with boxes")
5e9bf5a2 4502 (description
36ce05ff
RW
4503 "This package provides variants of @code{\\fbox}: @code{\\shadowbox},
4504@code{\\doublebox}, @code{\\ovalbox}, @code{\\Ovalbox}, with helpful tools for
4505using box macros and flexible verbatim macros. You can box mathematics,
4506floats, center, flushleft, and flushright, lists, and pages.")
4507 (license license:lppl1.2+)))
5e9bf5a2 4508
20282111 4509(define-public texlive-latex-fancyhdr
f2d1f060 4510 (package
20282111 4511 (name "texlive-latex-fancyhdr")
f2d1f060
RW
4512 (version (number->string %texlive-revision))
4513 (source (origin
4514 (method svn-fetch)
4515 (uri (svn-reference
4516 (url (string-append "svn://www.tug.org/texlive/tags/"
4517 %texlive-tag "/Master/texmf-dist/"
20282111 4518 "/tex/latex/fancyhdr"))
f2d1f060
RW
4519 (revision %texlive-revision)))
4520 (file-name (string-append name "-" version "-checkout"))
4521 (sha256
4522 (base32
85892948 4523 "0hrwspqkqfahxyzzsnjyrxlgxj06zw1f3636gx76pvl4xhvdj1cj"))))
f2d1f060
RW
4524 (build-system trivial-build-system)
4525 (arguments
20282111 4526 `(#:modules ((guix build utils))
f2d1f060
RW
4527 #:builder
4528 (begin
20282111
RW
4529 (use-modules (guix build utils))
4530 (let ((target (string-append (assoc-ref %outputs "out")
4531 "/share/texmf-dist/tex/latex/fancyhdr")))
4532 (mkdir-p target)
4533 (copy-recursively (assoc-ref %build-inputs "source") target)
f2d1f060 4534 #t))))
b8d8806b 4535 (home-page "https://www.ctan.org/pkg/fancyhdr")
20282111
RW
4536 (synopsis "Extensive control of page headers and footers in LaTeX2e")
4537 (description
4538 "The package provides extensive facilities, both for constructing headers
4539and footers, and for controlling their use (for example, at times when LaTeX
4540would automatically change the heading style in use).")
4541 (license license:lppl)))
4542
df2b9bb4
RW
4543(define-public texlive-latex-float
4544 (package
4545 (name "texlive-latex-float")
4546 (version (number->string %texlive-revision))
4547 (source (origin
4548 (method svn-fetch)
4549 (uri (texlive-ref "latex" "float"))
4fd0a591 4550 (file-name (string-append name "-" version "-checkout"))
df2b9bb4
RW
4551 (sha256
4552 (base32
4553 "0nbl7wylkv22fcdv4p8byhhj575fli6jnqjpkhrkbv8dzwah84nq"))))
4554 (build-system texlive-build-system)
4555 (arguments '(#:tex-directory "latex/float"))
b8d8806b 4556 (home-page "https://www.ctan.org/pkg/float")
df2b9bb4 4557 (synopsis "Improved interface for floating objects")
f2d1f060 4558 (description
df2b9bb4
RW
4559 "This package improves the interface for defining floating objects such
4560as figures and tables. It introduces the boxed float, the ruled float and the
4561plaintop float. You can define your own floats and improve the behaviour of
4562the old ones. The package also provides the @code{H} float modifier option of
4563the obsolete @code{here} package. You can select this as automatic default
4564with @code{\\floatplacement{figure}{H}}.")
4565 (license license:lppl)))
f2d1f060 4566
3921bc7c
RW
4567(define-public texlive-latex-footmisc
4568 (package
4569 (name "texlive-latex-footmisc")
4570 (version (number->string %texlive-revision))
4571 (source (origin
4572 (method svn-fetch)
4573 (uri (texlive-ref "latex" "footmisc"))
dae1d9e4 4574 (file-name (string-append name "-" version "-checkout"))
3921bc7c
RW
4575 (sha256
4576 (base32
4577 "03x61wwql8nh6zrqiiiq3rb0x7m3pn48c606zapy19y21fybwdxs"))))
4578 (build-system texlive-build-system)
4579 (arguments '(#:tex-directory "latex/footmisc"))
b8d8806b 4580 (home-page "https://www.ctan.org/pkg/footmisc")
3921bc7c
RW
4581 (synopsis "Range of footnote options")
4582 (description
4583 "This is a collection of ways to change the typesetting of footnotes.
4584The package provides means of changing the layout of the footnotes themselves,
4585a way to number footnotes per page, to make footnotes disappear in a
4586\"moving\" argument, and to deal with multiple references to footnotes from
4587the same place. The package also has a range of techniques for labelling
4588footnotes with symbols rather than numbers.")
4589 (license license:lppl1.3+)))
4590
b2bc1daf
RW
4591(define-public texlive-latex-listings
4592 (package
4593 (name "texlive-latex-listings")
4594 (version (number->string %texlive-revision))
4595 (source (origin
4596 (method svn-fetch)
4597 (uri (texlive-ref "latex" "listings"))
aeb135e3 4598 (file-name (string-append name "-" version "-checkout"))
b2bc1daf
RW
4599 (sha256
4600 (base32
85892948 4601 "1fbrhqj22vzakn30j71fc41l8nliqbv1dmxm0zlwi2qjjbq6fwav"))))
b2bc1daf
RW
4602 (build-system texlive-build-system)
4603 (arguments
4604 '(#:tex-directory "latex/listings"
4605 #:build-targets '("listings.ins")))
b8d8806b 4606 (home-page "https://www.ctan.org/pkg/listings")
b2bc1daf
RW
4607 (synopsis "Typeset source code listings using LaTeX")
4608 (description
4609 "The package enables the user to typeset programs (programming code)
4610within LaTeX; the source code is read directly by TeX---no front-end processor
4611is needed. Keywords, comments and strings can be typeset using different
4612styles. Support for @code{hyperref} is provided.")
4613 (license license:lppl1.3+)))
4614
02fd07b3 4615(define-public texlive-latex-jknapltx
4628315b 4616 (package
02fd07b3 4617 (name "texlive-latex-jknapltx")
4628315b
RW
4618 (version (number->string %texlive-revision))
4619 (source (origin
4620 (method svn-fetch)
4621 (uri (svn-reference
4622 (url (string-append "svn://www.tug.org/texlive/tags/"
4623 %texlive-tag "/Master/texmf-dist/"
02fd07b3 4624 "/tex/latex/jknapltx"))
4628315b
RW
4625 (revision %texlive-revision)))
4626 (file-name (string-append name "-" version "-checkout"))
4627 (sha256
4628 (base32
02fd07b3 4629 "0m034x72f2g07icr50gacyxfb9g1lz2rmqh4kqr1qjb421x2kds9"))))
4628315b
RW
4630 (build-system trivial-build-system)
4631 (arguments
02fd07b3 4632 `(#:modules ((guix build utils))
4628315b
RW
4633 #:builder
4634 (begin
02fd07b3
RW
4635 (use-modules (guix build utils))
4636 (let ((target (string-append (assoc-ref %outputs "out")
4637 "/share/texmf-dist/tex/latex/jknapltx")))
4638 (mkdir-p target)
4639 (copy-recursively (assoc-ref %build-inputs "source") target)
4628315b 4640 #t))))
b8d8806b 4641 (home-page "https://www.ctan.org/pkg/jknappen")
02fd07b3
RW
4642 (synopsis "Miscellaneous packages by Joerg Knappen")
4643 (description
4644 "This package provides miscellaneous macros by Joerg Knappen, including:
4645represent counters in greek; Maxwell's non-commutative division;
4646@code{latin1jk}, @code{latin2jk} and @code{latin3jk}, which are
4647@code{inputenc} definition files that allow verbatim input in the respective
4648ISO Latin codes; blackboard bold fonts in maths; use of RSFS fonts in maths;
4649extra alignments for @code{\\parboxes}; swap Roman and Sans fonts;
4650transliterate semitic languages; patches to make (La)TeX formulae embeddable
4651in SGML; use maths minus in text as appropriate; simple Young tableaux.")
4652 (license license:gpl2)))
4653
83c830d1
RW
4654(define-public texlive-fonts-ec
4655 (package
4656 (name "texlive-fonts-ec")
4657 (version (number->string %texlive-revision))
4658 (source (origin
4659 (method svn-fetch)
4660 (uri (svn-reference
4661 (url (string-append "svn://www.tug.org/texlive/tags/"
4662 %texlive-tag "/Master/texmf-dist/"
4663 "/fonts/source/jknappen/ec/"))
4664 (revision %texlive-revision)))
ca816eb3 4665 (file-name (string-append name "-" version "-checkout"))
83c830d1
RW
4666 (sha256
4667 (base32
4668 "12av65fbz9xiashm09c9m1fj1mijxls5xspd7652ry1n5s0nixy4"))))
4669 (build-system gnu-build-system)
4670 (arguments
4671 `(#:modules ((guix build gnu-build-system)
4672 (guix build utils)
4673 (srfi srfi-1)
4674 (srfi srfi-26))
4675 #:tests? #f ; no tests
4676 #:phases
4677 (modify-phases %standard-phases
4678 (delete 'configure)
4679 (replace 'build
4680 (lambda* (#:key inputs #:allow-other-keys)
4681 (let ((mf (assoc-ref inputs "texlive-metafont-base")))
4682 ;; Tell mf where to find mf.base
4683 (setenv "MFBASES" (string-append mf "/share/texmf-dist/web2c"))
4684 ;; Tell mf where to look for source files
4685 (setenv "MFINPUTS"
4686 (string-append (getcwd) ":"
4687 mf "/share/texmf-dist/metafont/base:"
a6405e03 4688 (assoc-ref inputs "texlive-cm")
83c830d1
RW
4689 "/share/texmf-dist/fonts/source/public/cm")))
4690 (mkdir "build")
c4fc86e4
MW
4691 (for-each (lambda (font)
4692 (format #t "building font ~a\n" font)
4693 (invoke "mf" "-progname=mf"
4694 "-output-directory=build"
4695 (string-append "\\"
4696 "mode:=ljfour; "
4697 "mag:=1; "
4698 "batchmode; "
4699 "input " (basename font ".mf"))))
4700 (find-files "." "[0-9]+\\.mf$"))
4701 #t))
83c830d1
RW
4702 (replace 'install
4703 (lambda* (#:key outputs #:allow-other-keys)
4704 (let* ((out (assoc-ref outputs "out"))
4705 (tfm (string-append
4706 out "/share/texmf-dist/fonts/tfm/jknappen/ec"))
4707 (mf (string-append
4708 out "/share/texmf-dist/fonts/source/jknappen/ec")))
4709 (for-each (cut install-file <> tfm)
4710 (find-files "build" "\\.*"))
4711 (for-each (cut install-file <> mf)
4712 (find-files "." "\\.mf"))
4713 #t))))))
4628315b 4714 (native-inputs
83c830d1
RW
4715 `(("texlive-bin" ,texlive-bin)
4716 ("texlive-metafont-base" ,texlive-metafont-base)
a6405e03 4717 ("texlive-cm" ,texlive-cm)))
b8d8806b 4718 (home-page "https://www.ctan.org/pkg/ec")
83c830d1
RW
4719 (synopsis "Computer modern fonts in T1 and TS1 encodings")
4720 (description
4721 "The EC fonts are European Computer Modern Fonts, supporting the complete
4722LaTeX T1 encoding defined at the 1990 TUG conference hold at Cork/Ireland.
4723These fonts are intended to be stable with no changes being made to the tfm
4724files. The set also contains a Text Companion Symbol font, called @code{tc},
4725featuring many useful characters needed in text typesetting, for example
4726oldstyle digits, currency symbols (including the newly created Euro symbol),
4727the permille sign, copyright, trade mark and servicemark as well as a copyleft
4728sign, and many others. Recent releases of LaTeX2e support the EC fonts. The
4729EC fonts supersede the preliminary version released as the DC fonts. The
4730fonts are available in (traced) Adobe Type 1 format, as part of the
4731@code{cm-super} bundle. The other Computer Modern-style T1-encoded Type 1
4732set, Latin Modern, is not actually a direct development of the EC set, and
4733differs from the EC in a number of particulars.")
4734 (license (license:fsf-free "https://www.tug.org/svn/texlive/tags/\
85892948 4735texlive-2019.3/Master/texmf-dist/doc/fonts/ec/copyrite.txt"))))
83c830d1 4736
6a4fe83b
RW
4737;; FIXME: the fonts should be built from source, but running "tex aefonts.tex"
4738;; fails with obscure TeX-typical error messages.
4739(define-public texlive-ae
4740 (package
4741 (inherit (simple-texlive-package
4742 "texlive-ae"
4743 (list "/doc/fonts/ae/"
4744 "/source/fonts/ae/"
4745 "/fonts/tfm/public/ae/"
4746 "/fonts/vf/public/ae/"
4747 "/tex/latex/ae/")
4748 (base32
4749 "1xkzg381y0avdq381r2m990wp27czkdff0qkvsp2n5q62yc0bdsw")
4750 #:trivial? #t))
4751 (home-page "https://www.ctan.org/pkg/ae")
4752 (synopsis "Virtual fonts for T1 encoded CMR-fonts")
4753 (description
4754 "This package provides a set of virtual fonts which emulates T1 coded
4755fonts using the standard CM fonts. The package name, AE fonts, supposedly
4756stands for \"Almost European\". The main use of the package was to produce
4757PDF files using Adobe Type 1 versions of the CM fonts instead of bitmapped EC
4758fonts. Note that direct substitutes for the bitmapped EC fonts are available,
4759via the CM-super, Latin Modern and (in a restricted way) CM-LGC font sets.")
4760 (license license:lppl1.3+)))
4761
320dd119
RW
4762(define-public texlive-inconsolata
4763 (package
4764 (inherit (simple-texlive-package
4765 "texlive-inconsolata"
4766 (list "/doc/fonts/inconsolata/"
4767 "/fonts/enc/dvips/inconsolata/"
4768 "/fonts/map/dvips/inconsolata/"
4769 "/fonts/opentype/public/inconsolata/"
4770 "/fonts/tfm/public/inconsolata/"
4771 "/fonts/type1/public/inconsolata/"
4772 "/tex/latex/inconsolata/")
4773 (base32
4774 "1a77w26m4c4j0202s1qkikz7ha6cxlv8zxhzi9s3l0x1l2pl7cr2")
4775 #:trivial? #t))
4776 (home-page "https://www.ctan.org/pkg/inconsolata")
4777 (synopsis "Monospaced font with support files for use with TeX")
4778 (description
4779 "Inconsolata is a monospaced font designed by Raph Levien. This package
4780contains the font (in both Adobe Type 1 and OpenType formats) in regular and
4781bold weights, with additional glyphs and options to control slashed zero,
4782upright quotes and a shapelier lower-case L, plus metric files for use with
4783TeX, and LaTeX font definition and other relevant files.")
4784 (license (list license:lppl1.3+
4785 license:silofl1.1
4786 license:asl2.0))))
4787
1aaa117c 4788(define-public texlive-times
5e9bf5a2 4789 (package
1aaa117c
RW
4790 (inherit (simple-texlive-package
4791 "texlive-times"
4792 (list "/dvips/times/"
4793 "/fonts/afm/adobe/times/"
4794 "/fonts/afm/urw/times/"
4795 "/fonts/tfm/adobe/times/"
4796 "/fonts/tfm/urw35vf/times/"
4797 "/fonts/type1/urw/times/"
4798 "/fonts/vf/adobe/times/"
4799 "/fonts/vf/urw35vf/times/"
4800 "/fonts/map/dvips/times/"
4801 "/tex/latex/times/")
4802 (base32
4803 "13g41a7vbkvsf7ki9dgl7qm100w382mnlqkcngwgl3axp6s5s8l0")
4804 #:trivial? #t))
5e9bf5a2
RW
4805 (home-page "https://ctan.org/pkg/urw-base35")
4806 (synopsis "URW Base 35 font pack for LaTeX")
4807 (description
4808 "This package provides a drop-in replacements for the Times font from
4809Adobe's basic set.")
4810 ;; No license version specified.
4811 (license license:gpl3+)))
4812
1aaa117c
RW
4813(define-public texlive-fonts-adobe-times
4814 (deprecated-package "texlive-fonts-adobe-times" texlive-times))
4815
57bee3cc 4816(define-public texlive-palatino
f2d1f060 4817 (package
57bee3cc
RW
4818 (inherit (simple-texlive-package
4819 "texlive-palatino"
4820 (list "/dvips/palatino/"
4821 "/fonts/afm/adobe/palatino/"
4822 "/fonts/afm/urw/palatino/"
4823 "/fonts/tfm/adobe/palatino/"
4824 "/fonts/tfm/urw35vf/palatino/"
4825 "/fonts/type1/urw/palatino/"
4826 "/fonts/vf/adobe/palatino/"
4827 "/fonts/vf/urw35vf/palatino/"
4828
4829 "/fonts/map/dvips/palatino/"
4830 "/tex/latex/palatino/")
4831 (base32
4832 "12jc0av7v99857jigmva47qaxyllhpzsnqis10n0qya2kz44xf22")
4833 #:trivial? #t))
f2d1f060
RW
4834 (home-page "https://ctan.org/pkg/urw-base35")
4835 (synopsis "URW Base 35 font pack for LaTeX")
4836 (description
4837 "This package provides a drop-in replacements for the Palatino font from
4838Adobe's basic set.")
4839 ;; No license version specified.
4840 (license license:gpl3+)))
4841
57bee3cc
RW
4842(define-public texlive-fonts-adobe-palatino
4843 (deprecated-package "texlive-fonts-adobe-palatino" texlive-palatino))
4844
df19dc2f 4845(define-public texlive-zapfding
4628315b 4846 (package
df19dc2f
RW
4847 (inherit (simple-texlive-package
4848 "texlive-zapfding"
4849 (list "/dvips/zapfding/"
4850 "/fonts/afm/adobe/zapfding/"
4851 "/fonts/afm/urw/zapfding/"
4852 "/fonts/tfm/adobe/zapfding/"
4853 "/fonts/tfm/urw35vf/zapfding/"
4854 "/fonts/type1/urw/zapfding/"
4855 "/fonts/map/dvips/zapfding/"
4856 "/tex/latex/zapfding/")
4857 (base32
4858 "17mls8wilz9api9ivsbcczpiqp1f39qy8wa6ajssi8zhnc5lq7zn")
4859 #:trivial? #t))
4628315b
RW
4860 (home-page "https://ctan.org/pkg/urw-base35")
4861 (synopsis "URW Base 35 font pack for LaTeX")
4862 (description
4863 "This package provides a drop-in replacements for the Zapfding font from
4864Adobe's basic set.")
4865 ;; No license version specified.
4866 (license license:gpl3+)))
4867
df19dc2f
RW
4868(define-public texlive-fonts-adobe-zapfding
4869 (deprecated-package "texlive-fonts-adobe-zapfding" texlive-zapfding))
4870
f45a5520
RW
4871(define-public texlive-fonts-rsfs
4872 (package
4873 (name "texlive-fonts-rsfs")
4874 (version (number->string %texlive-revision))
4875 (source (origin
4876 (method svn-fetch)
4877 (uri (svn-reference
4878 (url (string-append "svn://www.tug.org/texlive/tags/"
4879 %texlive-tag "/Master/texmf-dist/"
4880 "/fonts/source/public/rsfs/"))
4881 (revision %texlive-revision)))
e26de9c9 4882 (file-name (string-append name "-" version "-checkout"))
f45a5520
RW
4883 (sha256
4884 (base32
4885 "0r12pn02r4a955prcvq0048nifh86ihlcgvw3pppqqvfngv34l5h"))))
4886 (build-system gnu-build-system)
4887 (arguments
4888 `(#:modules ((guix build gnu-build-system)
4889 (guix build utils)
4890 (srfi srfi-1)
4891 (srfi srfi-26))
4892 #:tests? #f ; no tests
4893 #:phases
4894 (modify-phases %standard-phases
4895 (delete 'configure)
4896 (replace 'build
4897 (lambda* (#:key inputs #:allow-other-keys)
4898 (let ((mf (assoc-ref inputs "texlive-metafont-base")))
4899 ;; Tell mf where to find mf.base
4900 (setenv "MFBASES" (string-append mf "/share/texmf-dist/web2c"))
4901 ;; Tell mf where to look for source files
4902 (setenv "MFINPUTS"
4903 (string-append (getcwd) ":"
4904 mf "/share/texmf-dist/metafont/base:"
a6405e03 4905 (assoc-ref inputs "texlive-cm")
f45a5520
RW
4906 "/share/texmf-dist/fonts/source/public/cm")))
4907 (mkdir "build")
d8ac82c2
MW
4908 (for-each (lambda (font)
4909 (format #t "building font ~a\n" font)
4910 (invoke "mf" "-progname=mf"
4911 "-output-directory=build"
4912 (string-append "\\"
4913 "mode:=ljfour; "
4914 "mag:=1; "
4915 "batchmode; "
4916 "input " (basename font ".mf"))))
4917 (find-files "." "[0-9]+\\.mf$"))
4918 #t))
f45a5520
RW
4919 (replace 'install
4920 (lambda* (#:key outputs #:allow-other-keys)
4921 (let* ((out (assoc-ref outputs "out"))
4922 (tfm (string-append
4923 out "/share/texmf-dist/fonts/tfm/public/rsfs"))
4924 (mf (string-append
4925 out "/share/texmf-dist/fonts/source/public/rsfs")))
4926 (for-each (cut install-file <> tfm)
4927 (find-files "build" "\\.*"))
4928 (for-each (cut install-file <> mf)
4929 (find-files "." "\\.mf"))
4930 #t))))))
4931 (native-inputs
4932 `(("texlive-bin" ,texlive-bin)
4933 ("texlive-metafont-base" ,texlive-metafont-base)
a6405e03 4934 ("texlive-cm" ,texlive-cm)))
b8d8806b 4935 (home-page "https://www.ctan.org/pkg/rsfs")
f45a5520
RW
4936 (synopsis "Ralph Smith's Formal Script font")
4937 (description
4938 "The fonts provide uppercase formal script letters for use as symbols in
4939scientific and mathematical typesetting (in contrast to the informal script
4940fonts such as that used for the calligraphic symbols in the TeX maths symbol
4941font). The fonts are provided as Metafont source, and as derived Adobe Type 1
4942format. LaTeX support, for using these fonts in mathematics, is available via
4943one of the packages @code{calrsfs} and @code{mathrsfs}.")
4944 (license (license:fsf-free "http://mirrors.ctan.org/fonts/rsfs/README"))))
4945
1562763c
RW
4946(define-public texlive-latex-eso-pic
4947 (package
4948 (name "texlive-latex-eso-pic")
4949 (version (number->string %texlive-revision))
4950 (source (origin
4951 (method svn-fetch)
4952 (uri (texlive-ref "latex" "eso-pic"))
2678a63b 4953 (file-name (string-append name "-" version "-checkout"))
1562763c
RW
4954 (sha256
4955 (base32
85892948 4956 "0y2y08kr3w6asm9lblj9yywqmhaal36fq71zzcbfsc7cvwf641q7"))))
1562763c
RW
4957 (build-system texlive-build-system)
4958 (arguments '(#:tex-directory "latex/eso-pic"))
b8d8806b 4959 (home-page "https://www.ctan.org/pkg/eso-pic")
1562763c
RW
4960 (synopsis "Add picture commands (or backgrounds) to every page")
4961 (description
4962 "The package adds one or more user commands to LaTeX's @code{shipout}
4963routine, which may be used to place the output at fixed positions. The
4964@code{grid} option may be used to find the correct places.")
4965 (license license:lppl1.3+)))
4966
ae3779d5
RW
4967(define-public texlive-latex-eepic
4968 (package
4969 (name "texlive-latex-eepic")
4970 (version (number->string %texlive-revision))
4971 (source (origin
4972 (method svn-fetch)
4973 (uri (svn-reference
4974 (url (string-append "svn://www.tug.org/texlive/tags/"
4975 %texlive-tag "/Master/texmf-dist/"
4976 "/tex/latex/eepic"))
4977 (revision %texlive-revision)))
84d63643 4978 (file-name (string-append name "-" version "-checkout"))
ae3779d5
RW
4979 (sha256
4980 (base32
4981 "1c68gvh021pvybg07apsd2xhq2ljbg80kq94wh71drdga3c2zqjw"))))
4982 (build-system trivial-build-system)
4983 (arguments
4984 `(#:modules ((guix build utils))
4985 #:builder
4986 (begin
4987 (use-modules (guix build utils))
4988 (let ((target (string-append (assoc-ref %outputs "out")
4989 "/share/texmf-dist/tex/latex/eepic")))
4990 (mkdir-p target)
4991 (copy-recursively (assoc-ref %build-inputs "source") target)
4992 #t))))
b8d8806b 4993 (home-page "https://www.ctan.org/pkg/eepic")
ae3779d5
RW
4994 (synopsis "Extensions to epic and the LaTeX drawing tools")
4995 (description
4996 "Extensions to @code{epic} and the LaTeX picture drawing environment,
4997include the drawing of lines at any slope, the drawing of circles in any
4998radii, and the drawing of dotted and dashed lines much faster with much less
4999TeX memory, and providing several new commands for drawing ellipses, arcs,
5000splines, and filled circles and ellipses. The package uses @code{tpic}
5001@code{\\special} commands.")
5002 (license license:public-domain)))
5003
245f1f31
RW
5004(define-public texlive-latex-enumitem
5005 (package
5006 (name "texlive-latex-enumitem")
5007 (version (number->string %texlive-revision))
5008 (source (origin
5009 (method svn-fetch)
5010 (uri (svn-reference
5011 (url (string-append "svn://www.tug.org/texlive/tags/"
5012 %texlive-tag "/Master/texmf-dist/"
5013 "/tex/latex/enumitem"))
5014 (revision %texlive-revision)))
5015 (file-name (string-append name "-" version "-checkout"))
5016 (sha256
5017 (base32
85892948 5018 "1vm9xp67hzif0pqab4r3ialf0cyhi0fa4p8kxgp1ymcf85pqip14"))))
245f1f31
RW
5019 (build-system trivial-build-system)
5020 (arguments
5021 `(#:modules ((guix build utils))
5022 #:builder
5023 (begin
5024 (use-modules (guix build utils))
5025 (let ((target (string-append (assoc-ref %outputs "out")
5026 "/share/texmf-dist/tex/latex/enumitem")))
5027 (mkdir-p target)
5028 (copy-recursively (assoc-ref %build-inputs "source") target)
5029 #t))))
b8d8806b 5030 (home-page "https://www.ctan.org/pkg/enumitem")
245f1f31
RW
5031 (synopsis "Customize basic list environments")
5032 (description
5033 "This package is intended to ease customizing the three basic list
5034environments: @code{enumerate}, @code{itemize} and @code{description}. It
5035extends their syntax to allow an optional argument where a set of parameters
5036in the form @code{key=value} are available, for example:
5037@code{\\begin{itemize}[itemsep=1ex,leftmargin=1cm]}.")
5038 (license license:lppl1.3+)))
5039
ecffeeb5
RW
5040(define-public texlive-latex-multirow
5041 (package
5042 (name "texlive-latex-multirow")
5043 (version (number->string %texlive-revision))
5044 (source (origin
5045 (method svn-fetch)
5046 (uri (texlive-ref "latex" "multirow"))
6a919804 5047 (file-name (string-append name "-" version "-checkout"))
ecffeeb5
RW
5048 (sha256
5049 (base32
85892948 5050 "07vbcp6avdwldr870cwf65av2s9lfyzcpp8gpld53yw6lcxgaipj"))))
ecffeeb5
RW
5051 (build-system texlive-build-system)
5052 (arguments '(#:tex-directory "latex/multirow"))
b8d8806b 5053 (home-page "https://www.ctan.org/pkg/multirow")
ecffeeb5
RW
5054 (synopsis "Create tabular cells spanning multiple rows")
5055 (description
5056 "The package provides tools for creating tabular cells spanning multiple
5057rows. It has a lot of flexibility, including an option for specifying an
5058entry at the \"natural\" width of its text.")
5059 (license license:lppl1.3+)))
5060
da38b235
RW
5061(define-public texlive-latex-overpic
5062 (package
5063 (name "texlive-latex-overpic")
5064 (version (number->string %texlive-revision))
5065 (source (origin
5066 (method svn-fetch)
5067 (uri (svn-reference
5068 (url (string-append "svn://www.tug.org/texlive/tags/"
5069 %texlive-tag "/Master/texmf-dist/"
5070 "/tex/latex/overpic"))
5071 (revision %texlive-revision)))
b2aef721 5072 (file-name (string-append name "-" version "-checkout"))
da38b235
RW
5073 (sha256
5074 (base32
85892948 5075 "1pr6ym3ad7x14ng7gmhsmywh3685d2cnm5qgyrqbigng2r6fcc1k"))))
da38b235
RW
5076 (build-system trivial-build-system)
5077 (arguments
5078 `(#:modules ((guix build utils))
5079 #:builder
5080 (begin
5081 (use-modules (guix build utils))
5082 (let ((target (string-append (assoc-ref %outputs "out")
5083 "/share/texmf-dist/tex/latex/overpic")))
5084 (mkdir-p target)
5085 (copy-recursively (assoc-ref %build-inputs "source") target)
5086 #t))))
b8d8806b 5087 (home-page "https://www.ctan.org/pkg/overpic")
da38b235
RW
5088 (synopsis "Combine LaTeX commands over included graphics")
5089 (description
5090 "The @code{overpic} environment is a cross between the LaTeX
5091@code{picture} environment and the @code{\\includegraphics} command of
5092@code{graphicx}. The resulting picture environment has the same dimensions as
5093the included graphic. LaTeX commands can be placed on the graphic at defined
5094positions; a grid for orientation is available.")
5095 (license license:lppl1.0+)))
5096
e0d307d1
RW
5097(define-public texlive-latex-parskip
5098 (package
5099 (name "texlive-latex-parskip")
5100 (version (number->string %texlive-revision))
5101 (source (origin
5102 (method svn-fetch)
5103 (uri (svn-reference
5104 (url (string-append "svn://www.tug.org/texlive/tags/"
5105 %texlive-tag "/Master/texmf-dist/"
5106 "/tex/latex/parskip"))
5107 (revision %texlive-revision)))
5108 (file-name (string-append name "-" version "-checkout"))
5109 (sha256
5110 (base32
85892948 5111 "0j1fhm1m9k6rz80lmch3x44g20y9nm4abaaf8czb0q8hzwlx5aq5"))))
e0d307d1
RW
5112 (build-system trivial-build-system)
5113 (arguments
5114 `(#:modules ((guix build utils))
5115 #:builder
5116 (begin
5117 (use-modules (guix build utils))
5118 (let ((target (string-append (assoc-ref %outputs "out")
5119 "/share/texmf-dist/tex/latex/parskip")))
5120 (mkdir-p target)
5121 (copy-recursively (assoc-ref %build-inputs "source") target)
5122 #t))))
b8d8806b 5123 (home-page "https://www.ctan.org/pkg/parskip")
e0d307d1
RW
5124 (synopsis "Layout with zero \\parindent, non-zero \\parskip")
5125 (description
5126 "Simply changing @code{\\parskip} and @code{\\parindent} leaves a layout
5127that is untidy; this package (though it is no substitute for a properly
5128designed class) helps alleviate this untidiness.")
5129 (license license:lppl)))
5130
adc02c70
RW
5131(define-public texlive-latex-pdfpages
5132 (package
5133 (name "texlive-latex-pdfpages")
5134 (version (number->string %texlive-revision))
5135 (source (origin
5136 (method svn-fetch)
5137 (uri (texlive-ref "latex" "pdfpages"))
7372ce18 5138 (file-name (string-append name "-" version "-checkout"))
adc02c70
RW
5139 (sha256
5140 (base32
d4d9a1ec 5141 "0s4izcah7im67889qz4d26pcfpasmm35sj1rw4ragkkdk3rlbbbd"))))
adc02c70
RW
5142 (build-system texlive-build-system)
5143 (arguments '(#:tex-directory "latex/pdfpages"))
b8d8806b 5144 (home-page "https://www.ctan.org/pkg/pdfpages")
adc02c70
RW
5145 (synopsis "Include PDF documents in LaTeX")
5146 (description
5147 "This package simplifies the inclusion of external multi-page PDF
5148documents in LaTeX documents. Pages may be freely selected and it is possible
5149to put several logical pages onto each sheet of paper. Furthermore a lot of
5150hypertext features like hyperlinks and article threads are provided. The
5151package supports pdfTeX (pdfLaTeX) and VTeX. With VTeX it is even possible to
5152use this package to insert PostScript files, in addition to PDF files.")
5153 (license license:lppl1.3+)))
5154
d8fef6ea
RW
5155(define-public texlive-fonts-stmaryrd
5156 (package
5157 (name "texlive-fonts-stmaryrd")
5158 (version (number->string %texlive-revision))
5159 (source (origin
5160 (method svn-fetch)
5161 (uri (texlive-ref "fonts" "stmaryrd"))
19835372 5162 (file-name (string-append name "-" version "-checkout"))
d8fef6ea
RW
5163 (sha256
5164 (base32
5165 "08pn4ca3vl6qm9l3wm5h5iyjsrg411kkm1yana329xwg2j14s9n6"))))
5166 (build-system texlive-build-system)
5167 (arguments
5168 '(#:tex-directory "latex/stmaryrd"
5169 #:phases
5170 (modify-phases %standard-phases
5171 (add-after 'configure 'patch-ins
5172 (lambda _
5173 (substitute* "stmaryrd.ins"
5174 (("^%% LaTeX2e.*") "\\input docstrip\n")
5175 (("fontdef\\}\\}" line)
5176 (string-append line "\n\\endbatchfile")))
5177 #t)))))
b8d8806b 5178 (home-page "https://www.ctan.org/pkg/stmaryrd")
d8fef6ea
RW
5179 (synopsis "St Mary Road symbols for theoretical computer science")
5180 (description
5181 "The fonts were originally distributed as Metafont sources only, but
5182Adobe Type 1 versions are also now available. Macro support is provided for
5183use under LaTeX; the package supports the @code{only} option (provided by the
5184@code{somedefs} package) to restrict what is loaded, for those who don't need
5185the whole font.")
5186 (license license:lppl)))
5187
2db3a034
RW
5188(define-public texlive-latex-subfigure
5189 (package
5190 (name "texlive-latex-subfigure")
5191 (version (number->string %texlive-revision))
5192 (source (origin
5193 (method svn-fetch)
5194 (uri (texlive-ref "latex" "subfigure"))
e1834df6 5195 (file-name (string-append name "-" version "-checkout"))
2db3a034
RW
5196 (sha256
5197 (base32
5198 "15spcl5wb7w269qd6y596vp4yi8sa5ppcx8w4z2i9kyp02r3a0yb"))))
5199 (build-system texlive-build-system)
5200 (arguments '(#:tex-directory "latex/subfigure"))
b8d8806b 5201 (home-page "https://www.ctan.org/pkg/subfigure")
2db3a034
RW
5202 (synopsis "Figures divided into subfigures")
5203 (description
5204 "This (deprecated) package provides support for the manipulation and
5205reference of small or \"sub\" figures and tables within a single figure or
5206table environment. It is convenient to use this package when your subfigures
5207are to be separately captioned, referenced, or are to be included in the
5208List-of-Figures. A new @code{\\subfigure} command is introduced which can be
5209used inside a figure environment for each subfigure. An optional first
5210argument is used as the caption for that subfigure. The package is now
5211considered obsolete: it was superseded by @code{subfig}, but users may find
5212the more recent @code{subcaption} package more satisfactory.")
5213 (license license:lppl)))
5214
c73d0e9d
RW
5215(define-public texlive-latex-tabulary
5216 (package
5217 (name "texlive-latex-tabulary")
5218 (version (number->string %texlive-revision))
5219 (source (origin
5220 (method svn-fetch)
5221 (uri (texlive-ref "latex" "tabulary"))
5222 (file-name (string-append name "-" version "-checkout"))
5223 (sha256
5224 (base32
5225 "1adkdx2zkk42g82nqf57lv1nc1z7kwl13jmy8vpcsizsa0xdnx9n"))))
5226 (build-system texlive-build-system)
5227 (arguments '(#:tex-directory "latex/tabulary"))
b8d8806b 5228 (home-page "https://www.ctan.org/pkg/tabulary")
c73d0e9d
RW
5229 (synopsis "Tabular with variable width columns balanced")
5230 (description
5231 "The package defines a @code{tabular*}-like environment, @code{tabulary},
5232taking a \"total width\" argument as well as the column specifications. The
5233environment uses column types @code{L}, @code{C}, @code{R} and @code{J} for
5234variable width columns (@code{\\raggedright}, @code{\\centering},
5235@code{\\raggedleft}, and normally justified). In contrast to
5236@code{tabularx}'s @code{X} columns, the width of each column is weighted
5237according to the natural width of the widest cell in the column.")
5238 (license license:lppl)))
5239
e3088297
RW
5240(define-public texlive-latex-threeparttable
5241 (package
5242 (name "texlive-latex-threeparttable")
5243 (version (number->string %texlive-revision))
5244 (source (origin
5245 (method svn-fetch)
5246 (uri (svn-reference
5247 (url (string-append "svn://www.tug.org/texlive/tags/"
5248 %texlive-tag "/Master/texmf-dist/"
5249 "/tex/latex/threeparttable"))
5250 (revision %texlive-revision)))
d57e5d41 5251 (file-name (string-append name "-" version "-checkout"))
e3088297
RW
5252 (sha256
5253 (base32
5254 "10vy9k150w2lviw8h22s2mcykff38xci653m5823s2vv44pwbmzq"))))
5255 (build-system trivial-build-system)
5256 (arguments
5257 `(#:modules ((guix build utils))
5258 #:builder
5259 (begin
5260 (use-modules (guix build utils))
5261 (let ((target (string-append (assoc-ref %outputs "out")
5262 "/share/texmf-dist/tex/latex/threeparttable")))
5263 (mkdir-p target)
5264 (copy-recursively (assoc-ref %build-inputs "source") target)
5265 #t))))
b8d8806b 5266 (home-page "https://www.ctan.org/pkg/threeparttable")
e3088297
RW
5267 (synopsis "Tables with captions and notes all the same width")
5268 (description
5269 "This package facilitates tables with titles (captions) and notes. The
5270title and notes are given a width equal to the body of the table (a
5271@code{tabular} environment). By itself, a @code{threeparttable} does not
5272float, but you can put it in a @code{table} or a @code{table*} or some other
5273environment.")
5274 (license (license:fsf-free "file://threeparttable.sty"))))
5275
0901f1b0 5276(define-public texlive-txfonts
1b10d494 5277 (package
0901f1b0
RW
5278 (inherit (simple-texlive-package
5279 "texlive-txfonts"
5280 (list "/doc/fonts/txfonts/"
5281
5282 "/fonts/afm/public/txfonts/"
5283 "/fonts/tfm/public/txfonts/"
5284 "/fonts/type1/public/txfonts/"
5285 "/fonts/vf/public/txfonts/"
5286
5287 "/fonts/map/dvips/txfonts/"
5288 "/fonts/enc/dvips/txfonts/"
5289 "/tex/latex/txfonts/")
5290 (base32
5291 "017zjas5y1zlyq0iy4x6mv1qbz23xcy3y5xs0crj6zdnfvnccqgp")
5292 #:trivial? #t))
5293 (home-page "https://www.ctan.org/pkg/txfonts")
1b10d494
RW
5294 (synopsis "Times-like fonts in support of mathematics")
5295 (description
5296 "Txfonts supplies virtual text roman fonts using Adobe Times (or URW
5297NimbusRomNo9L) with some modified and additional text symbols in the OT1, T1,
5298and TS1 encodings; maths alphabets using Times/URW Nimbus; maths fonts
5299providing all the symbols of the Computer Modern and AMS fonts, including all
5300the Greek capital letters from CMR; and additional maths fonts of various
5301other symbols.
5302
5303The set is complemented by a sans-serif set of text fonts, based on
5304Helvetica/NimbusSanL, and a monospace set.
5305
5306All the fonts are in Type 1 format (AFM and PFB files), and are supported by
5307TeX metrics (VF and TFM files) and macros for use with LaTeX.")
5308 ;; Any version of the GPL with font exception.
5309 (license license:gpl3+)))
5310
0901f1b0
RW
5311(define-public texlive-fonts-txfonts
5312 (deprecated-package "texlive-fonts-txfonts" texlive-txfonts))
5313
f9e0fcb2
RW
5314(define-public texlive-fonts-iwona
5315 (package
5316 (name "texlive-fonts-iwona")
5317 (version "0.995b")
5318 (source (origin
5319 (method url-fetch)
5320 (uri (string-append "http://jmn.pl/pliki/Iwona-tex-"
5321 (string-map (lambda (c)
5322 (if (char=? c #\.)
5323 #\_ c))
5324 version)
5325 ".zip"))
5326 (sha256
5327 (base32
5328 "13684iqx5granpc5rfvqnmyvdpgpbr1x9y7i7y7bcaq0qxv7ph1x"))))
5329 (build-system trivial-build-system)
5330 (arguments
5331 `(#:modules ((guix build utils))
5332 #:builder
5333 (begin
5334 (use-modules (guix build utils))
5335 (let ((target (string-append (assoc-ref %outputs "out")
5336 "/share/texmf-dist/"))
5337 (unzip (string-append (assoc-ref %build-inputs "unzip")
5338 "/bin/unzip")))
e3cfef22 5339 (invoke unzip (assoc-ref %build-inputs "source"))
f9e0fcb2 5340 (mkdir-p target)
e3cfef22
MW
5341 (copy-recursively "iwona" target)
5342 #t))))
f9e0fcb2
RW
5343 (native-inputs
5344 `(("unzip" ,unzip)))
5345 (home-page "http://jmn.pl/en/kurier-i-iwona/")
5346 (synopsis "Sans-serif typeface for TeX")
5347 (description "Iwona is a two-element sans-serif typeface. It was created
5348as an alternative version of the Kurier typeface, which was designed in 1975
5349for a diploma in typeface design at the Warsaw Academy of Fine Arts under the
5350supervision of Roman Tomaszewski. Kurier was designed for linotype
f1a46c90 5351typesetting of newspapers and similar periodicals. The Iwona fonts are an
f9e0fcb2
RW
5352alternative version of the Kurier fonts. The difference lies in the absence
5353of ink traps which typify the Kurier font.")
5354 (license license:gfl1.0)))
5355
acc620d6
RW
5356(define-public texlive-latex-titlesec
5357 (package
5358 (name "texlive-latex-titlesec")
5359 (version (number->string %texlive-revision))
5360 (source (origin
5361 (method svn-fetch)
5362 (uri (svn-reference
5363 (url (string-append "svn://www.tug.org/texlive/tags/"
5364 %texlive-tag "/Master/texmf-dist/"
5365 "/tex/latex/titlesec"))
5366 (revision %texlive-revision)))
0475e35c 5367 (file-name (string-append name "-" version "-checkout"))
acc620d6
RW
5368 (sha256
5369 (base32
5370 "04nmkhqx6jxcxx9a30zbcd5smxi5fd0cbp132bki7fnvhspnhg21"))))
5371 (build-system trivial-build-system)
5372 (arguments
5373 `(#:modules ((guix build utils))
5374 #:builder
5375 (begin
5376 (use-modules (guix build utils))
5377 (let ((target (string-append (assoc-ref %outputs "out")
5378 "/share/texmf-dist/tex/latex/titlesec")))
5379 (mkdir-p target)
5380 (copy-recursively (assoc-ref %build-inputs "source") target)
5381 #t))))
b8d8806b 5382 (home-page "https://www.ctan.org/pkg/titlesec")
acc620d6
RW
5383 (synopsis "Select alternative section titles")
5384 (description
5385 "This package provides an interface to sectioning commands for selection
5386from various title styles, e.g. for marginal titles and to change the font of
5387all headings with a single command, also providing simple one-step page
5388styles. It also includes a package to change the page styles when there are
5389floats in a page. You may assign headers/footers to individual floats, too.")
5390 (license license:lppl)))
5391
274e3d4f
RW
5392(define-public texlive-latex-type1cm
5393 (package
5394 (name "texlive-latex-type1cm")
5395 (version (number->string %texlive-revision))
5396 (source (origin
5397 (method svn-fetch)
5398 (uri (texlive-ref "latex" "type1cm"))
5399 (file-name (string-append name "-" version "-checkout"))
5400 (sha256
5401 (base32
5402 "1lvxrqfwcwa4p31zyfm80gr05v8c28xybv5ri79zi2ngz6834z12"))))
5403 (build-system texlive-build-system)
5404 (arguments '(#:tex-directory "latex/type1cm"))
b8d8806b 5405 (home-page "https://www.ctan.org/pkg/type1cm")
274e3d4f
RW
5406 (synopsis "Arbitrary size font selection in LaTeX")
5407 (description
5408 "LaTeX, by default, restricts the sizes at which you can use its default
5409computer modern fonts, to a fixed set of discrete sizes (effectively, a set
5410specified by Knuth). The @code{type1cm} package removes this restriction;
5411this is particularly useful when using scalable versions of the CM
5412fonts (Bakoma, or the versions from BSR/Y&Y, or True Type versions from Kinch,
5413PCTeX, etc.). In fact, since modern distributions will automatically generate
5414any bitmap font you might need, @code{type1cm} has wider application than just
36a17f05 5415those using scalable versions of the fonts. Note that the LaTeX distribution
274e3d4f
RW
5416now contains a package @code{fix-cm},f which performs the task of
5417@code{type1cm}, as well as doing the same job for T1- and TS1-encoded
5418@code{ec} fonts.")
5419 (license license:lppl)))
5420
406af0d6
RW
5421(define-public texlive-latex-lh
5422 (package
5423 (name "texlive-latex-lh")
5424 (version (number->string %texlive-revision))
5425 (source (origin
5426 (method svn-fetch)
5427 (uri (texlive-ref "latex" "lh"))
de20fd6a 5428 (file-name (string-append name "-" version "-checkout"))
406af0d6
RW
5429 (sha256
5430 (base32
5431 "00gdiwh3sfhh1iimjhpja7lm7k4vzqzql2irgwnpz94qvh25zwi5"))))
5432 (build-system texlive-build-system)
5433 (arguments '(#:tex-directory "latex/lh"))
b8d8806b 5434 (home-page "https://www.ctan.org/pkg/lh")
406af0d6
RW
5435 (synopsis "Cyrillic fonts that support LaTeX standard encodings")
5436 (description
5437 "The LH fonts address the problem of the wide variety of alphabets that
5438are written with Cyrillic-style characters. The fonts are the original basis
5439of the set of T2* and X2 encodings that are now used when LaTeX users need to
5440write in Cyrillic languages. Macro support in standard LaTeX encodings is
5441offered through the latex-cyrillic and t2 bundles, and the package itself
5442offers support for other (more traditional) encodings. The fonts, in the
5443standard T2* and X2 encodings are available in Adobe Type 1 format, in the
5444CM-Super family of fonts. The package also offers its own LaTeX support for
5445OT2 encoded fonts, CM bright shaped fonts and Concrete shaped fonts.")
5446 (license license:lppl)))
5447
44436def
RW
5448(define-public texlive-metapost
5449 (package
5450 (name "texlive-metapost")
5451 (version (number->string %texlive-revision))
5452 (source (origin
5453 (method svn-fetch)
5454 (uri (svn-reference
5455 (url (string-append "svn://www.tug.org/texlive/tags/"
5456 %texlive-tag "/Master/texmf-dist/"
5457 "/metapost"))
5458 (revision %texlive-revision)))
b4bb2750 5459 (file-name (string-append name "-" version "-checkout"))
44436def
RW
5460 (sha256
5461 (base32
85892948 5462 "1xyd57c8z1xi0kbqpbad61flcazz68i9ssxrag0gjvci3irxi8xh"))))
44436def
RW
5463 (build-system trivial-build-system)
5464 (arguments
5465 `(#:modules ((guix build utils))
5466 #:builder
5467 (begin
5468 (use-modules (guix build utils))
5469 (let ((target (string-append (assoc-ref %outputs "out")
5470 "/share/texmf-dist/metapost")))
5471 (mkdir-p target)
5472 (copy-recursively (assoc-ref %build-inputs "source") target)
5473 #t))))
b8d8806b 5474 (home-page "https://www.ctan.org/pkg/metapost")
44436def
RW
5475 (synopsis "Create scalable illustrations")
5476 (description
5477 "MetaPost uses a language based on that of Metafont to produce precise
5478technical illustrations. Its output is scalable PostScript or SVG, rather
5479than the bitmaps Metafont creates.")
5480 (license license:lppl)))
5481
9ff7161a
LC
5482(define-public texlive-latex-acmart
5483 (package
5484 (name "texlive-latex-acmart")
ff281acc 5485 (version "1.60")
9ff7161a
LC
5486 (source (origin
5487 (method svn-fetch)
5488 (uri (texlive-ref "latex" "acmart"))
5489 (sha256
5490 (base32
85892948 5491 "18rl67p2zhngskisnhv78mksv8q8q658l6igkswzswldixmkpphq"))
9ff7161a
LC
5492 (file-name (string-append name "-" version "-checkout"))))
5493 (build-system texlive-build-system)
5494 (arguments '(#:tex-directory "latex/acmart"))
b8d8806b 5495 (home-page "https://www.ctan.org/pkg/acmart")
9ff7161a
LC
5496 (synopsis "Class for typesetting publications of ACM")
5497 (description
5498 "This package provides a class for typesetting publications of the
5499Association for Computing Machinery (ACM).")
5500 (license license:lppl1.3+)))
5501
3966ebbb
RW
5502(define-public texlive-latex-varwidth
5503 (package
5504 (name "texlive-latex-varwidth")
5505 (version (number->string %texlive-revision))
5506 (source (origin
5507 (method svn-fetch)
5508 (uri (svn-reference
5509 (url (string-append "svn://www.tug.org/texlive/tags/"
5510 %texlive-tag "/Master/texmf-dist/"
5511 "/tex/latex/varwidth"))
5512 (revision %texlive-revision)))
5513 (file-name (string-append name "-" version "-checkout"))
5514 (sha256
5515 (base32
5516 "1bmz9ap0ffyg7qry2xi7lki06qx4809w028xvk88cl66h7p46g52"))))
5517 (build-system trivial-build-system)
5518 (arguments
5519 `(#:modules ((guix build utils))
5520 #:builder
5521 (begin
5522 (use-modules (guix build utils))
5523 (let ((target (string-append (assoc-ref %outputs "out")
5524 "/share/texmf-dist/tex/latex/varwidth")))
5525 (mkdir-p target)
5526 (copy-recursively (assoc-ref %build-inputs "source") target)
5527 #t))))
b8d8806b 5528 (home-page "https://www.ctan.org/pkg/varwidth")
3966ebbb
RW
5529 (synopsis "Variable-width minipage")
5530 (description
5531 "The @code{varwidth} environment is superficially similar to
5532@code{minipage}, but the specified width is just a maximum value — the box may
5533get a narrower “natural” width.")
5534 (license license:lppl)))
5535
cd2c77f4
RW
5536(define-public texlive-latex-wasysym
5537 (package
5538 (name "texlive-latex-wasysym")
5539 (version (number->string %texlive-revision))
5540 (source (origin
5541 (method svn-fetch)
5542 (uri (texlive-ref "latex" "wasysym"))
2cc9c011 5543 (file-name (string-append name "-" version "-checkout"))
cd2c77f4
RW
5544 (sha256
5545 (base32
5546 "1sgwbfwjjf70g54hh93gsd9jp9nm67w6n74x9d72a56n07jbk5hv"))))
5547 (build-system texlive-build-system)
5548 (arguments '(#:tex-directory "latex/wasysym"))
b8d8806b 5549 (home-page "https://www.ctan.org/pkg/wasysym")
cd2c77f4
RW
5550 (synopsis "LaTeX support file to use the WASY2 fonts")
5551 (description
5552 "The wasy2WASY2 (Waldi Symbol) font by Roland Waldi provides many glyphs
5553like male and female symbols and astronomical symbols, as well as the complete
5554lasy font set and other odds and ends. The wasysym package implements an easy
5555to use interface for these symbols.")
5556 (license license:lppl)))
5557
63ed869b
RW
5558(define-public texlive-latex-wrapfig
5559 (package
5560 (name "texlive-latex-wrapfig")
5561 (version (number->string %texlive-revision))
5562 (source (origin
5563 (method svn-fetch)
5564 (uri (svn-reference
5565 (url (string-append "svn://www.tug.org/texlive/tags/"
5566 %texlive-tag "/Master/texmf-dist/"
5567 "/tex/latex/wrapfig"))
5568 (revision %texlive-revision)))
5569 (file-name (string-append name "-" version "-checkout"))
5570 (sha256
5571 (base32
5572 "16xpyl0csmmwndz1xhzqfg9l0zcsnqxslsixsqkwd4zsvfj30sv4"))))
5573 (build-system trivial-build-system)
5574 (arguments
5575 `(#:modules ((guix build utils))
5576 #:builder
5577 (begin
5578 (use-modules (guix build utils))
5579 (let ((target (string-append (assoc-ref %outputs "out")
5580 "/share/texmf-dist/tex/latex/wrapfig")))
5581 (mkdir-p target)
5582 (copy-recursively (assoc-ref %build-inputs "source") target)
5583 #t))))
b8d8806b 5584 (home-page "https://www.ctan.org/pkg/wrapfig")
63ed869b
RW
5585 (synopsis "Produces figures which text can flow around")
5586 (description
5587 "This package allows figures or tables to have text wrapped around them.
5588It does not work in combination with list environments, but can be used in a
5589@code{parbox} or @code{minipage}, and in two-column format.")
5590 (license license:lppl)))
5591
c178ffca
RW
5592(define-public texlive-latex-ucs
5593 (package
5594 (name "texlive-latex-ucs")
5595 (version (number->string %texlive-revision))
5596 (source (origin
5597 (method svn-fetch)
5598 (uri (svn-reference
5599 (url (string-append "svn://www.tug.org/texlive/tags/"
5600 %texlive-tag "/Master/texmf-dist/"
5601 "/tex/latex/ucs"))
5602 (revision %texlive-revision)))
5603 (file-name (string-append name "-" version "-checkout"))
5604 (sha256
5605 (base32
5606 "0rrxwi60wmz5dfjifl4fwk66plf7wix85qnhfv4ylvmj6qi6hw37"))))
5607 (build-system trivial-build-system)
5608 (arguments
5609 `(#:modules ((guix build utils))
5610 #:builder
5611 (begin
5612 (use-modules (guix build utils))
5613 (let ((target (string-append (assoc-ref %outputs "out")
5614 "/share/texmf-dist/tex/latex/ucs")))
5615 (mkdir-p target)
5616 (copy-recursively (assoc-ref %build-inputs "source") target)
5617 #t))))
b8d8806b 5618 (home-page "https://www.ctan.org/pkg/ucs")
c178ffca
RW
5619 (synopsis "Extended UTF-8 input encoding support for LaTeX")
5620 (description
5621 "The bundle provides the @code{ucs} package, and @code{utf8x.def},
5622together with a large number of support files. The @code{utf8x.def}
5623definition file for use with @code{inputenc} covers a wider range of Unicode
5624characters than does @code{utf8.def} in the LaTeX distribution. The package
5625provides facilities for efficient use of its large sets of Unicode characters.
5626Glyph production may be controlled by various options, which permits use of
5627non-ASCII characters when coding mathematical formulae. Note that the bundle
5628previously had an alias “unicode”; that alias has now been withdrawn, and no
5629package of that name now exists.")
5630 (license license:lppl1.3+)))
5631
86af0f2a
RW
5632(define-public texlive-latex-preview
5633 (package
5634 (name "texlive-latex-preview")
5635 (version (number->string %texlive-revision))
5636 (source (origin
5637 (method svn-fetch)
5638 (uri (texlive-ref "latex" "preview"))
5639 (file-name (string-append name "-" version "-checkout"))
5640 (sha256
5641 (base32
d4d9a1ec 5642 "1hpsk4yp08qvbl43kqiv0hhwxv3gcqqxcpahyv6ch2b38pbj4bh6"))))
86af0f2a
RW
5643 (build-system texlive-build-system)
5644 (arguments
5645 '(#:tex-directory "latex/preview"
5646 #:phases
5647 (modify-phases %standard-phases
5648 (add-after 'unpack 'remove-generated-file
5649 (lambda _
5650 (delete-file "preview.drv")
5651 #t)))))
b8d8806b 5652 (home-page "https://www.ctan.org/pkg/preview")
86af0f2a
RW
5653 (synopsis "Extract bits of a LaTeX source for output")
5654 (description
5655 "The main purpose of the preview package is the extraction of selected
5656elements from a LaTeX source, like formulas or graphics, into separate
5657pages of a DVI file. A flexible and convenient interface allows it to
5658specify what commands and constructs should be extracted. This works
5659with DVI files postprocessed by either Dvips and Ghostscript or
5660dvipng, but it also works when you are using PDFTeX for generating PDF
5661files.")
5662 (license license:gpl3+)))
5663
87b4360e
RW
5664(define-public texlive-latex-acronym
5665 (package
5666 (name "texlive-latex-acronym")
5667 (version (number->string %texlive-revision))
5668 (source (origin
5669 (method svn-fetch)
5670 (uri (texlive-ref "latex" "acronym"))
5671 (file-name (string-append name "-" version "-checkout"))
5672 (sha256
5673 (base32
5674 "0jmasg40bk53zdd2jc8nc18jvdai3p2wmamy7hwli8gls4nf25qp"))))
5675 (build-system texlive-build-system)
5676 (arguments '(#:tex-directory "latex/acronym"))
b8d8806b 5677 (home-page "https://www.ctan.org/pkg/acronym")
87b4360e
RW
5678 (synopsis "Expand acronyms at least once")
5679 (description
5680 "This package ensures that all acronyms used in the text are spelled out
5681in full at least once. It also provides an environment to build a list of
5682acronyms used. The package is compatible with PDF bookmarks. The package
5683requires the suffix package, which in turn requires that it runs under
5684e-TeX.")
5685 (license license:lppl1.3+)))
5686
fedb80ee
RW
5687(define-public texlive-generic-pdftex
5688 (package
5689 (name "texlive-generic-pdftex")
5690 (version (number->string %texlive-revision))
5691 (source (origin
5692 (method svn-fetch)
5693 (uri (svn-reference
5694 (url (string-append "svn://www.tug.org/texlive/tags/"
5695 %texlive-tag "/Master/texmf-dist/"
5696 "/tex/generic/pdftex"))
5697 (revision %texlive-revision)))
66e765a0 5698 (file-name (string-append name "-" version "-checkout"))
fedb80ee
RW
5699 (sha256
5700 (base32
5701 "0k68zmqzs4qvrqxdwsrawbjb14hxqjfamq649azvai0jjxdpkljd"))))
5702 (build-system trivial-build-system)
5703 (arguments
5704 `(#:modules ((guix build utils))
5705 #:builder
5706 (begin
5707 (use-modules (guix build utils))
5708 (let ((target (string-append (assoc-ref %outputs "out")
7002a45d
PN
5709 "/share/texmf-dist/tex/generic/pdftex"))
5710 (target-map (string-append (assoc-ref %outputs "out")
5711 "/share/texmf-dist/fonts/map/pdftex")))
fedb80ee
RW
5712 (mkdir-p target)
5713 (copy-recursively (assoc-ref %build-inputs "source") target)
7002a45d
PN
5714 (mkdir-p target-map)
5715 (copy-recursively (assoc-ref %build-inputs "pdftex-map") target-map)
fedb80ee 5716 #t))))
7002a45d
PN
5717 (native-inputs
5718 `(("pdftex-map"
5719 ,(origin
5720 (method svn-fetch)
5721 (uri (svn-reference
5722 (url (string-append "svn://www.tug.org/texlive/tags/"
5723 %texlive-tag "/Master/texmf-dist/"
5724 "/fonts/map/pdftex"))
5725 (revision %texlive-revision)))
5726 (file-name (string-append name "-map-" version "-checkout"))
5727 (sha256
5728 (base32
85892948 5729 "03rfif2631pgd8g1ar4xblcdh078kky7fvw3kfsj5a47rxxgicp2"))))))
b8d8806b 5730 (home-page "https://www.ctan.org/pkg/pdftex")
fedb80ee
RW
5731 (synopsis "TeX extension for direct creation of PDF")
5732 (description
5733 "This package provides an extension of TeX which can be configured to
5734directly generate PDF documents instead of DVI.")
5735 (license license:gpl2+)))
5736
8bcdc23f 5737(define texlive-texmf
0aa34e82
AE
5738 (package
5739 (name "texlive-texmf")
85892948 5740 (version "20190410")
0aa34e82
AE
5741 (source texlive-texmf-src)
5742 (build-system gnu-build-system)
5743 (inputs
5744 `(("texlive-bin" ,texlive-bin)
5745 ("lua" ,lua)
5746 ("perl" ,perl)
5747 ("python" ,python-2) ; incompatible with Python 3 (print syntax)
5748 ("ruby" ,ruby)
5749 ("tcsh" ,tcsh)))
5750 (arguments
5751 `(#:modules ((guix build gnu-build-system)
5752 (guix build utils)
5753 (srfi srfi-26))
a348af40
LC
5754
5755 ;; This package takes 4 GiB, which we can't afford to distribute from
5756 ;; our servers.
5757 #:substitutable? #f
5758
0aa34e82 5759 #:phases
4a6635f3
AE
5760 (modify-phases (map (cut assq <> %standard-phases)
5761 '(set-paths unpack patch-source-shebangs))
977403fe
RW
5762 (add-after 'unpack 'unset-environment-variables
5763 (lambda _
5764 (unsetenv "TEXMF")
5765 (unsetenv "TEXMFCNF")
5766 #t))
4a6635f3
AE
5767 (add-after 'patch-source-shebangs 'install
5768 (lambda* (#:key outputs #:allow-other-keys)
5769 (let ((share (string-append (assoc-ref outputs "out") "/share")))
5770 (mkdir-p share)
286eedec 5771 (invoke "mv" "texmf-dist" share))))
4a6635f3
AE
5772 (add-after 'install 'texmf-config
5773 (lambda* (#:key inputs outputs #:allow-other-keys)
5774 (let* ((out (assoc-ref outputs "out"))
5775 (share (string-append out "/share"))
5776 (texmfroot (string-append share "/texmf-dist/web2c"))
5777 (texmfcnf (string-append texmfroot "/texmf.cnf"))
5778 (texlive-bin (assoc-ref inputs "texlive-bin"))
5779 (texbin (string-append texlive-bin "/bin"))
5780 (tlpkg (string-append texlive-bin "/share/tlpkg")))
5781 ;; Register SHARE as TEXMFROOT in texmf.cnf.
5782 (substitute* texmfcnf
5783 (("TEXMFROOT = \\$SELFAUTOPARENT")
2d634d9b
FB
5784 (string-append "TEXMFROOT = " share))
5785 (("TEXMFLOCAL = \\$SELFAUTOGRANDPARENT/texmf-local")
5786 "TEXMFLOCAL = $SELFAUTODIR/share/texmf-local")
5787 (("!!\\$TEXMFLOCAL") "$TEXMFLOCAL"))
4a6635f3
AE
5788 ;; Register paths in texmfcnf.lua, needed for context.
5789 (substitute* (string-append texmfroot "/texmfcnf.lua")
5790 (("selfautodir:") out)
5791 (("selfautoparent:") (string-append share "/")))
5792 ;; Set path to TeXLive Perl modules
5793 (setenv "PERL5LIB"
5794 (string-append (getenv "PERL5LIB") ":" tlpkg))
5795 ;; Configure the texmf-dist tree; inspired from
5796 ;; http://slackbuilds.org/repository/13.37/office/texlive/
5797 (setenv "PATH" (string-append (getenv "PATH") ":" texbin))
5798 (setenv "TEXMFCNF" texmfroot)
286eedec
MW
5799 (invoke "updmap-sys" "--nohash" "--syncwithtrees")
5800 (invoke "mktexlsr")
0371132c 5801 (invoke "fmtutil-sys" "--all")))))))
7a15a68f 5802 (properties `((max-silent-time . 9600))) ; don't time out while grafting
0aa34e82 5803 (synopsis "TeX Live, a package of the TeX typesetting system")
eb0119ef
AE
5804 (description
5805 "TeX Live provides a comprehensive TeX document production system.
5806It includes all the major TeX-related programs, macro packages, and fonts
5807that are free software, including support for many languages around the
0aa34e82
AE
5808world.
5809
5810This package contains the complete tree of texmf-dist data.")
132e14b4
EF
5811 (license (license:fsf-free "https://www.tug.org/texlive/copying.html"))
5812 (home-page "https://www.tug.org/texlive/")))
0aa34e82
AE
5813
5814(define-public texlive
5815 (package
5816 (name "texlive")
85892948 5817 (version "20190410")
0aa34e82
AE
5818 (source #f)
5819 (build-system trivial-build-system)
5820 (inputs `(("bash" ,bash) ; for wrap-program
5821 ("texlive-bin" ,texlive-bin)
5822 ("texlive-texmf" ,texlive-texmf)))
2d634d9b
FB
5823 (native-search-paths
5824 (list (search-path-specification
5825 (variable "TEXMFLOCAL")
5826 (files '("share/texmf-local")))))
0aa34e82
AE
5827 (arguments
5828 `(#:modules ((guix build utils))
5829 #:builder
5830 ;; Build the union of texlive-bin and texlive-texmf, but take the
5831 ;; conflicting subdirectory share/texmf-dist from texlive-texmf.
5832 (begin
5833 (use-modules (guix build utils))
5834 (let ((out (assoc-ref %outputs "out"))
5835 (bin (assoc-ref %build-inputs "texlive-bin"))
5836 (texmf (assoc-ref %build-inputs "texlive-texmf"))
5837 (bash (assoc-ref %build-inputs "bash")))
5838 (mkdir out)
5839 (with-directory-excursion out
5840 (for-each
5841 (lambda (name)
5842 (symlink (string-append bin "/" name) name))
5843 '("include" "lib"))
5844 (mkdir "bin")
5845 (with-directory-excursion "bin"
5846 (setenv "PATH" (string-append bash "/bin"))
5847 (for-each
5848 (lambda (name)
5849 (symlink name (basename name))
5850 (wrap-program
5851 (basename name)
5852 `("TEXMFCNF" =
5853 (,(string-append texmf "/share/texmf-dist/web2c")))))
5854 (find-files (string-append bin "/bin/") "")))
5855 (mkdir "share")
5856 (with-directory-excursion "share"
5857 (for-each
5858 (lambda (name)
5859 (symlink (string-append bin "/share/" name) name))
5860 '("info" "man" "tlpkg"))
5861 (for-each
5862 (lambda (name)
5863 (symlink (string-append texmf "/share/" name) name))
e3cfef22
MW
5864 '("texmf-dist" "texmf-var"))))
5865 #t))))
0aa34e82
AE
5866 (synopsis "TeX Live, a package of the TeX typesetting system")
5867 (description
5868 "TeX Live provides a comprehensive TeX document production system.
5869It includes all the major TeX-related programs, macro packages, and fonts
5870that are free software, including support for many languages around the
5871world.
5872
5873This package contains the complete TeX Live distribution.")
132e14b4
EF
5874 (license (license:fsf-free "https://www.tug.org/texlive/copying.html"))
5875 (home-page "https://www.tug.org/texlive/")))
231eae53 5876
ebcf74da
RW
5877(define-public perl-text-bibtex
5878 (package
5879 (name "perl-text-bibtex")
a2460e0f 5880 (version "0.85")
ebcf74da
RW
5881 (source
5882 (origin
5883 (method url-fetch)
5884 (uri (string-append "mirror://cpan/authors/id/A/AM/AMBS/Text-BibTeX-"
5885 version ".tar.gz"))
5886 (sha256
5887 (base32
a2460e0f 5888 "036kxgbn1jf70pfm2lmjlzjwnhbkd888fp5lyvmkjpdd15gla18h"))))
ebcf74da
RW
5889 (build-system perl-build-system)
5890 (arguments
5891 `(#:phases
5892 (modify-phases %standard-phases
5893 (add-after 'unpack 'add-output-directory-to-rpath
5894 (lambda* (#:key outputs #:allow-other-keys)
5895 (substitute* "inc/MyBuilder.pm"
5896 (("-Lbtparse" line)
5897 (string-append "-Wl,-rpath="
5898 (assoc-ref outputs "out") "/lib " line)))
5899 #t))
5900 (add-after 'unpack 'install-libraries-to-/lib
5901 (lambda* (#:key outputs #:allow-other-keys)
5902 (substitute* "Build.PL"
5903 (("lib64") "lib"))
5904 #t)))))
5905 (native-inputs
5906 `(("perl-capture-tiny" ,perl-capture-tiny)
5907 ("perl-config-autoconf" ,perl-config-autoconf)
5908 ("perl-extutils-libbuilder" ,perl-extutils-libbuilder)
5909 ("perl-module-build" ,perl-module-build)))
9aba9b12 5910 (home-page "https://metacpan.org/release/Text-BibTeX")
ebcf74da
RW
5911 (synopsis "Interface to read and parse BibTeX files")
5912 (description "@code{Text::BibTeX} is a Perl library for reading, parsing,
5913and processing BibTeX files. @code{Text::BibTeX} gives you access to the data
5914at many different levels: you may work with BibTeX entries as simple field to
5915string mappings, or get at the original form of the data as a list of simple
5916values (strings, macros, or numbers) pasted together.")
2f3108ad 5917 (license license:perl-license)))
ebcf74da 5918
d4000680
RW
5919(define-public biber
5920 (package
912be8ec
LC
5921 ;; Note: When updating Biber, make sure it matches our BibLaTeX version by
5922 ;; checking the Biber/BibLaTeX compatibility matrix in the BibLaTeX manual
5923 ;; at <https://ctan.org/pkg/biblatex>.
1335167a 5924 (name "biber")
912be8ec 5925 (version "2.12")
d4000680 5926 (source (origin
41a01087
JL
5927 (method git-fetch)
5928 (uri (git-reference
5929 (url "https://github.com/plk/biber/")
5930 (commit (string-append "v" version))))
5931 (file-name (git-file-name name version))
5932 ;; TODO: Patch awaiting inclusion upstream (see:
5933 ;; https://github.com/plk/biber/issues/239).
122b3cd6
LC
5934 (patches (search-patches "biber-fix-encoding-write.patch"
5935 "biber-sortinithash.patch"))
d4000680
RW
5936 (sha256
5937 (base32
912be8ec 5938 "1g1hi6zvf2hmrjly1sidjaxy5440gfqm4p7p3n7kayshnjsmlskx"))))
d4000680
RW
5939 (build-system perl-build-system)
5940 (arguments
5941 `(#:phases
5942 (modify-phases %standard-phases
5943 (add-after 'install 'wrap-programs
5944 (lambda* (#:key outputs #:allow-other-keys)
5945 (let* ((out (assoc-ref outputs "out"))
5946 (perl5lib (getenv "PERL5LIB")))
5947 (wrap-program (string-append out "/bin/biber")
5948 `("PERL5LIB" ":" prefix
5949 (,(string-append perl5lib ":" out
5950 "/lib/perl5/site_perl")))))
5951 #t)))))
5952 (inputs
5953 `(("perl-autovivification" ,perl-autovivification)
5954 ("perl-class-accessor" ,perl-class-accessor)
5955 ("perl-data-dump" ,perl-data-dump)
5956 ("perl-data-compare" ,perl-data-compare)
5957 ("perl-data-uniqid" ,perl-data-uniqid)
5958 ("perl-datetime-format-builder" ,perl-datetime-format-builder)
5959 ("perl-datetime-calendar-julian" ,perl-datetime-calendar-julian)
41a01087 5960 ("perl-file-slurper" ,perl-file-slurper)
d4000680
RW
5961 ("perl-ipc-cmd" ,perl-ipc-cmd)
5962 ("perl-ipc-run3" ,perl-ipc-run3)
5963 ("perl-list-allutils" ,perl-list-allutils)
5964 ("perl-list-moreutils" ,perl-list-moreutils)
5965 ("perl-mozilla-ca" ,perl-mozilla-ca)
5966 ("perl-regexp-common" ,perl-regexp-common)
5967 ("perl-log-log4perl" ,perl-log-log4perl)
5968 ;; We cannot use perl-unicode-collate here, because otherwise the
5969 ;; hardcoded hashes in the tests would differ. See
5970 ;; https://mail-archive.com/debian-bugs-dist@lists.debian.org/msg1469249.html
5971 ;;("perl-unicode-collate" ,perl-unicode-collate)
5972 ("perl-unicode-normalize" ,perl-unicode-normalize)
5973 ("perl-unicode-linebreak" ,perl-unicode-linebreak)
5974 ("perl-encode-eucjpascii" ,perl-encode-eucjpascii)
5975 ("perl-encode-jis2k" ,perl-encode-jis2k)
5976 ("perl-encode-hanextra" ,perl-encode-hanextra)
5977 ("perl-xml-libxml" ,perl-xml-libxml)
5978 ("perl-xml-libxml-simple" ,perl-xml-libxml-simple)
5979 ("perl-xml-libxslt" ,perl-xml-libxslt)
5980 ("perl-xml-writer" ,perl-xml-writer)
5981 ("perl-sort-key" ,perl-sort-key)
5982 ("perl-text-csv" ,perl-text-csv)
5983 ("perl-text-csv-xs" ,perl-text-csv-xs)
5984 ("perl-text-roman" ,perl-text-roman)
5985 ("perl-uri" ,perl-uri)
5986 ("perl-text-bibtex" ,perl-text-bibtex)
5987 ("perl-libwww" ,perl-libwww)
5988 ("perl-lwp-protocol-https" ,perl-lwp-protocol-https)
5989 ("perl-business-isbn" ,perl-business-isbn)
5990 ("perl-business-issn" ,perl-business-issn)
5991 ("perl-business-ismn" ,perl-business-ismn)
5992 ("perl-lingua-translit" ,perl-lingua-translit)))
5993 (native-inputs
5994 `(("perl-config-autoconf" ,perl-config-autoconf)
5995 ("perl-extutils-libbuilder" ,perl-extutils-libbuilder)
5996 ("perl-module-build" ,perl-module-build)
5997 ;; for tests
5998 ("perl-file-which" ,perl-file-which)
5999 ("perl-test-more" ,perl-test-most) ; FIXME: "more" would be sufficient
6000 ("perl-test-differences" ,perl-test-differences)))
6001 (home-page "http://biblatex-biber.sourceforge.net/")
6002 (synopsis "Backend for the BibLaTeX citation management tool")
6003 (description "Biber is a BibTeX replacement for users of biblatex. Among
6004other things it comes with full Unicode support.")
6005 (license license:artistic2.0)))
6006
231eae53
LC
6007(define-public rubber
6008 (package
6009 (name "rubber")
3d067528 6010 (version "1.5.1")
231eae53 6011 (source (origin
3d067528
AI
6012 (method url-fetch)
6013 (uri (list (string-append "https://launchpad.net/rubber/trunk/"
6014 version "/+download/rubber-"
6015 version ".tar.gz")
6016 (string-append "http://ebeffara.free.fr/pub/rubber-"
6017 version ".tar.gz")))
6018 (sha256
6019 (base32
6020 "178dmrp0mza5gqjiqgk6dqs0c10s0c517pk6k9pjbam86vf47a1p"))))
6021 (build-system python-build-system)
6022 (arguments
6023 '(#:tests? #f ; no `check' target
6024 #:phases
6025 (modify-phases %standard-phases
6026 (delete 'build)
6027 (replace 'install
6028 (lambda* (#:key outputs #:allow-other-keys)
6029 ;; texlive is required to build the PDF documentation; do not
6030 ;; build it.
6031 (invoke "python" "setup.py" "build" "--pdf=False" "install"
6032 (string-append "--prefix=" (assoc-ref outputs "out"))))))))
5a46779e 6033 (native-inputs `(("texinfo" ,texinfo)))
231eae53 6034 (home-page "https://launchpad.net/rubber")
35b9e423 6035 (synopsis "Wrapper for LaTeX and friends")
231eae53
LC
6036 (description
6037 "Rubber is a program whose purpose is to handle all tasks related to the
6038compilation of LaTeX documents. This includes compiling the document itself,
6039of course, enough times so that all references are defined, and running BibTeX
6040to manage bibliographic references. Automatic execution of dvips to produce
6041PostScript documents is also included, as well as usage of pdfLaTeX to produce
6042PDF documents.")
6043 (license license:gpl2+)))
4791876c
RJ
6044
6045(define-public texmaker
6046 (package
6047 (name "texmaker")
585be42f 6048 (version "5.0.3")
4791876c
RJ
6049 (source (origin
6050 (method url-fetch)
6051 (uri (string-append "http://www.xm1math.net/texmaker/texmaker-"
6052 version ".tar.bz2"))
6053 (sha256
6054 (base32
585be42f 6055 "0vrj9w5lk3vf6138n5bz8phmy3xp5kv4dq1rgirghcf4hbxdyx30"))))
4791876c
RJ
6056 (build-system gnu-build-system)
6057 (arguments
6058 `(#:phases
6059 (modify-phases %standard-phases
6060 ;; Qt has its own configuration utility.
6061 (replace 'configure
6062 (lambda* (#:key outputs #:allow-other-keys)
6063 (let ((out (assoc-ref outputs "out")))
6c23ed9b
MW
6064 (invoke "qmake"
6065 (string-append "PREFIX=" out)
c36d9725 6066 (string-append "DESKTOPDIR=" out "/share/applications")
6c23ed9b 6067 (string-append "ICONDIR=" out "/share/pixmaps")
c36d9725 6068 (string-append "METAINFODIR=" out "/share/metainfo")
6c23ed9b 6069 "texmaker.pro")))))))
4791876c
RJ
6070 (inputs
6071 `(("poppler-qt5" ,poppler-qt5)
bd917486
TD
6072 ("qtbase" ,qtbase)
6073 ("qtscript" ,qtscript)
6074 ("qtwebkit" ,qtwebkit)
4791876c
RJ
6075 ("zlib" ,zlib)))
6076 (native-inputs
6077 `(("pkg-config" ,pkg-config)))
6078 (home-page "http://www.xm1math.net/texmaker/")
6079 (synopsis "LaTeX editor")
6080 (description "Texmaker is a program that integrates many tools needed to
6081develop documents with LaTeX, in a single application.")
6082 (license license:gpl2+)))
83457fe0 6083
83457fe0
JD
6084(define-public teximpatient
6085 (package
6086 (name "teximpatient")
6087 (version "2.4")
6088 (source (origin
4f2ee8e2 6089 (method url-fetch/tarbomb)
83457fe0
JD
6090 (uri (string-append "mirror://gnu/" name "/" name "-"
6091 version ".tar.gz"))
6092 (sha256
6093 (base32
6094 "0h56w22d99dh4fgld4ssik8ggnmhmrrbnrn1lnxi1zr0miphn1sd"))))
6095 (build-system gnu-build-system)
6096 (arguments
4f2ee8e2
RW
6097 `(#:tests? #f ; there are none
6098 #:phases
83457fe0 6099 (modify-phases %standard-phases
4f2ee8e2
RW
6100 (add-after 'unpack 'fix-packaging-error
6101 (lambda* (#:key inputs #:allow-other-keys)
6102 ;; This file should have been part of the tarball.
6103 (install-file (car
6104 (find-files
6105 (assoc-ref inputs "automake")
6106 "^install-sh$"))
6107 ".")
6108 ;; Remove generated file.
6109 (delete-file "book.pdf")
6110 #t)))))
83457fe0 6111 (native-inputs
f75aa97f 6112 `(("texlive" ,(texlive-union (list texlive-amsfonts
4f2ee8e2
RW
6113 texlive-fonts-adobe-palatino
6114 texlive-fonts-adobe-zapfding
6115 texlive-fonts-knuth-lib
6116 texlive-fonts-mflogo-font
6117 texlive-generic-pdftex)))
83457fe0 6118 ("automake" ,automake)))
6fd52309 6119 (home-page "https://www.gnu.org/software/teximpatient/")
83457fe0
JD
6120 (synopsis "Book on TeX, plain TeX and Eplain")
6121 (description "@i{TeX for the Impatient} is a ~350 page book on TeX,
6122plain TeX, and Eplain, originally written by Paul Abrahams, Kathryn Hargreaves,
6123and Karl Berry.")
6124 (license license:fdl1.3+)))
ec40a050
DM
6125
6126(define-public lyx
6127 (package
6128 (name "lyx")
03a7b67b 6129 (version "2.3.5.1")
ec40a050 6130 (source (origin
b17c8923 6131 (method url-fetch)
cb72994e 6132 (uri (string-append "https://ftp.lyx.org/pub/lyx/stable/"
e5a03489 6133 (version-major+minor version) ".x/"
03a7b67b 6134 "lyx-" version ".tar.xz"))
b17c8923
RW
6135 (sha256
6136 (base32
03a7b67b 6137 "0mv32s26igm0pd8vs7d2mk1240dpr83y0a2wyh3xz6b67ph0w157"))
b17c8923
RW
6138 (modules '((guix build utils)))
6139 (snippet
6140 '(begin
6141 (delete-file-recursively "3rdparty")
6142 #t))))
e192b9e0 6143 (build-system qt-build-system)
ec40a050
DM
6144 (arguments
6145 `(#:configure-flags `("-DLYX_USE_QT=QT5"
6146 "-DLYX_EXTERNAL_BOOST=1"
6147 "-DLYX_INSTALL=1"
6148 "-DLYX_RELEASE=1"
dadf9795 6149 "-DLYX_PROGRAM_SUFFIX=OFF"
ec40a050 6150 ,(string-append "-DLYX_INSTALL_PREFIX="
dadf9795 6151 (assoc-ref %outputs "out")))
ec40a050
DM
6152 #:phases
6153 (modify-phases %standard-phases
6154 (add-after 'unpack 'patch-python
6155 (lambda* (#:key inputs #:allow-other-keys)
03a7b67b
EF
6156 (substitute* '("lib/configure.py"
6157 "src/support/ForkedCalls.cpp"
6158 "src/support/Systemcall.cpp"
6159 "src/support/os.cpp"
6160 "src/support/filetools.cpp")
b17c8923
RW
6161 (("\"python ")
6162 (string-append "\""
6163 (assoc-ref inputs "python")
03a7b67b 6164 "/bin/python3 ")))
ec40a050 6165 #t))
03a7b67b 6166 (add-after 'unpack 'add-missing-test-file
ec40a050 6167 (lambda _
b17c8923 6168 ;; Create missing file that would cause tests to fail.
03a7b67b 6169 (with-output-to-file "src/tests/check_layout.cmake"
b17c8923 6170 (const #t))
dadf9795 6171 #t)))))
ec40a050
DM
6172 (inputs
6173 `(("boost" ,boost)
b17c8923 6174 ("hunspell" ,hunspell) ; Note: Could also use aspell instead.
ec40a050 6175 ("libx11" ,libx11)
b17c8923 6176 ("mythes" ,mythes)
b3701ca1 6177 ("python" ,python)
ec40a050
DM
6178 ("qtbase" ,qtbase)
6179 ("qtsvg" ,qtsvg)
6180 ("zlib" ,zlib)))
6181 (propagated-inputs
b17c8923 6182 `(("texlive" ,(texlive-union (list texlive-fonts-ec)))))
ec40a050 6183 (native-inputs
b3701ca1 6184 `(("python" ,python)
8c183d95 6185 ("pkg-config" ,pkg-config)))
8960b2e6 6186 (home-page "https://www.lyx.org/")
ec40a050
DM
6187 (synopsis "Document preparation system with GUI")
6188 (description "LyX is a document preparation system. It excels at letting
6189you create complex technical and scientific articles with mathematics,
6190cross-references, bibliographies, indexes, etc. It is very good for working
6191with documents of any length in which the usual processing abilities are
6192required: automatic sectioning and pagination, spell checking and so forth.")
6193 (license license:gpl2+)))
7d50dff3
PN
6194
6195(define-public texlive-latex-media9
6196 (package
6197 (name "texlive-latex-media9")
6198 (version (number->string %texlive-revision))
6199 (source (origin
6200 (method svn-fetch)
6201 (uri (svn-reference
6202 (url (string-append "svn://www.tug.org/texlive/tags/"
6203 %texlive-tag "/Master/texmf-dist/"
6204 "/tex/latex/media9"))
6205 (revision %texlive-revision)))
6206 (file-name (string-append name "-" version "-checkout"))
6207 (sha256
6208 (base32
85892948 6209 "0s86v2b6b1vky1svmmn8pn0l2gz3v280mvjbr2d9l2sjyarlgz9w"))))
7d50dff3
PN
6210 (build-system trivial-build-system)
6211 (arguments
6212 `(#:modules ((guix build utils))
6213 #:builder
6214 (begin
6215 (use-modules (guix build utils))
6216 (let ((target (string-append (assoc-ref %outputs "out")
6217 "/share/texmf-dist/tex/latex/media9")))
6218 (mkdir-p target)
6219 (copy-recursively (assoc-ref %build-inputs "source") target)
6220 #t))))
6221 (home-page "https://www.ctan.org/pkg/media9")
6222 (synopsis "Multimedia inclusion package with Adobe Reader-9/X compatibility")
6223 (description
6224 "The package provides an interface to embed interactive Flash (SWF) and 3D
6225objects (Adobe U3D & PRC), as well as video and sound files or streams in the
6226popular MP4, FLV and MP3 formats into PDF documents with Acrobat-9/X
6227compatibility. Playback of multimedia files uses the built-in Flash Player of
6228Adobe Reader and does, therefore, not depend on external plug-ins. Flash Player
6229supports the efficient H.264 codec for video compression.
6230
6231The package is based on the RichMedia Annotation, an Adobe addition to the PDF
6232specification. It replaces the now obsolete @code{movie15} package.")
6233 (license license:lppl)))
288c8c97
PN
6234
6235(define-public texlive-latex-ocgx2
6236 (package
6237 (name "texlive-latex-ocgx2")
6238 (version (number->string %texlive-revision))
6239 (source (origin
6240 (method svn-fetch)
6241 (uri (svn-reference
6242 (url (string-append "svn://www.tug.org/texlive/tags/"
6243 %texlive-tag "/Master/texmf-dist/"
6244 "/tex/latex/ocgx2"))
6245 (revision %texlive-revision)))
6246 (file-name (string-append name "-" version "-checkout"))
6247 (sha256
6248 (base32
85892948 6249 "1yhp51w8yr10c10pc9196q7hlw80brzqinnqbjw81d0sf2p0llc5"))))
288c8c97
PN
6250 (build-system trivial-build-system)
6251 (arguments
6252 `(#:modules ((guix build utils))
6253 #:builder
6254 (begin
6255 (use-modules (guix build utils))
6256 (let ((target (string-append (assoc-ref %outputs "out")
6257 "/share/texmf-dist/tex/latex/ogcx2")))
6258 (mkdir-p target)
6259 (copy-recursively (assoc-ref %build-inputs "source") target)
6260 #t))))
6261 (home-page "https://www.ctan.org/pkg/ocgx2")
6262 (synopsis "Provide OCG (Optional Content Groups) support within a PDF document")
6263 (description
6264 "This package provides OCG (Optional Content Groups) support within a PDF
6265document.
6266
6267It re-implements the functionality of the @code{ocg}, @code{ocgx}, and
6268@code{ocg-p} packages and adds support for all known engines and back-ends
6269including:
6270
6271@itemize
6272@item LaTeX → dvips → @code{ps2pdf}/Distiller
6273@item (Xe)LaTeX(x) → @code{dvipdfmx}
6274@item pdfLaTeX and LuaLaTeX .
6275@end itemize
6276
6277It also ensures compatibility with the @code{media9} and @code{animate} packages.")
6278 (license license:lppl)))
b718793e
PN
6279
6280(define-public texlive-latex-ms
6281 (package
6282 (name "texlive-latex-ms")
6283 (version (number->string %texlive-revision))
6284 (source (origin
6285 (method svn-fetch)
6286 (uri (texlive-ref "latex" "ms"))
6287 (file-name (string-append name "-" version "-checkout"))
6288 (sha256
6289 (base32
6290 "0m4wx3yjb5al1qsv995z8fii8xxy96mcfihbnlx43lpgayiwz35s"))))
6291 (build-system texlive-build-system)
6292 (arguments
6293 '(#:tex-directory "latex/ms"
6294 #:tex-format "latex"))
6295 (home-page "https://ctan.org/pkg/ms")
6296 (synopsis "Various LATEX packages by Martin Schröder")
6297 (description
6298 "A bundle of LATEX packages by Martin Schröder; the collection comprises:
6299
6300@itemize
6301@item @command{count1to}, make use of fixed TEX counters;
6302@item @command{everysel}, set commands to execute every time a font is selected;
6303@item @command{everyshi}, set commands to execute whenever a page is shipped out;
6304@item @command{multitoc}, typeset the table of contents in multiple columns;
6305@item @command{prelim2e}, mark typeset pages as preliminary; and
6306@item @command{ragged2e}, typeset ragged text and allow hyphenation.
6307@end itemize\n")
6308 (license license:lppl1.3c+)))
707babdd
PN
6309
6310(define-public texlive-latex-needspace
6311 (package
6312 (name "texlive-latex-needspace")
6313 (version (number->string %texlive-revision))
6314 (source (origin
6315 (method svn-fetch)
6316 (uri (texlive-ref "latex" "needspace"))
6317 (file-name (string-append name "-" version "-checkout"))
6318 (sha256
6319 (base32
6320 "0kw80f5jh4gdpa2ka815abza3gr5z8b929w0745vrlc59pl0017y"))))
6321 (build-system texlive-build-system)
6322 (arguments
6323 '(#:tex-directory "latex/needspace"
6324 #:tex-format "latex"))
6325 (inputs
6326 `(("texlive-latex-filecontents" ,texlive-latex-filecontents)))
6327 (home-page "https://www.ctan.org/pkg/needspace")
6328 (synopsis "Insert pagebreak if not enough space")
6329 (description
6330 "Provides commands to disable pagebreaking within a given vertical
6331space. If there is not enough space between the command and the bottom of the
6332page, a new page will be started.")
6333 (license license:lppl)))
0e73c11b 6334
73635e3f
RW
6335(define-public texlive-latex-changepage
6336 (package
6337 (name "texlive-latex-changepage")
6338 (version (number->string %texlive-revision))
6339 (source
6340 (origin
6341 (method svn-fetch)
6342 (uri (texlive-ref "latex" "changepage"))
e34a17e4 6343 (file-name (string-append name "-" version "-checkout"))
73635e3f
RW
6344 (sha256
6345 (base32
6346 "1rpw8xg5p4jsyh236jma9dz3l29wjx4062f154b3wak5yjcxyxyb"))))
6347 (build-system texlive-build-system)
6348 (arguments
6349 '(#:tex-directory "latex/changepage"
6350 #:tex-format "latex"))
6351 (inputs
6352 `(("texlive-latex-filecontents" ,texlive-latex-filecontents)))
6353 (home-page "https://www.ctan.org/pkg/changepage")
6354 (synopsis "Margin adjustment and detection of odd/even pages")
6355 (description
6356 "The package provides commands to change the page layout in the middle of
6357a document, and to robustly check for typesetting on odd or even pages.
6358Instructions for use are at the end of the file. The package is an extraction
6359of code from the @code{memoir} class, whose user interface it shares.")
6360 (license license:lppl1.3+)))
6361
0e73c11b
PN
6362(define-public texlive-latex-eukdate
6363 (package
6364 (name "texlive-latex-eukdate")
6365 (version (number->string %texlive-revision))
6366 (source
6367 (origin
6368 (method svn-fetch)
6369 (uri (svn-reference
6370 (url (string-append "svn://www.tug.org/texlive/tags/"
6371 %texlive-tag "/Master/texmf-dist/"
6372 "/tex/latex/eukdate"))
6373 (revision %texlive-revision)))
6374 (file-name (string-append name "-" version "-checkout"))
6375 (sha256
6376 (base32
6377 "18xan116l8w47v560bkw6nbhkrml7g04xrlzk3jrpc7qsyf3n5fz"))))
6378 (build-system trivial-build-system)
6379 (arguments
6380 `(#:modules ((guix build utils))
6381 #:builder
6382 (begin
6383 (use-modules (guix build utils))
6384 (let ((target (string-append (assoc-ref %outputs "out")
6385 "/share/texmf-dist/tex/latex/eukdate")))
6386 (mkdir-p target)
6387 (copy-recursively (assoc-ref %build-inputs "source") target)
6388 #t))))
6389 (home-page "https://www.ctan.org/pkg/eukdate")
6390 (synopsis "UK format dates, with weekday")
6391 (description
6392 "The package is used to change the format of @code{\\today}’s date,
6393including the weekday, e.g., \"Saturday, 26 June 2008\", the 'UK format', which
6394is preferred in many parts of the world, as distinct from that which is used in
6395@code{\\maketitle} of the article class, \"June 26, 2008\", the 'US format'.")
6396 (license license:lppl)))
910d67fb
PN
6397
6398(define-public texlive-generic-ulem
6399 (package
6400 (name "texlive-generic-ulem")
6401 (version (number->string %texlive-revision))
6402 (source
6403 (origin
6404 (method svn-fetch)
6405 (uri (svn-reference
6406 (url (string-append "svn://www.tug.org/texlive/tags/"
6407 %texlive-tag "/Master/texmf-dist/"
6408 "/tex/generic/ulem"))
6409 (revision %texlive-revision)))
6410 (file-name (string-append name "-" version "-checkout"))
6411 (sha256
6412 (base32
6413 "1rzdniqq9zk39w8ch8ylx3ywh2mj87s4ivchrsk2b8nx06jyn797"))))
6414 (build-system trivial-build-system)
6415 (arguments
6416 `(#:modules ((guix build utils))
6417 #:builder
6418 (begin
6419 (use-modules (guix build utils))
6420 (let ((target (string-append (assoc-ref %outputs "out")
6421 "/share/texmf-dist/tex/generic/ulem")))
6422 (mkdir-p target)
6423 (copy-recursively (assoc-ref %build-inputs "source") target)
6424 #t))))
6425 (home-page "https://www.ctan.org/pkg/ulem")
6426 (synopsis "Underline text in TeX")
6427 (description
6428 "The package provides an @code{\\ul} (underline) command which will break
6429over line ends; this technique may be used to replace @code{\\em} (both in that
6430form and as the @code{\\emph} command), so as to make output look as if it comes
6431from a typewriter. The package also offers double and wavy underlining, and
6432striking out (line through words) and crossing out (/// over words).")
6433 (license license:lppl1.3c+)))
17ef5f1f
PN
6434
6435(define-public texlive-latex-pgf
6436 (package
6437 (name "texlive-latex-pgf")
6438 (version (number->string %texlive-revision))
6439 (source
6440 (origin
6441 (method svn-fetch)
6442 (uri (svn-reference
6443 (url (string-append "svn://www.tug.org/texlive/tags/"
6444 %texlive-tag "/Master/texmf-dist/"
6445 "/tex/latex/pgf"))
6446 (revision %texlive-revision)))
6447 (file-name (string-append name "-" version "-checkout"))
6448 (sha256
6449 (base32
85892948 6450 "1dscrgwyr71vgx35mzb316xl669arzagfgq50fdv3nxga63959b3"))))
17ef5f1f
PN
6451 (build-system trivial-build-system)
6452 (native-inputs
6453 `(("texlive-latex-pgf-generic"
6454 ,(origin
6455 (method svn-fetch)
6456 (uri (svn-reference
6457 (url (string-append "svn://www.tug.org/texlive/tags/"
6458 %texlive-tag "/Master/texmf-dist/"
6459 "/tex/generic/pgf"))
6460 (revision %texlive-revision)))
6461 (file-name (string-append "texlive-latex-pgf-generic" version "-checkout"))
6462 (sha256
6463 (base32
85892948 6464 "0hk5x2j15n4pps279cmkbjl1dvhasq3mbhna5xdvp2qgh635ahks"))))))
0fc71e4b
RW
6465 (propagated-inputs
6466 `(("texlive-latex-xcolor" ,texlive-latex-xcolor)))
17ef5f1f
PN
6467 (arguments
6468 `(#:modules ((guix build utils))
6469 #:builder
6470 (begin
6471 (use-modules (guix build utils))
6472 (let ((target-generic (string-append (assoc-ref %outputs "out")
6473 "/share/texmf-dist/tex/generic/pgf"))
6474 (target-latex (string-append (assoc-ref %outputs "out")
6475 "/share/texmf-dist/tex/latex/pgf")))
6476 (mkdir-p target-generic)
6477 (mkdir-p target-latex)
6478 (copy-recursively (assoc-ref %build-inputs "texlive-latex-pgf-generic") target-generic)
6479 (copy-recursively (assoc-ref %build-inputs "source") target-latex)
6480 #t))))
6481 (home-page "https://www.ctan.org/pkg/tikz")
6482 (synopsis "Create PostScript and PDF graphics in TeX")
6483 (description
6484 "PGF is a macro package for creating graphics. It is platform- and
6485format-independent and works together with the most important TeX backend
6486drivers, including pdfTeX and dvips. It comes with a user-friendly syntax layer
6487called TikZ.
6488
6489Its usage is similar to pstricks and the standard picture environment. PGF
6490works with plain (pdf-)TeX, (pdf-)LaTeX, and ConTeXt. Unlike pstricks, it can
6491produce either PostScript or PDF output.")
6492 (license license:lppl1.3c+)))
e7b2937d
PN
6493
6494(define-public texlive-latex-koma-script
6495 (package
6496 (name "texlive-latex-koma-script")
6497 (version (number->string %texlive-revision))
6498 (source (origin
6499 (method svn-fetch)
6500 (uri (svn-reference
6501 (url (string-append "svn://www.tug.org/texlive/tags/"
6502 %texlive-tag "/Master/texmf-dist/"
6503 "/tex/latex/koma-script"))
6504 (revision %texlive-revision)))
6505 (file-name (string-append name "-" version "-checkout"))
6506 (sha256
6507 (base32
85892948 6508 "1vz9zg7s5w52xr323zgglzprfrvba2zvyzf6b8vrdf4wdghlpv4z"))))
e7b2937d
PN
6509 (build-system trivial-build-system)
6510 (arguments
6511 `(#:modules ((guix build utils)
6512 (ice-9 match))
6513 #:builder
6514 (begin
6515 (use-modules (guix build utils)
6516 (ice-9 match))
6517 (let ((root (string-append (assoc-ref %outputs "out")
6518 "/share/texmf-dist/"))
6519 (pkgs '(("source" . "tex/latex/koma-script"))))
6520 (for-each (match-lambda
6521 ((pkg . dir)
6522 (let ((target (string-append root dir)))
6523 (mkdir-p target)
6524 (copy-recursively (assoc-ref %build-inputs pkg)
6525 target))))
6526 pkgs)
6527 #t))))
6528 (home-page "https://www.ctan.org/pkg/koma-script")
6529 (synopsis "Bundle of versatile classes and packages")
6530 (description
6531 "The KOMA-Script bundle provides replacements for the article, report, and
6532book classes with emphasis on typography and versatility. There is also a
6533letter class.
6534
6535The bundle also offers:
6536
6537@itemize
6538@item a package for calculating type areas in the way laid down by the
6539typographer Jan Tschichold,
6540@item packages for easily changing and defining page styles,
6541@item a package scrdate for getting not only the current date but also the name
6542of the day, and
6543@item a package scrtime for getting the current time.
6544@end itemize
6545
6546All these packages may be used not only with KOMA-Script classes but also with
6547the standard classes.
6548
6549Since every package has its own version number, the version number quoted only
6550refers to the version of scrbook, scrreprt, scrartcl, scrlttr2 and
6551typearea (which are the main parts of the bundle).")
6552 (license license:lppl1.3+)))
893fbf12
RW
6553
6554(define-public texlive-generic-listofitems
6555 (package
6556 (name "texlive-generic-listofitems")
6557 (version (number->string %texlive-revision))
6558 (source (origin
6559 (method svn-fetch)
6560 (uri (svn-reference
6561 (url (string-append "svn://www.tug.org/texlive/tags/"
6562 %texlive-tag "/Master/texmf-dist/"
6563 "/tex/generic/listofitems"))
6564 (revision %texlive-revision)))
6565 (file-name (string-append name "-" version "-checkout"))
6566 (sha256
6567 (base32
85892948 6568 "1x4wnpca97rnbvvg6wjmbkxxvnfva274q9ahzx746b435q93z3i1"))))
893fbf12
RW
6569 (build-system trivial-build-system)
6570 (arguments
6571 `(#:modules ((guix build utils))
6572 #:builder
6573 (begin
6574 (use-modules (guix build utils))
6575 (let ((target (string-append (assoc-ref %outputs "out")
6576 "/share/texmf-dist/tex/generic/listofitems")))
6577 (mkdir-p target)
6578 (copy-recursively (assoc-ref %build-inputs "source") target)
6579 #t))))
6580 (home-page "https://www.ctan.org/pkg/listofitems")
88868575 6581 (synopsis "Grab items in lists using user-specified separation character")
893fbf12
RW
6582 (description
6583 "This package allows one to capture all the items of a list, for which
6584the parsing character has been selected by the user, and to access any of
6585these items with a simple syntax.")
6586 (license license:lppl1.3c+)))
1d0669f4
RW
6587
6588(define-public texlive-latex-readarray
6589 (package
6590 (name "texlive-latex-readarray")
6591 (version (number->string %texlive-revision))
6592 (source (origin
6593 (method svn-fetch)
6594 (uri (svn-reference
6595 (url (string-append "svn://www.tug.org/texlive/tags/"
6596 %texlive-tag "/Master/texmf-dist/"
6597 "/tex/latex/readarray"))
6598 (revision %texlive-revision)))
6599 (file-name (string-append name "-" version "-checkout"))
6600 (sha256
6601 (base32
6602 "0c53k180ivn1n7fz3ngvd2w1i5dw3kxml0n64vhki88xsylz7lxp"))))
6603 (build-system trivial-build-system)
6604 (arguments
6605 `(#:modules ((guix build utils))
6606 #:builder
6607 (begin
6608 (use-modules (guix build utils))
6609 (let ((target (string-append (assoc-ref %outputs "out")
6610 "/share/texmf-dist/tex/latex/readarray")))
6611 (mkdir-p target)
6612 (copy-recursively (assoc-ref %build-inputs "source") target)
6613 #t))))
6614 (propagated-inputs
6615 `(("texlive-generic-listofitems" ,texlive-generic-listofitems)))
6616 (home-page "https://www.ctan.org/pkg/readarray")
6617 (synopsis "Read, store and recall array-formatted data")
6618 (description
6619 "This package allows the user to input formatted data into elements of a
66202-D or 3-D array and to recall that data at will by individual cell number.
6621The data can be but need not be numerical in nature. It can be, for example,
6622formatted text.")
6623 (license license:lppl1.3)))
f50f343e
RW
6624
6625(define-public texlive-latex-verbatimbox
6626 (package
6627 (name "texlive-latex-verbatimbox")
6628 (version (number->string %texlive-revision))
6629 (source (origin
6630 (method svn-fetch)
6631 (uri (svn-reference
6632 (url (string-append "svn://www.tug.org/texlive/tags/"
6633 %texlive-tag "/Master/texmf-dist/"
6634 "/tex/latex/verbatimbox"))
6635 (revision %texlive-revision)))
6636 (file-name (string-append name "-" version "-checkout"))
6637 (sha256
6638 (base32
6639 "0qh1cgvfs463zsi2pjg490gj0mkjfdpfc381j10cbb5la304psna"))))
6640 (build-system trivial-build-system)
6641 (arguments
6642 `(#:modules ((guix build utils))
6643 #:builder
6644 (begin
6645 (use-modules (guix build utils))
6646 (let ((target (string-append (assoc-ref %outputs "out")
6647 "/share/texmf-dist/tex/latex/verbatimbox")))
6648 (mkdir-p target)
6649 (copy-recursively (assoc-ref %build-inputs "source") target)
6650 #t))))
6651 (propagated-inputs
6652 `(("texlive-latex-readarray" ,texlive-latex-readarray)))
6653 (home-page "https://www.ctan.org/pkg/verbatimbox")
6654 (synopsis "Deposit verbatim text in a box")
6655 (description
6656 "The package provides a @code{verbbox} environment to place its contents
6657into a globally available box, or into a box specified by the user. The
6658global box may then be used in a variety of situations (for example, providing
6659a replica of the @code{boxedverbatim} environment itself). A valuable use is
6660in places where the standard @code{verbatim} environment (which is based on a
6661@code{trivlist}) may not appear.")
6662 (license license:lppl1.3+)))
4348a059
RW
6663
6664(define-public texlive-latex-examplep
6665 (package
6666 (name "texlive-latex-examplep")
6667 (version (number->string %texlive-revision))
6668 (source (origin
6669 (method svn-fetch)
6670 (uri (svn-reference
6671 (url (string-append "svn://www.tug.org/texlive/tags/"
6672 %texlive-tag "/Master/texmf-dist/"
6673 "/tex/latex/examplep"))
6674 (revision %texlive-revision)))
6675 (file-name (string-append name "-" version "-checkout"))
6676 (sha256
6677 (base32
6678 "0fsvvmz68ij0zwfzrny6x13d92grxr4ap59lxgah4smbkccd6s27"))))
6679 (build-system trivial-build-system)
6680 (arguments
6681 `(#:modules ((guix build utils))
6682 #:builder
6683 (begin
6684 (use-modules (guix build utils))
6685 (let ((target (string-append (assoc-ref %outputs "out")
6686 "/share/texmf-dist/tex/latex/examplep")))
6687 (mkdir-p target)
6688 (copy-recursively (assoc-ref %build-inputs "source") target)
6689 #t))))
6690 (home-page "https://www.ctan.org/pkg/examplep")
6691 (synopsis "Verbatim phrases and listings in LaTeX")
6692 (description
6693 "Examplep provides sophisticated features for typesetting verbatim source
6694code listings, including the display of the source code and its compiled LaTeX
6695or METAPOST output side-by-side, with automatic width detection and enabled
6696page breaks (in the source), without the need for specifying the source twice.
6697Special care is taken that section, page and footnote numbers do not interfere
6698with the main document. For typesetting short verbatim phrases, a replacement
6699for the @code{\\verb} command is also provided in the package, which can be
6700used inside tables and moving arguments such as footnotes and section
6701titles.")
6702 ;; No version of the GPL is specified.
6703 (license license:gpl3+)))
547ab650 6704
8bc9afeb
RW
6705(define-public texlive-xypic
6706 (let ((template (simple-texlive-package
6707 "texlive-xypic"
6708 (list "/doc/generic/xypic/"
6709 "/dvips/xypic/xy389dict.pro"
6710 "/fonts/enc/dvips/xypic/"
6711 "/fonts/map/dvips/xypic/xypic.map"
6712
6713 "/fonts/source/public/xypic/"
6714 "/fonts/afm/public/xypic/"
6715 "/fonts/tfm/public/xypic/"
6716 "/fonts/type1/public/xypic/"
63d57404 6717 "/tex/generic/xypic/")
8bc9afeb 6718 (base32
63d57404
RW
6719 "09b51bbm189xh7039h5n8nmab5nn2bybhh26qjn08763m80zdhjg")
6720 #:trivial? #t)))
8bc9afeb
RW
6721 (package
6722 (inherit template)
6723 (arguments
6724 (substitute-keyword-arguments (package-arguments template)
8bc9afeb
RW
6725 ((#:phases phases)
6726 `(modify-phases ,phases
6727 (delete 'reset-gzip-timestamps)))))
6728 (home-page "https://www.ctan.org/pkg/xypic")
6729 (synopsis "Flexible diagramming macros")
6730 (description "This is a package for typesetting a variety of graphs and
6731diagrams with TeX. Xy-pic works with most formats (including LaTeX,
6732AMS-LaTeX, AMS-TeX, and plain TeX). The distribution includes Michael Barr's
6733@code{diag} package, which was previously distributed stand-alone.")
6734 (license license:gpl3+))))
1d9ce461
PN
6735
6736(define-public texlive-fonts-xypic
8bc9afeb
RW
6737 (deprecated-package "texlive-fonts-xypic" texlive-xypic))
6738
6739(define-public texlive-generic-xypic
6740 (deprecated-package "texblive-generic-xypic" texlive-xypic))
31595689
PN
6741
6742(define-public texlive-bibtex
6743 (package
6744 (name "texlive-bibtex")
6745 (version (number->string %texlive-revision))
6746 (source
6747 (origin
6748 (method svn-fetch)
6749 (uri (svn-reference
6750 (url (string-append "svn://www.tug.org/texlive/tags/"
6751 %texlive-tag "/Master/texmf-dist/"
6752 "/bibtex"))
6753 (revision %texlive-revision)))
6754 (file-name (string-append name "-" version "-checkout"))
6755 (sha256
6756 (base32
85892948 6757 "1wijqq605cbhn2bdaryby3xpkwmnk9ixcrjn5zwlfrxbgfblzfmz"))))
31595689
PN
6758 (build-system trivial-build-system)
6759 (arguments
6760 `(#:modules ((guix build utils))
6761 #:builder
6762 (begin
6763 (use-modules (guix build utils))
6764 (let ((target (string-append (assoc-ref %outputs "out")
6765 "/share/texmf-dist/bibtex")))
6766 (mkdir-p target)
6767 (copy-recursively (assoc-ref %build-inputs "source") target)
6768 #t))))
6769 (home-page "https://www.ctan.org/pkg/bibtex")
6770 (synopsis "Process bibliographies for LaTeX")
6771 (description
6772 "BibTeX allows the user to store his citation data in generic form, while
6773printing citations in a document in the form specified by a BibTeX style, to
6774be specified in the document itself (one often needs a LaTeX citation-style
6775package, such as @command{natbib} as well).")
6776 (license license:knuth)))
744b883e 6777
1f50ae63 6778(define-public texlive-charter
744b883e 6779 (package
1f50ae63
RW
6780 (inherit (simple-texlive-package
6781 "texlive-charter"
6782 (list "/doc/fonts/charter/readme.charter"
6783 "/fonts/afm/bitstrea/charter/"
6784 "/fonts/tfm/bitstrea/charter/"
6785 "/fonts/type1/bitstrea/charter/"
6786 "/fonts/vf/bitstrea/charter/")
6787 (base32
6788 "09l5ymgz48s3hyn776l01g3isk3dnhrj1vdavdw4qq4kfxxpqdn9")
6789 #:trivial? #t))
744b883e
PN
6790 (home-page "https://www.ctan.org/pkg/charter")
6791 (synopsis "Charter fonts for TeX")
1f50ae63
RW
6792 (description "This package provides a copy of the Charter Type-1 fonts
6793which Bitstream contributed to the X consortium, renamed for use with TeX.
6794Support for use with LaTeX is available in @code{freenfss}, part of
744b883e 6795@command{psnfss}. ")
1f50ae63
RW
6796 (license (license:non-copyleft
6797 "http://mirrors.ctan.org/fonts/charter/readme.charter"))))
6798
6799(define-public texlive-fonts-charter
6800 (deprecated-package "texlive-fonts-charter" texlive-charter))
a5bfedb4
PN
6801
6802(define-public texlive-context-base
6803 (package
6804 (name "texlive-context-base")
6805 (version (number->string %texlive-revision))
6806 (source (origin
6807 (method svn-fetch)
6808 (uri (svn-reference
6809 (url (string-append "svn://www.tug.org/texlive/tags/"
6810 %texlive-tag "/Master/texmf-dist/"
6811 "/tex/context/base"))
6812 (revision %texlive-revision)))
6813 (file-name (string-append name "-" version "-checkout"))
6814 (sha256
6815 (base32
85892948 6816 "0d7d74giz5knvj4rj6mbzd6c05mwg9jrxab86jxdqbc3jy7cl4kz"))))
a5bfedb4
PN
6817 (build-system trivial-build-system)
6818 (arguments
6819 `(#:modules ((guix build utils))
6820 #:builder
6821 (begin
6822 (use-modules (guix build utils))
6823 (let ((target (string-append (assoc-ref %outputs "out")
6824 "/share/texmf-dist/tex/context/case")))
6825 (mkdir-p target)
6826 (copy-recursively (assoc-ref %build-inputs "source") target)
6827 #t))))
6828 (home-page "https://www.ctan.org/pkg/context")
6829 (synopsis "Full featured, parameter driven macro package for TeX")
6830 (description "A full featured, parameter driven macro package, which fully
6831supports advanced interactive documents. See the ConTeXt garden for a wealth
6832of support information.")
6833 (license license:gpl2+)))
63133706 6834
81ca4614 6835(define-public texlive-beamer
63133706 6836 (package
81ca4614
RW
6837 (inherit (simple-texlive-package
6838 "texlive-beamer"
6839 (list "/doc/latex/beamer/"
6840 "/tex/latex/beamer/")
6841 (base32
85892948 6842 "1fqzbkmw2kfxihab8j4dadc3v68xap6v2ghpp2064fna47xlwy1c")
81ca4614 6843 #:trivial? #t))
63133706
RW
6844 (propagated-inputs
6845 `(("texlive-latex-hyperref" ,texlive-latex-hyperref)
6846 ("texlive-latex-oberdiek" ,texlive-latex-oberdiek)
6847 ("texlive-latex-etoolbox" ,texlive-latex-etoolbox)
6848 ("texlive-latex-pgf" ,texlive-latex-pgf)))
63133706
RW
6849 (home-page "https://www.ctan.org/pkg/beamer")
6850 (synopsis "LaTeX class for producing presentations and slides")
6851 (description "The beamer LaTeX class can be used for producing slides.
6852The class works in both PostScript and direct PDF output modes, using the
6853@code{pgf} graphics system for visual effects. Content is created in the
6854@code{frame} environment, and each frame can be made up of a number of slides
6855using a simple notation for specifying material to appear on each slide within
6856a frame. Short versions of title, authors, institute can also be specified as
6857optional parameters. Whole frame graphics are supported by plain frames. The
6858class supports @code{figure} and @code{table} environments, transparency
6859effects, varying slide transitions and animations.")
6860 ;; Code is dual licensed under GPLv2+ or LPPL1.3c+; documentation is
6861 ;; dual-licensed under either FDLv1.3+ or LPPL1.3c+.
6862 (license (list license:lppl1.3c+ license:gpl2+ license:fdl1.3+))))
cafd4d38 6863
81ca4614
RW
6864(define-public texlive-latex-beamer
6865 (deprecated-package "texlive-latex-beamer" texlive-beamer))
6866
cafd4d38
RW
6867(define-public texlive-latex-xmpincl
6868 (package
6869 (name "texlive-latex-xmpincl")
6870 (version (number->string %texlive-revision))
6871 (source
6872 (origin
6873 (method svn-fetch)
6874 (uri (texlive-ref "latex" "xmpincl"))
97656fc9 6875 (file-name (string-append name "-" version "-checkout"))
cafd4d38
RW
6876 (sha256
6877 (base32
6878 "0lq3dfb4fsw955gjwllnk7cg00ciq5mva64mlpbva6g2jz117734"))))
6879 (build-system texlive-build-system)
6880 (arguments '(#:tex-directory "latex/xmpincl"))
6881 (home-page "http://www.ctan.org/pkg/xmpincl")
6882 (synopsis "Include eXtensible Metadata Platform data in pdfLaTeX")
6883 (description
6884 "The XMP (eXtensible Metadata platform) is a framework to add metadata to
6885digital material to enhance the workflow in publication. The essence is that
6886the metadata is stored in an XML file, and this XML stream is then embedded in
6887the file to which it applies.")
6888 (license license:gpl3+)))
f87dcb4d
RW
6889
6890(define-public texlive-latex-pdfx
6891 (package
6892 (name "texlive-latex-pdfx")
6893 (version (number->string %texlive-revision))
6894 (source
6895 (origin
6896 (method svn-fetch)
6897 (uri (texlive-ref "latex" "pdfx"))
2ada1259 6898 (file-name (string-append name "-" version "-checkout"))
f87dcb4d
RW
6899 (sha256
6900 (base32
85892948 6901 "18294h0cr05fs424m3x6aq24z5hf5zmiflalkj4kvpmsyyqqsj74"))))
f87dcb4d
RW
6902 (build-system texlive-build-system)
6903 (arguments
6904 '(#:tex-directory "latex/pdfx"
6905 #:phases
6906 (modify-phases %standard-phases
6907 (add-after 'unpack 'fix-encoding
6908 (lambda _
6909 (substitute* "pdfx.dtx"
6910 ((" .+umaczy") "umaczy"))
6911 #t))
6912 (add-before 'install 'install-tex-files
6913 (lambda* (#:key inputs outputs #:allow-other-keys)
6914 (let ((target (string-append (assoc-ref outputs "out")
6915 "/share/texmf-dist/tex/latex/pdfx")))
6916 (mkdir-p target)
6917 (copy-recursively (assoc-ref inputs "texlive-tex-pdfx") target)
6918 ;; Install the generated version in the "install" phase.
6919 (delete-file (string-append target "/pdfx.sty"))
6920 #t))))))
6921 (propagated-inputs
6922 `(("texlive-generic-pdftex" ,texlive-generic-pdftex)))
6923 (native-inputs
6924 `(("texlive-tex-pdfx"
6925 ,(origin
6926 (method svn-fetch)
6927 (uri (svn-reference
6928 (url (string-append "svn://www.tug.org/texlive/tags/"
6929 %texlive-tag "/Master/texmf-dist/"
6930 "/tex/latex/pdfx"))
6931 (revision %texlive-revision)))
6932 (file-name (string-append "texlive-tex-latex-pdfx-" version "-checkout"))
6933 (sha256
6934 (base32
85892948 6935 "171ffvpkj2fab4ljcxv3l6l5c8ga8zavdhmhfq07id8zyyr619ip"))))))
f87dcb4d
RW
6936 (home-page "https://www.ctan.org/pkg/pdfx")
6937 (synopsis "PDF/X and PDF/A support for pdfTeX, LuaTeX and XeTeX")
6938 (description
ba11dddb 6939 "This package helps LaTeX users to create PDF/X, PDF/A and other
f87dcb4d
RW
6940standards-compliant PDF documents with pdfTeX, LuaTeX and XeTeX.")
6941 (license license:lppl1.2+)))
73ce4421
RW
6942
6943(define-public texlive-ydoc
6944 (let ((template (simple-texlive-package
6945 "texlive-ydoc"
6946 (list "/doc/latex/ydoc/"
6947 "/source/latex/ydoc/")
6948 (base32
6949 "0ckcpy1b8v1fk3qc8qkxgiag2wc0qzxm6bgksv000m4m1hsi2g8b")
6950 #:trivial? #f)))
6951 (package
6952 (inherit template)
6953 (outputs '("out" "doc"))
6954 (arguments
6955 (substitute-keyword-arguments (package-arguments template)
6956 ((#:tex-directory _ #t)
6957 "latex/ydoc")
6958 ((#:build-targets _ #t)
6959 ''("ydoc.dtx"))
6960 ((#:phases phases)
6961 `(modify-phases ,phases
6962 (add-after 'unpack 'chdir
6963 (lambda _ (chdir "source/latex/ydoc") #t))
6964 (add-after 'copy-files 'move-files
6965 (lambda* (#:key outputs #:allow-other-keys)
6966 (let* ((share (string-append (assoc-ref outputs "out")
6967 "/share/texmf-dist"))
6968 (target (string-append share "/tex/generic/ydoc"))
6969 (doc (string-append (assoc-ref outputs "doc")
6970 "/share/texmf-dist/doc") ))
6971 (mkdir-p target)
6972 (for-each
6973 (lambda (file)
6974 (rename-file (string-append share "/tex/latex/ydoc/" file)
6975 (string-append target "/" file)))
6976 '("ydocincl.tex" "ydocstrip.tex"))
6977 (mkdir-p doc)
6978 (rename-file (string-append share "/doc") doc)
6979 #t)))))))
6980 (home-page "http://www.ctan.org/pkg/ydoc")
6981 (synopsis "Macros for documentation of LaTeX classes and packages")
6982 (description "The package provides macros and environments to document
6983LaTeX packages and classes. It is an (as yet unfinished) alternative to the
6984@code{ltxdoc} class and the @code{doc} or @code{xdoc} packages. The aim is to
6985provide a different layout and more modern styles (using the @code{xcolor},
6986@code{hyperref} packages, etc.) This is an alpha release, and should probably
6987not (yet) be used with other packages, since the implementation might
6988change.")
6989 (license license:lppl1.3+))))
e5c08129
RW
6990
6991(define-public texlive-pstricks
6992 (let ((template (simple-texlive-package
6993 "texlive-pstricks"
6994 (list "/doc/generic/pstricks/"
6995 "/dvips/pstricks/"
6996 "/tex/generic/pstricks/"
6997 "/tex/latex/pstricks/")
6998 (base32
85892948 6999 "0sdxdd0qi4sccw9il7d4s7jivs24pq99cdzfnrf0gkqjb1y8s7cl")
e5c08129
RW
7000 #:trivial? #t)))
7001 (package
7002 (inherit template)
7003 (arguments
7004 (substitute-keyword-arguments (package-arguments template)
7005 ((#:phases phases)
7006 `(modify-phases ,phases
7007 (delete 'reset-gzip-timestamps)))))
7008 (home-page "http://www.ctan.org/pkg/pstricks")
7009 (synopsis "PostScript macros for TeX")
7010 (description "PSTricks offers an extensive collection of macros for
7011generating PostScript that is usable with most TeX macro formats, including
7012Plain TeX, LaTeX, AMS-TeX, and AMS-LaTeX. Included are macros for colour,
7013graphics, pie charts, rotation, trees and overlays. It has many special
7014features, including a wide variety of graphics (picture drawing) macros, with
7015a flexible interface and with colour support. There are macros for colouring
7016or shading the cells of tables.")
7017 (license license:lppl1.3+))))
a72d343a
RW
7018
7019(define-public texlive-pst-text
7020 (let ((template (simple-texlive-package
7021 "texlive-pst-text"
7022 (list "/doc/generic/pst-text/"
a72d343a
RW
7023 "/dvips/pst-text/pst-text.pro"
7024 "/tex/generic/pst-text/"
7025 "/tex/latex/pst-text/")
7026 (base32
85892948 7027 "146fpzd1xlqi94q5r48z8ni8qww713yh6nwkbr9pw27mjrqdadb9")
a72d343a
RW
7028 #:trivial? #t)))
7029 (package
7030 (inherit template)
7031 (propagated-inputs
7032 `(("texlive-pstricks" ,texlive-pstricks)))
7033 (home-page "http://www.ctan.org/pkg/pst-text")
7034 (synopsis "Text and character manipulation in PSTricks")
7035 (description "Pst-text is a PSTricks based package for plotting text along
7036a different path and manipulating characters. It includes the functionality
7037of the old package @code{pst-char}.")
7038 (license license:lppl))))
51bf1c51 7039
cf4a56d7
RW
7040(define-public texlive-marginnote
7041 (let ((template (simple-texlive-package
7042 "texlive-marginnote"
7043 (list "/source/latex/marginnote/marginnote.dtx")
7044 (base32
7045 "1vj1k8xm11gjdfj60as42d8lsv3dbzrm5dlgqcfk89d9dzm3k39j"))))
7046 (package
7047 (inherit template)
7048 (home-page "http://www.ctan.org/pkg/marginnote")
7049 (arguments
7050 (substitute-keyword-arguments (package-arguments template)
7051 ((#:tex-directory _ '())
7052 "latex/marginnote")
7053 ((#:build-targets _ '())
7054 ''("marginnote.dtx"))
7055 ((#:phases phases)
7056 `(modify-phases ,phases
7057 (add-after 'unpack 'chdir
7058 (lambda _ (chdir "source/latex/marginnote") #t))))))
7059 (synopsis "Notes in the margin")
7060 (description "This package provides the command @code{\\marginnote} that
7061may be used instead of @code{\\marginpar} at almost every place where
7062@code{\\marginpar} cannot be used, e.g., inside floats, footnotes, or in
7063frames made with the @code{framed} package.")
7064 (license license:lppl1.3c+))))
7065
51bf1c51
RW
7066(define-public texlive-iftex
7067 (let ((template (simple-texlive-package
7068 "texlive-iftex"
7069 (list "/doc/generic/iftex/"
7070 "/tex/generic/iftex/iftex.sty")
7071 (base32
7072 "089zvw31gby150n1k0zdk2c0q97pgbqs46phxydaqil64b55nnl7")
7073 #:trivial? #t)))
7074 (package
7075 (inherit template)
7076 (home-page "http://www.ctan.org/pkg/iftex")
7077 (synopsis "Determine the currently used TeX engine")
7078 (description "This package, which works both for Plain TeX and for
7079LaTeX, defines the @code{\\ifPDFTeX}, @code{\\ifXeTeX}, and @code{\\ifLuaTeX}
7080conditionals for testing which engine is being used for typesetting. The
7081package also provides the @code{\\RequirePDFTeX}, @code{\\RequireXeTeX}, and
7082@code{\\RequireLuaTeX} commands which throw an error if pdfTeX, XeTeX or
7083LuaTeX (respectively) is not the engine in use.")
7084 (license license:lppl1.3+))))
99b14365
RW
7085
7086(define-public texlive-tools
7087 (let ((template (simple-texlive-package
7088 "texlive-tools"
7089 (list "/doc/latex/tools/"
7090 "/source/latex/tools/")
7091 (base32
85892948 7092 "1ivhij7171wvrgcjn4wah84wxwpd21d0chh3zxab4pj067c8d0mh"))))
99b14365
RW
7093 (package
7094 (inherit template)
7095 (arguments
7096 (substitute-keyword-arguments (package-arguments template)
7097 ((#:tex-directory _ '())
7098 "latex/tools")
7099 ((#:build-targets _ '())
7100 ''("tools.ins"))
7101 ((#:phases phases)
7102 `(modify-phases ,phases
7103 (add-after 'unpack 'chdir
7104 (lambda _ (chdir "source/latex/tools") #t))))))
7105 (home-page "https://www.ctan.org/tex-archive/macros/latex/required/tools/")
7106 (synopsis "LaTeX standard tools bundle")
7107 (description "This package provides a collection of simple tools that
7108are part of the LaTeX required tools distribution, comprising the packages:
7109@code{afterpage}, @code{array}, @code{bm}, @code{calc}, @code{dcolumn},
7110@code{delarray}, @code{enumerate}, @code{fileerr}, @code{fontsmpl},
7111@code{ftnright}, @code{hhline}, @code{indentfirst}, @code{layout},
7112@code{longtable}, @code{multicol}, @code{rawfonts}, @code{showkeys},
7113@code{somedefs}, @code{tabularx}, @code{theorem}, @code{trace},
7114@code{varioref}, @code{verbatim}, @code{xr}, and @code{xspace}.")
7115 (license license:lppl1.3+))))
f16e0948
RW
7116
7117(define-public texlive-latex-xkeyval
7118 (package
7119 (name "texlive-latex-xkeyval")
7120 (version (number->string %texlive-revision))
7121 (source (origin
7122 (method svn-fetch)
7123 (uri (texlive-ref "latex" "xkeyval"))
04f46e5d 7124 (file-name (string-append name "-" version "-checkout"))
f16e0948
RW
7125 (sha256
7126 (base32
7127 "0wancavix39j240pd8m9cgmwsijwx6jd6n54v8wg0x2rk5m44myp"))))
7128 (build-system texlive-build-system)
7129 (arguments
7130 '(#:tex-directory "latex/xkeyval"
7131 #:build-targets '("xkeyval.dtx")
7132 #:tex-format "latex" ; won't build with luatex
7133 #:phases
7134 (modify-phases %standard-phases
7135 ;; This package cannot be built out of tree as it expects to find
7136 ;; built files in the working directory.
7137 (add-before 'build 'fix-build
7138 (lambda _
7139 (setenv "TEXINPUTS"
7140 (string-append (getcwd) "/build:"))
7141 (substitute* "xkeyval.dtx"
7142 (("usepackage\\{xcolor\\}")
7143 "usepackage[dvips]{xcolor}"))
7144 #t))
7145 ;; FIXME: We don't have a package for this font yet.
7146 (add-after 'unpack 'remove-dependency-on-fourier
7147 (lambda _
7148 (substitute* "xkeyval.dtx"
7149 (("\\\\usepackage\\{fourier\\}") ""))
7150 #t))
7151 (add-after 'install 'move-files
7152 (lambda* (#:key outputs #:allow-other-keys)
7153 (let* ((out (assoc-ref outputs "out"))
7154 (share (string-append out "/share/texmf-dist"))
7155 (source (string-append share "/tex/latex/xkeyval/"))
7156 (target (string-append share "/tex/generic/xkeyval/")))
7157 (mkdir-p target)
7158 (for-each (lambda (file)
7159 (rename-file (string-append source file)
7160 (string-append target file)))
7161 '("keyval.tex"
7162 "pst-xkey.tex"
7163 "xkeyval.tex"
7164 "xkvex1.tex"
7165 "xkvex2.tex"
7166 "xkvex3.tex"
7167 "xkvex4.tex"
7168 "xkvtxhdr.tex"
7169 "xkvutils.tex"))
7170 #t))))))
7171 (native-inputs
7172 `(("texlive-latex-base" ,texlive-latex-base)
7173 ("texlive-cm" ,texlive-cm)
7174 ("texlive-lm" ,texlive-lm)
7175 ("texlive-url" ,texlive-url)
7176 ("texlive-graphics-def" ,texlive-graphics-def)
7177 ("texlive-xcolor" ,texlive-xcolor)
7178 ("texlive-latex-footmisc" ,texlive-latex-footmisc)
7179 ("texlive-latex-listings" ,texlive-latex-listings)
7180 ("texlive-iftex" ,texlive-iftex)
7181 ("texlive-pstricks" ,texlive-pstricks)
7182 ("texlive-pst-text" ,texlive-pst-text)
7183 ("texlive-tools" ,texlive-tools)
7184 ("texlive-latex-pgf" ,texlive-latex-pgf)))
7185 (home-page "http://www.ctan.org/pkg/xkeyval")
7186 (synopsis "Extension of the keyval package")
7187 (description
7188 "This package is an extension of the keyval package and offers additional
7189macros for setting keys and declaring and setting class or package options.
7190The package allows the programmer to specify a prefix to the name of the
7191macros it defines for keys, and to define families of key definitions; these
7192all help use in documents where several packages define their own sets of
7193keys.")
7194 (license license:lppl1.3+)))
11ecf9f4
RW
7195
7196(define-public texlive-standalone
7197 (package
7198 (name "texlive-standalone")
7199 (version (number->string %texlive-revision))
7200 (source
7201 (origin
7202 (method svn-fetch)
7203 (uri (texlive-ref "latex" "standalone"))
4c08aa57 7204 (file-name (string-append name "-" version "-checkout"))
11ecf9f4
RW
7205 (sha256
7206 (base32
7207 "192ydxcn8ir96q8qwvnppksmqf5i0p50i0wz6iqazbwmh3dqxpx4"))))
7208 (build-system texlive-build-system)
7209 (arguments '(#:tex-directory "latex/standalone"))
7210 (propagated-inputs
7211 `(("texlive-latex-xkeyval" ,texlive-latex-xkeyval)))
7212 (native-inputs
7213 `(("texlive-ydoc" ,texlive-ydoc)))
7214 (home-page "http://www.ctan.org/pkg/standalone")
7215 (synopsis "Compile TeX pictures stand-alone or as part of a document")
7216 (description "A class and package is provided which allows TeX pictures or
7217other TeX code to be compiled standalone or as part of a main document.
7218Special support for pictures with beamer overlays is also provided. The
7219package is used in the main document and skips extra preambles in sub-files.
7220The class may be used to simplify the preamble in sub-files. By default the
7221@code{preview} package is used to display the typeset code without margins.
7222The behaviour in standalone mode may adjusted using a configuration file
7223@code{standalone.cfg} to redefine the standalone environment.")
7224 (license license:lppl1.3+)))
69f0c8cf
RW
7225
7226(define-public texlive-siunitx
7227 (package
7228 (name "texlive-siunitx")
7229 (version (number->string %texlive-revision))
7230 (source (texlive-origin
7231 name version
7232 (list "/source/latex/siunitx/siunitx.dtx"
7233 "/doc/latex/siunitx/README.md")
7234 (base32
85892948 7235 "11kf6znkgw7y5qmw75qk6px6pqf57bwr53q0673zaiyq20lif96c")))
69f0c8cf
RW
7236 (build-system texlive-build-system)
7237 (arguments
7238 '(#:tex-directory "latex/siunitx"
7239 #:build-targets '("siunitx.dtx")
7240 #:phases
7241 (modify-phases %standard-phases
7242 (add-after 'unpack 'chdir
7243 (lambda _ (chdir "source/latex/siunitx") #t)))))
7244 (propagated-inputs
7245 `(("texlive-latex-l3kernel" ,texlive-latex-l3kernel)
7246 ("texlive-latex-l3packages" ,texlive-latex-l3packages)))
7247 (home-page "http://www.ctan.org/pkg/siunitx")
7248 (synopsis "Comprehensive SI units package")
7249 (description
7250 "Typesetting values with units requires care to ensure that the combined
7251mathematical meaning of the value plus unit combination is clear. In
7252particular, the SI units system lays down a consistent set of units with rules
7253on how they are to be used. However, different countries and publishers have
7254differing conventions on the exact appearance of numbers (and units). A
7255number of LaTeX packages have been developed to provide consistent application
7256of the various rules. The @code{siunitx} package takes the best from the
7257existing packages, and adds new features and a consistent interface. A number
7258of new ideas have been incorporated, to fill gaps in the existing provision.
7259The package also provides backward-compatibility with @code{SIunits},
7260@code{sistyle}, @code{unitsdef} and @code{units}. The aim is to have one
7261package to handle all of the possible unit-related needs of LaTeX users.")
7262 (license license:lppl1.3c)))
66d21335
RW
7263
7264(define-public texlive-booktabs
7265 (package
7266 (name "texlive-booktabs")
7267 (version (number->string %texlive-revision))
7268 (source
7269 (origin
7270 (method svn-fetch)
7271 (uri (texlive-ref "latex" "booktabs"))
dc08ede8 7272 (file-name (string-append name "-" version "-checkout"))
66d21335
RW
7273 (sha256
7274 (base32
7275 "1dqid48vgh25wmw8xzmx6x3pfgz1y9f0r8aza1yxq2mjny5yf68x"))))
7276 (build-system texlive-build-system)
7277 (arguments '(#:tex-directory "latex/booktabs"))
7278 (home-page "http://www.ctan.org/pkg/booktabs")
7279 (synopsis "Publication quality tables in LaTeX")
7280 (description
7281 "This package enhances the quality of tables in LaTeX, providing extra
7282commands as well as behind-the-scenes optimisation. Guidelines are given as
7283to what constitutes a good table in this context. The package offers
7284@code{longtable} compatibility.")
7285 (license license:lppl1.3+)))
a1d369f1
RW
7286
7287(define-public texlive-csquotes
7288 (let ((template (simple-texlive-package
7289 "texlive-csquotes"
7290 (list "/doc/latex/csquotes/"
7291 "/tex/latex/csquotes/")
7292 (base32
37465b5b 7293 "088gvi60d7sdl6fgg68fbz30fnpqc3yrpkx80sfw7vwgar3wm3av")
a1d369f1
RW
7294 #:trivial? #t)))
7295 (package
7296 (inherit template)
7297 (propagated-inputs
7298 `(("texlive-etoolbox" ,texlive-etoolbox)))
7299 (home-page "https://www.ctan.org/pkg/csquotes")
7300 (synopsis "Context sensitive quotation facilities")
7301 (description "This package provides advanced facilities for inline and
7302display quotations. It is designed for a wide range of tasks ranging from the
7303most simple applications to the more complex demands of formal quotations.
7304The facilities include commands, environments, and user-definable 'smart
7305quotes' which dynamically adjust to their context. Quotation marks are
7306switched automatically if quotations are nested and they can be adjusted to
7307the current language if the babel package is available. There are additional
7308facilities designed to cope with the more specific demands of academic
7309writing, especially in the humanities and the social sciences. All quote
7310styles as well as the optional active quotes are freely configurable.")
7311 (license license:lppl1.3c+))))
b01c04eb
PG
7312
7313(define-public texlive-logreq
7314 (let ((template (simple-texlive-package
7315 "texlive-logreq"
7316 (list "/doc/latex/logreq/"
7317 "/tex/latex/logreq/")
7318 (base32
7319 "13difccs3cxlkqlnhw286yb0c7mifrxfd402a2x5wwxv0m1kgfqd")
7320 #:trivial? #t)))
7321 (package
7322 (inherit template)
7323 (propagated-inputs
7324 `(("texlive-etoolbox" ,texlive-etoolbox)))
7325 (home-page "https://www.ctan.org/pkg/logreq")
49bf16b6 7326 (synopsis "Support for automation of the LaTeX workflow")
b01c04eb
PG
7327 (description "The package helps to automate a typical LaTeX
7328workflow that involves running LaTeX several times and running tools
7329such as BibTeX or makeindex. It will log requests like \"please rerun
7330LaTeX\" or \"please run BibTeX on file X\" to an external file in a
7331machine-readable format. Compiler scripts and integrated LaTeX
7332editing environments may parse this file to determine the next steps
7333in the workflow. In sum, the package will do two things:
7334
7335@enumerate
7336@item
7337enable package authors to use LaTeX commands to issue requests, and
7338
7339@item
7340collect all requests from all packages and write them to an external
7341XML file.
7342@end enumerate\n")
7343 (license license:lppl1.3c))))
b1c1d7ef
PG
7344
7345(define-public texlive-biblatex
7346 (let ((template (simple-texlive-package
7347 "texlive-biblatex"
7348 (list "/doc/latex/biblatex/"
7349 "/tex/latex/biblatex/")
7350 (base32
7351 "11kzvny50iklzkamr0rqd5x532q8rxny1xhmf96jl8mzj1d2zmay")
7352 #:trivial? #t)))
7353 (package
7354 (inherit template)
7355 (propagated-inputs
7356 `(("texlive-logreq" ,texlive-logreq)
7357 ("texlive-url" ,texlive-url)))
7358 (home-page "https://www.ctan.org/pkg/biblatex")
7359 (synopsis "Sophisticated bibliographies in LaTeX")
7360 (description "BibLaTeX is a complete reimplementation of the
7361bibliographic facilities provided by LaTeX. Formatting of the
7362bibliography is entirely controlled by LaTeX macros, facilitating the
7363design of new bibliography and citation styles. BibLaTeX uses its own
7364data backend program \"biber\" to read and process the bibliographic
7365data. With biber, the range of features provided by biblatex
7366includes:
7367
7368@enumerate
7369@item
7370full unicode support,
7371
7372@item
7373customisable bibliography labels,
7374
7375@item
7376multiple bibliographies in the same document, and
7377
7378@item
7379subdivided bibliographies, such as bibliographies per chapter or
7380section.
7381@end enumerate\n")
7382 (license license:lppl1.3c))))
5674ea45
PG
7383
7384(define-public texlive-todonotes
7385 (let ((template (simple-texlive-package
7386 "texlive-todonotes"
7387 (list "/doc/latex/todonotes/"
7388 "/tex/latex/todonotes/")
7389 (base32
7390 "0lvxsskz4bdfxhd59hf77kiq8k4nh2spb66vc6hifdgi21z8r8wm")
7391 #:trivial? #t)))
7392 (package
7393 (inherit template)
7394 (propagated-inputs
7395 `(("texlive-latex-pgf" ,texlive-latex-pgf)
7396 ("texlive-latex-xkeyval" ,texlive-latex-xkeyval)))
7397 (home-page "http://www.ctan.org/pkg/todonotes")
7398 (synopsis "Marking things to do in a LaTeX document")
7399 (description "The @code{todonotes} package lets the user mark
7400things to do later, in a simple and visually appealing way. The
7401package takes several options to enable customization and finetuning
7402of the visual appearance.")
7403 (license license:lppl1.3+))))
94ca1e19
PG
7404
7405(define-public texlive-units
7406 (let ((template (simple-texlive-package
7407 "texlive-units"
7408 (list "/doc/latex/units/"
7409 "/tex/latex/units/")
7410 (base32
7411 "1ia1vzy8dp7pdvmawwnmh9lmkajmpnnh62dixrjpb6mnxq118bfd")
7412 #:trivial? #t)))
7413 (package
7414 (inherit template)
7415 (home-page "http://www.ctan.org/pkg/units")
7416 (synopsis "Typeset physical units and fractions")
7417 (description "@code{units} is a package for typesetting physical
7418units in a standard-looking way. The package is based upon
7419@code{nicefrac}, a package for typing fractions. @code{nicefrac} is
7420included in the @code{units} bundle.")
7421 (license license:gpl3+))))
389b71aa
PG
7422
7423(define-public texlive-microtype
7424 (let ((template (simple-texlive-package
7425 "texlive-microtype"
7426 (list "/doc/latex/microtype/"
7427 "/tex/latex/microtype/")
7428 (base32
7429 "0xmjpzbj4nqmnl5m7xx1bshdk2c8n57rmbvn0j479ypj4wdlq9iy")
7430 #:trivial? #t)))
7431 (package
7432 (inherit template)
7433 (home-page "http://www.ctan.org/pkg/microtype")
7434 (synopsis "Subliminal refinements towards typographical perfection")
7435 (description "@code{microtype} provides a LaTeX interface to the
7436micro-typographic extensions that were introduced by pdfTeX and have
7437since propagated to XeTeX and LuaTeX: most prominently character
7438protrusion and font expansion, the adjustment of kerning and interword
7439spacing, hyphenatable letterspacing and the possibility to disable all
7440or selected ligatures. These features may be applied to customisable
7441sets of fonts. All micro-typographic aspects of the fonts can be
7442configured in a straight-forward and flexible way. Settings for
921fad1a
PG
7443various fonts are provided. An alternative package
7444@code{letterspace}, which also works with plain TeX, is included in
7445the bundle.")
389b71aa 7446 (license license:lppl1.3c))))
475e3768
PG
7447
7448(define-public texlive-caption
7449 (let ((template (simple-texlive-package
7450 "texlive-caption"
7451 (list "/doc/latex/caption/"
7452 "/tex/latex/caption/")
7453 (base32
7454 "09gmh8yjj9f5zak8r18g87w9p5jn7flnvmlhxmvdq6992mbdc6hg")
7455 #:trivial? #t)))
7456 (package
7457 (inherit template)
7458 (home-page "http://www.ctan.org/pkg/caption")
7459 (synopsis "Customising captions in floating environments")
7460 (description "The @code{caption} package provides many ways to
7461customise the captions in floating environments like figure and table.
7462Facilities include rotating captions, sideways captions and continued
7463captions (for tables or figures that come in several parts). A list
7464of compatibility notes, for other packages, is provided in the
7465documentation. The package also provides the \"caption outside
7466float\" facility, in the same way that simpler packages like
7467@code{capt-ofcapt-of} do. The package supersedes @code{caption2}.
7468Packages @code{bicaption}, @code{ltcaption}, @code{newfloat},
7469@code{subcaption} and @code{totalcount} are included in the bundle.")
7470 (license license:lppl1.3+))))
905a2ff0
PG
7471
7472(define-public texlive-symbol
7473 (package
7474 (inherit (simple-texlive-package
7475 "texlive-symbol"
7476 (list "/dvips/symbol/"
7477 "/fonts/afm/adobe/symbol/"
7478 "/fonts/afm/urw/symbol/"
7479 "/fonts/tfm/adobe/symbol/"
7480 "/fonts/tfm/urw35vf/symbol/"
7481 "/fonts/type1/urw/symbol/"
7482 "/fonts/map/dvips/symbol/"
7483 "/tex/latex/symbol/")
7484 (base32
7485 "01xiygb88xwi7rfvh1zrlxzi5pqb5fvylws5zzszg379iz4pyzwj")
7486 #:trivial? #t))
7487 (home-page "https://ctan.org/pkg/urw-base35")
7488 (synopsis "URW Base 35 font pack for LaTeX")
7489 (description "This package provides a drop-in replacement for the
7490Symbol font from Adobe's basic set.")
7491 (license license:gpl2)))
a489d2f1
PG
7492
7493(define-public texlive-mathpazo
7494 (package
7495 (inherit (simple-texlive-package
7496 "texlive-mathpazo"
7497 (list "/doc/latex/mathpazo/"
7498 "/fonts/afm/public/mathpazo/"
7499 "/fonts/tfm/public/mathpazo/"
6ca673b3
PG
7500 "/fonts/type1/public/mathpazo/"
7501 "/fonts/vf/public/mathpazo/")
a489d2f1 7502 (base32
6ca673b3 7503 "02in6hdnbnkz216mpy8g6fk3wmlls8nh5982vmg37vhbj77lk0rh")
a489d2f1
PG
7504 #:trivial? #t))
7505 (home-page "http://www.ctan.org/pkg/mathpazo")
7506 (synopsis "Fonts to typeset mathematics to match Palatino")
7507 (description "The Pazo Math fonts are a family of PostScript fonts
7508suitable for typesetting mathematics in combination with the Palatino
7509family of text fonts. The Pazo Math family is made up of five fonts
7510provided in Adobe Type 1 format. These contain glyphs that are
7511usually not available in Palatino and for which Computer Modern looks
7512odd when combined with Palatino. These glyphs include the uppercase
7513Greek alphabet in upright and slanted shapes, the lowercase Greek
7514alphabet in slanted shape, several mathematical glyphs and the
7515uppercase letters commonly used to represent various number sets.
7516LaTeX macro support is provided in package @code{psnfss}.")
7517 (license license:gpl3+)))
5bc041df
PG
7518
7519(define-public texlive-fpl
7520 (package
7521 (inherit (simple-texlive-package
7522 "texlive-fpl"
7523 (list "/doc/fonts/fpl/"
7524 "/source/fonts/fpl/"
7525 "/fonts/afm/public/fpl/"
7526 "/fonts/type1/public/fpl/")
7527 (base32
7528 "02gkl516z9kn8xqs269pdkqn37sxm8ib0pcs43s4rs2rhyyl5z68")
7529 #:trivial? #t))
7530 (home-page "https://www.ctan.org/pkg/fpl")
7531 (synopsis "SC and OsF fonts for URW Palladio L")
7532 (description "The FPL Fonts provide a set of SC/OsF fonts for URW
7533Palladio L which are compatible with the Palatino SC/OsF fonts from
7534Adobe. LaTeX use is enabled by the mathpazo package, which is part of
7535the @code{psnfss} distribution.")
7536 ;; Either LPPL version 1.0 or later, or GPL version 2
7537 (license (list license:lppl1.0+ license:gpl2))))