1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582
|
Source: texlive-base
Section: tex
Priority: optional
Maintainer: Debian TeX Task Force <debian-tex-maint@lists.debian.org>
Uploaders: Norbert Preining <norbert@preining.info>, Hilmar Preusse <hille42@web.de>, Hilmar Preuße <hille42@debian.org>
Build-Depends: debhelper-compat (= 13), dh-strip-nondeterminism
Build-Depends-Indep: sharutils, tex-common (>= 6.14), findutils (>=4.2.0)
Standards-Version: 4.5.1
Homepage: http://www.tug.org/texlive/
Vcs-Git: https://github.com/debian-tex/texlive-nonbin.git [texlive-base]
Vcs-Browser: https://github.com/debian-tex/texlive-nonbin/tree/master/texlive-base
Package: texlive-base
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, libpaper-utils, sensible-utils, tex-common (>= 6.14), texlive-binaries (>= 2024.20240313), ucf, xdg-utils
Conflicts: tex4ht (<< 20160814), texlive (<< 2024.20240401), texlive-base (<< 2024.20240401), texlive-bibtex-extra (<< 2024.20240401), texlive-binaries (<< 2024.20240313), texlive-extra-utils (<< 2024.20240401), texlive-font-utils (<< 2024.20240401), texlive-fonts-extra (<< 2024.20240401), texlive-fonts-extra-doc (<< 2024.20240401), texlive-fonts-extra-links (<< 2024.20240401), texlive-fonts-recommended (<< 2024.20240401), texlive-fonts-recommended-doc (<< 2024.20240401), texlive-formats-extra (<< 2024.20240401), texlive-full (<< 2024.20240401), texlive-games (<< 2024.20240401), texlive-humanities (<< 2024.20240401), texlive-humanities-doc (<< 2024.20240401), texlive-lang-all (<< 2024.20240401), texlive-lang-arabic (<< 2024.20240401), texlive-lang-chinese (<< 2024.20240401), texlive-lang-cjk (<< 2024.20240401), texlive-lang-cyrillic (<< 2024.20240401), texlive-lang-czechslovak (<< 2024.20240401), texlive-lang-english (<< 2024.20240401), texlive-lang-european (<< 2024.20240401), texlive-lang-french (<< 2024.20240401), texlive-lang-german (<< 2024.20240401), texlive-lang-greek (<< 2024.20240401), texlive-lang-italian (<< 2024.20240401), texlive-lang-japanese (<< 2024.20240401), texlive-lang-korean (<< 2024.20240401), texlive-lang-other (<< 2024.20240401), texlive-lang-polish (<< 2024.20240401), texlive-lang-portuguese (<< 2024.20240401), texlive-lang-spanish (<< 2024.20240401), texlive-latex-base (<< 2024.20240401), texlive-latex-base-doc (<< 2024.20240401), texlive-latex-extra (<< 2024.20240401), texlive-latex-extra-doc (<< 2024.20240401), texlive-latex-recommended (<< 2024.20240401), texlive-latex-recommended-doc (<< 2024.20240401), texlive-luatex (<< 2024.20240401), texlive-metapost (<< 2024.20240401), texlive-metapost-doc (<< 2024.20240401), texlive-music (<< 2024.20240401), texlive-pictures (<< 2024.20240401), texlive-pictures-doc (<< 2024.20240401), texlive-plain-generic (<< 2024.20240401), texlive-pstricks (<< 2024.20240401), texlive-pstricks-doc (<< 2024.20240401), texlive-publishers (<< 2024.20240401), texlive-publishers-doc (<< 2024.20240401), texlive-science (<< 2024.20240401), texlive-science-doc (<< 2024.20240401), texlive-xetex (<< 2024.20240401)
Recommends: lmodern (>= 0.93.3)
Provides: dvipdfmx
Suggests: ghostscript, gv | postscript-viewer, perl-tk, xpdf | pdf-viewer, xzdec
Replaces: texlive-common (<< 2013), texlive-extra-utils (<< 2019.20190626), texlive-extra-utils (<< 2019.20191208), texlive-extra-utils (<< 2024.20240829), texlive-fonts-recommended (<< 2019.20200213), texlive-fonts-recommended-doc (<< 2019.20200213), texlive-lang-cyrillic (<< 2019.20190506), texlive-lang-european (<< 2019.20190506), texlive-lang-other (<< 2019.20190506), texlive-lang-spanish (<< 2019.20190506), texlive-latex-extra (<< 2019.20190701), texlive-latex-extra-doc (<< 2019.20190701), texlive-plain-generic (<< 2020)
Breaks: texlive-common (<< 2013), texlive-extra-utils (<< 2019.20190626), texlive-extra-utils (<< 2019.20191208), texlive-extra-utils (<< 2020.20200329-2), texlive-extra-utils (<< 2024.20240829), texlive-fonts-recommended (<< 2019.20200213), texlive-fonts-recommended-doc (<< 2019.20200213), texlive-lang-cyrillic (<< 2019.20190506), texlive-lang-english (<< 2022.20220923), texlive-lang-european (<< 2019.20190506), texlive-lang-other (<< 2019.20190506), texlive-lang-spanish (<< 2019.20190506), texlive-latex-extra (<< 2019.20190701), texlive-latex-extra-doc (<< 2019.20190701), texlive-math-extra (<< 2017), texlive-plain-generic (<< 2020)
Description: TeX Live: Essential programs and files
These files are regarded as basic for any TeX system, covering plain TeX
macros, Computer Modern fonts, and configuration for common drivers; no
LaTeX.
.
This package includes the following CTAN packages:
.
amsfonts -- TeX fonts from the American Mathematical Society
.
bibtex -- Process bibliographies (bib files) for LaTeX or other formats
.
cm -- Computer Modern fonts
.
colorprofiles -- Collection of free ICC profiles
.
dvipdfmx -- An extended version of dvipdfm
.
dvips -- A DVI to PostScript driver
.
ec -- Computer modern fonts in T1 and TS1 encodings
.
enctex -- A TeX extension that translates input on its way into TeX
.
etex -- An extended version of TeX, from the NTS project
.
etex-pkg -- E-TeX support package
.
extractbb -- A reimplementation of extractbb, written in Lua
.
glyphlist -- Adobe Glyph List and TeX extensions
.
graphics-def -- Colour and graphics option files
.
hyph-utf8 -- Hyphenation patterns expressed in UTF-8
.
hyphen-base -- core hyphenation support files
.
hyphenex -- US English hyphenation exceptions file
.
ifplatform -- Conditionals to test which platform is being used
.
iftex -- Am I running under pdfTeX, XeTeX or LuaTeX?
.
knuth-lib -- Core TeX and Metafont sources from Knuth
.
knuth-local -- Knuth's local information
.
kpathsea -- Path searching library for TeX-related files
.
lua-alt-getopt -- Process application arguments the same way as getopt_long
.
luahbtex -- LuaTeX with HarfBuzz library for glyph shaping
.
luatex -- The LuaTeX engine
.
makeindex -- Makeindex development sources
.
metafont -- A system for specifying fonts
.
mflogo -- LaTeX support for Metafont logo fonts
.
mfware -- Supporting tools for use with Metafont
.
modes -- A collection of Metafont mode_def's
.
pdftex -- A TeX extension for direct creation of PDF
.
plain -- The Plain TeX format
.
tex -- A sophisticated typesetting engine
.
tex-ini-files -- Model TeX format creation files
.
texlive-common -- TeX Live documentation (common elements)
.
texlive-en -- TeX Live manual (English)
.
texlive-msg-translations -- translations of the TeX Live installer and TeX
Live Manager
.
texlive-scripts -- TeX Live infrastructure programs
.
texlive.infra -- basic TeX Live infrastructure
.
unicode-data -- Unicode data and loaders for TeX
.
xdvi -- A DVI previewer for the X Window System
.
texdoc -- Documentation access for TeX Live
.
texdoctk -- Easy access to package documentation
Package: texlive-latex-base
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, fonts-lmodern, texlive-base (>= 2022.20220405), texlive-base (>= 2024.20240401), texlive-binaries (>= 2024.20240313)
Suggests: texlive-latex-base-doc, wp2latex
Replaces: texlive-latex-extra (<< 2022.20220923), texlive-latex-recommended (<< 2019.20200205), texlive-latex-recommended (<< 2019.20200225), texlive-latex-recommended (<< 2020.20201203), texlive-latex-recommended (<< 2022.20230122), texlive-latex-recommended (<< 2024.20250309)
Breaks: latexml (<= 0.8.6-4), texlive-base (<< 2022.20220405), texlive-formats-extra (<< 2020.20201129), texlive-lang-japanese (<= 2022.20221123-1), texlive-latex-extra (<< 2019.20191203), texlive-latex-extra (<< 2022.20220923), texlive-latex-recommended (<< 2019.20191208), texlive-latex-recommended (<< 2019.20200205), texlive-latex-recommended (<< 2019.20200225), texlive-latex-recommended (<< 2020.20201203), texlive-latex-recommended (<< 2022.20230122), texlive-latex-recommended (<< 2024.20250309)
Description: TeX Live: LaTeX fundamental packages
These packages are either mandated by the core LaTeX team, or very widely
used and strongly recommended in practice.
.
This package includes the following CTAN packages:
.
ae -- Virtual fonts for T1 encoded CMR-fonts
.
amscls -- AMS document classes for LaTeX
.
amsmath -- AMS mathematical facilities for LaTeX
.
atbegshi -- Execute stuff at \shipout time
.
atveryend -- Hooks at the very end of a document
.
auxhook -- Hooks for auxiliary files
.
babel -- Multilingual support for LaTeX, LuaLaTeX, XeLaTeX, and Plain TeX
.
babel-english -- Babel support for English
.
babelbib -- Multilingual bibliographies
.
bigintcalc -- Integer calculations on very large numbers
.
bitset -- Handle bit-vector datatype
.
bookmark -- A new bookmark (outline) organization for hyperref
.
carlisle -- David Carlisle's small packages
.
colortbl -- Add colour to LaTeX tables
.
epstopdf-pkg -- Call epstopdf "on the fly"
.
etexcmds -- Avoid name clashes with e-TeX commands
.
etoolbox -- e-TeX tools for LaTeX
.
fancyhdr -- Extensive control of page headers and footers in LaTeX2e
.
firstaid -- First aid for external LaTeX files and packages that need
updating
.
fix2col -- Fix miscellaneous two column mode features
.
geometry -- Flexible and complete interface to document dimensions
.
gettitlestring -- Clean up title references
.
graphics -- The LaTeX standard graphics bundle
.
graphics-cfg -- Sample configuration files for LaTeX color and graphics
.
grfext -- Manipulate the graphics package's list of extensions
.
hopatch -- Load patches for packages
.
hycolor -- Implements colour for packages hyperref and bookmark
.
hypcap -- Adjusting the anchors of captions
.
hyperref -- Extensive support for hypertext in LaTeX
.
intcalc -- Expandable arithmetic operations with integers
.
kvdefinekeys -- Define keys for use in the kvsetkeys package
.
kvoptions -- Key value format for package options
.
kvsetkeys -- Key value parser with default handler support
.
l3backend -- LaTeX3 backend drivers
.
l3kernel -- LaTeX3 programming conventions
.
l3packages -- High-level LaTeX3 concepts
.
latex -- A TeX macro package that defines LaTeX
.
latex-bin -- LaTeX executables and man pages
.
latex-fonts -- A collection of fonts used in LaTeX distributions
.
latex-lab -- LaTeX laboratory
.
latexconfig -- configuration files for LaTeX-related formats
.
letltxmacro -- Let assignment for LaTeX macros
.
ltxcmds -- Some LaTeX kernel commands for general use
.
ltxmisc -- Miscellaneous LaTeX packages, etc
.
mfnfss -- Packages to typeset oldgerman and pandora fonts in LaTeX
.
mptopdf -- mpost to PDF, native MetaPost graphics inclusion
.
natbib -- Flexible bibliography support
.
oberdiek -- A bundle of packages submitted by Heiko Oberdiek
.
pagesel -- Select pages of a document for output
.
pdfescape -- Implements pdfTeX's escape features using TeX or e-TeX
.
pslatex -- Use PostScript fonts by default
.
psnfss -- Font support for common PostScript fonts
.
pspicture -- PostScript picture support
.
refcount -- Counter operations with label references
.
rerunfilecheck -- Checksum based rerun checks on auxiliary files
.
stringenc -- Converting a string between different encodings
.
tools -- The LaTeX standard tools bundle
.
uniquecounter -- Provides unlimited unique counter
.
url -- Verbatim with URL-sensitive line breaks
.
hypdoc -- Hyper extensions for doc.sty
.
pdftexcmds -- LuaTeX support for pdfTeX utility functions
.
infwarerr -- Complete set of information/warning/error message macros
Package: texlive-latex-recommended
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-base (>= 2022.20220405), texlive-binaries (>= 2024.20240313), texlive-latex-base (>= 2024.20240401)
Suggests: texlive-latex-recommended-doc, texlive-luatex, texlive-pstricks
Replaces: texlive-latex-base (<< 2019.20191208), texlive-latex-extra (<< 2019.20190324), texlive-latex-extra (<< 2019.20190507), texlive-latex-extra (<< 2019.20191208)
Breaks: texlive-base (<< 2022.20220405), texlive-latex-base (<< 2019.20191208), texlive-latex-base (<< 2019.20200205), texlive-latex-base (<< 2019.20200225), texlive-latex-base (<< 2020.20201203), texlive-latex-base (<< 2022.20230122), texlive-latex-base (<< 2024.20250309), texlive-latex-extra (<< 2019.20190324), texlive-latex-extra (<< 2019.20190507), texlive-latex-extra (<< 2019.20190915), texlive-latex-extra (<< 2019.20191208)
Description: TeX Live: LaTeX recommended packages
A collection of recommended add-on packages for LaTeX which have widespread
use.
.
This package includes the following CTAN packages:
.
anysize -- A simple package to set up document margins
.
attachfile2 -- Attach files into PDF
.
beamer -- A LaTeX class for producing presentations and slides
.
booktabs -- Publication quality tables in LaTeX
.
breqn -- Automatic line breaking of displayed equations
.
caption -- Customising captions in floating environments
.
cite -- Improved citation handling in LaTeX
.
cmap -- Make PDF files searchable and copyable
.
crop -- Support for cropmarks
.
ctable -- Flexible typesetting of table and figure floats using key/value
directives
.
eso-pic -- Add picture commands (or backgrounds) to every page
.
euenc -- Unicode font encoding definitions for XeTeX
.
euler -- Use AMS Euler fonts for math
.
everysel -- Provides hooks into \selectfont
.
everyshi -- Take action at every \shipout
.
extsizes -- Extend the standard classes' size options
.
fancybox -- Variants of \fbox and other games with boxes
.
fancyref -- A LaTeX package for fancy cross-referencing
.
fancyvrb -- Sophisticated verbatim text
.
filehook -- Hooks for input files
.
float -- Improved interface for floating objects
.
fontspec -- Advanced font selection in XeLaTeX and LuaLaTeX
.
footnotehyper -- hyperref aware footnote.sty
.
fp -- Fixed point arithmetic
.
grffile -- Extended file name support for graphics (legacy package)
.
hologo -- A collection of logos with bookmark support
.
index -- Extended index for LaTeX including multiple indexes
.
jknapltx -- Miscellaneous packages by Joerg Knappen
.
koma-script -- A bundle of versatile classes and packages
.
l3experimental -- Experimental LaTeX3 concepts
.
latexbug -- Bug-classification for LaTeX related bugs
.
lineno -- Line numbers on paragraphs
.
listings -- Typeset source code listings using LaTeX
.
lwarp -- Converts LaTeX to HTML
.
mathspec -- Specify arbitrary fonts for mathematics in XeTeX
.
mathtools -- Mathematical tools to use with amsmath
.
mdwtools -- Miscellaneous tools by Mark Wooding
.
memoir -- Typeset fiction, non-fiction and mathematical books
.
metalogo -- Extended TeX logo macros
.
microtype -- Subliminal refinements towards typographical perfection
.
newfloat -- Define new floating environments
.
ntgclass -- "European" versions of standard classes
.
parskip -- Layout with zero \parindent, non-zero \parskip
.
pdfcolfoot -- Separate color stack for footnotes with pdfTeX
.
pdflscape -- Make landscape pages display as landscape
.
pdfmanagement-testphase -- LaTeX PDF management testphase bundle
.
pdfpages -- Include PDF documents in LaTeX
.
polyglossia -- An alternative to babel for XeLaTeX and LuaLaTeX
.
psfrag -- Replace strings in encapsulated PostScript figures
.
ragged2e -- Alternative versions of "ragged"-type commands
.
rcs -- Use RCS (revision control system) tags in LaTeX documents
.
sansmath -- Maths in a sans font
.
section -- Modifying section commands in LaTeX
.
seminar -- Make overhead slides
.
sepnum -- Print numbers in a "friendly" format
.
setspace -- Set space between lines
.
subfig -- Figures broken into subfigures
.
textcase -- Case conversion ignoring mathematics, etc
.
thumbpdf -- Thumbnails for pdfTeX and dvips/ps2pdf
.
translator -- Easy translation of strings in LaTeX
.
typehtml -- Typeset HTML directly from LaTeX
.
ucharcat -- Implementation of the (new in 2015) XeTeX \Ucharcat command in
lua, for LuaTeX
.
underscore -- Control the behaviour of "_" in text
.
unicode-math -- Unicode mathematics support for XeTeX and LuaTeX
.
xcolor -- Driver-independent color extensions for LaTeX and pdfLaTeX
.
xfrac -- Split-level fractions
.
xkeyval -- Extension of the keyval package
.
xltxtra -- "Extras" for LaTeX users of XeTeX
.
xunicode -- Generate Unicode characters from accented glyphs
Package: texlive-fonts-recommended
Section: fonts
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-base (>= 2022.20220405), texlive-base (>= 2024.20240401)
Recommends: tex-gyre, tipa (>= 2:1.2-2.1)
Suggests: texlive-fonts-recommended-doc
Breaks: texlive-base (<< 2019.20200213), texlive-base (<< 2022.20220405)
Description: TeX Live: Recommended fonts
Recommended fonts, including the base 35 PostScript fonts, Latin Modern, TeX
Gyre, and T1 and other encoding support for Computer Modern, in outline
form.
.
This package includes the following CTAN packages:
.
avantgar -- URW 'Base 35' font pack for LaTeX
.
bookman -- URW 'Base 35' font pack for LaTeX
.
charter -- Charter fonts
.
cmextra -- Knuth's local information
.
courier -- URW 'Base 35' font pack for LaTeX
.
euro -- Provide Euro values for national currency amounts
.
euro-ce -- Euro and CE sign font
.
eurosym -- Metafont and macros for Euro sign
.
fpl -- SC and OsF fonts for URW Palladio L
.
helvetic -- URW 'Base 35' font pack for LaTeX
.
manfnt-font -- Knuth's "manual" fonts
.
marvosym -- Martin Vogel's Symbols (marvosym) font
.
mathpazo -- Fonts to typeset mathematics to match Palatino
.
mflogo-font -- Metafont logo font
.
ncntrsbk -- URW 'Base 35' font pack for LaTeX
.
palatino -- URW 'Base 35' font pack for LaTeX
.
pxfonts -- Palatino-like fonts in support of mathematics
.
rsfs -- Ralph Smith's Formal Script font
.
symbol -- URW 'Base 35' font pack for LaTeX
.
times -- URW 'Base 35' font pack for LaTeX
.
txfonts -- Times-like fonts in support of mathematics
.
utopia -- Adobe Utopia fonts
.
wasy -- The wasy fonts (Waldi symbol fonts)
.
wasy-type1 -- Type 1 versions of wasy fonts
.
wasysym -- LaTeX support for the wasy fonts
.
zapfchan -- URW 'Base 35' font pack for LaTeX
.
zapfding -- URW 'Base 35' font pack for LaTeX
Package: texlive-pictures
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, python3, texlive-base (>= 2022.20220405), texlive-base (>= 2024.20240401), texlive-binaries (>= 2024.20240313), texlive-latex-recommended (>= 2024.20240401)
Recommends: ruby, tk
Suggests: dot2tex, prerex (>> 6.5.3-1), texlive-latex-extra, texlive-pictures-doc, vprerex (>> 6.5.3-1)
Replaces: prerex (<= 6.5.3-1)
Breaks: prerex (<= 6.5.3-1), texlive-base (<< 2022.20220405)
Description: TeX Live: Graphics, pictures, diagrams
Including TikZ, pict, etc., but MetaPost and PStricks are separate.
.
This package includes the following CTAN packages:
.
adigraph -- Augmenting directed graphs
.
aobs-tikz -- TikZ styles for creating overlaid pictures in beamer
.
askmaps -- Typeset American style Karnaugh maps
.
asyfig -- Commands for using Asymptote figures
.
asypictureb -- User-friendly integration of Asymptote into LaTeX
.
autoarea -- Automatic computation of bounding boxes with PiCTeX
.
bardiag -- LaTeX package for drawing bar diagrams
.
beamerswitch -- Convenient mode selection in Beamer documents
.
binarytree -- Drawing binary trees using TikZ
.
blochsphere -- Draw pseudo-3D diagrams of Bloch spheres
.
bloques -- Generate control diagrams
.
blox -- Draw block diagrams, using TikZ
.
bodegraph -- Draw Bode, Nyquist and Black plots with gnuplot and TikZ
.
bondgraph -- Create bond graph figures in LaTeX documents
.
bondgraphs -- Draws bond graphs in LaTeX, using PGF/TikZ
.
braids -- Draw braid diagrams with PGF/TikZ
.
bxeepic -- Eepic facilities using pict2e
.
byo-twemojis -- "Build Your Own Twemojis" with TikZ
.
byrne -- This package provides a set of tools to typeset geometric proofs in
the style of Oliver Byrne's 1847 ed. of Euclid's "Elements"
.
cachepic -- Convert document fragments into graphics
.
callouts -- Put simple annotations and notes inside a picture
.
callouts-box -- Provides visually appealing callout boxes
.
celtic -- A TikZ library for drawing celtic knots
.
chemfig -- Draw molecules with easy syntax
.
circuit-macros -- M4 macros for electric circuit diagrams
.
circuitikz -- Draw electrical networks with TikZ
.
circularglyphs -- A circular glyphs alphabet
.
coffeestains -- Add coffee stains to documents
.
coloredbelts -- Insert colored belts in documents (to present skills, for
example)
.
combinedgraphics -- Include graphic (EPS or PDF)/LaTeX combinations
.
curve -- A class for making curriculum vitae
.
curve2e -- Extensions for package pict2e
.
curves -- Curves for LaTeX picture environment
.
dcpic -- Commutative diagrams in a LaTeX and TeX documents
.
diagmac2 -- Diagram macros, using pict2e
.
ditaa -- Use ditaa diagrams within LaTeX documents
.
doc-pictex -- A summary list of PicTeX documentation
.
dot2texi -- Create graphs within LaTeX using the dot2tex tool
.
dottex -- Use dot code in LaTeX
.
dpcircling -- Decorated text boxes using TikZ
.
dratex -- General drawing macros
.
drs -- Typeset Discourse Representation Structures (DRS)
.
duotenzor -- Drawing package for circuit and duotensor diagrams
.
dynkin-diagrams -- Draw Dynkin, Coxeter, and Satake diagrams using TikZ
.
ecgdraw -- Draws electrocardiograms (ECG)
.
eepic -- Extensions to epic and the LaTeX drawing tools
.
egpeirce -- Draw existential graphs invented by Charles S. Peirce
.
ellipse -- Draw ellipses and elliptical arcs using the standard LaTeX2e
picture environment
.
endofproofwd -- An "end of proof" sign
.
epspdf -- Converter for PostScript, EPS and PDF
.
epspdfconversion -- On-the-fly conversion of EPS to PDF
.
esk -- Package to encapsulate Sketch files in LaTeX sources
.
euflag -- A command to reproduce the flag of the European Union
.
fadingimage -- Add full width fading pictures at the top or bottom of a page
.
fast-diagram -- Easy generation of FAST diagrams
.
fenetrecas -- Commands for CAS-like windows (Xcas or Geogebra) in TikZ
.
fig4latex -- Management of figures for large LaTeX documents
.
figchild -- Pictures for creating children's activities
.
figput -- Create interactive figures in LaTeX
.
fitbox -- Fit graphics on a page
.
flowchart -- Shapes for drawing flowcharts, using TikZ
.
forest -- Drawing (linguistic) trees
.
genealogytree -- Pedigree and genealogical tree diagrams
.
getmap -- Download OpenStreetMap maps for use in documents
.
gincltex -- Include TeX files as graphics (.tex support for
\includegraphics)
.
gnuplottex -- Embed Gnuplot commands in LaTeX documents
.
gradientframe -- Simple gradient frames around objects
.
grafcet -- Draw Grafcet/SFC with TikZ
.
graph35 -- Draw keys and screen items of several Casio calculators
.
graphicxpsd -- Adobe Photoshop Data format (PSD) support for graphicx
package
.
graphviz -- Write graphviz (dot+neato) inline in LaTeX documents
.
gtrlib-largetrees -- Library for genealogytree aiming at large trees
.
harveyballs -- Create Harvey Balls using TikZ
.
here -- Emulation of obsolete package for "here" floats
.
hf-tikz -- A simple way to highlight formulas and formula parts
.
hobby -- An implementation of Hobby's algorithm for PGF/TikZ
.
hvfloat -- Controlling captions, fullpage and doublepage floats
.
istgame -- Draw Game Trees with TikZ
.
kblocks -- Easily typeset Control Block Diagrams and Signal Flow Graphs
.
kinematikz -- Design kinematic chains and mechanisms
.
knitting -- Produce knitting charts, in Plain TeX or LaTeX
.
knittingpattern -- Create knitting patterns
.
ladder -- Draw simple ladder diagrams using TikZ
.
lapdf -- PDF drawing directly in TeX documents
.
latex-make -- Easy compiling of complex (and simple) LaTeX documents
.
liftarm -- Geometric constructions with liftarms using TikZ and LaTeX3
.
lpic -- Put LaTeX material over included graphics
.
lroundrect -- LaTeX macros for utilizing the roundrect MetaPost routines
.
luamesh -- Computes and draws 2D Delaunay triangulation
.
luasseq -- Drawing spectral sequences in LuaLaTeX
.
maker -- Include Arduino or Processing code in LaTeX documents
.
makeshape -- Declare new PGF shapes
.
maritime -- International maritime signal flags using TikZ
.
mathspic -- A Perl filter program for use with PiCTeX
.
memoize -- Externalization of graphics and memoization of compilation
results in general
.
mercatormap -- Spherical Mercator coordinate systems and Web Mercator tile
integration
.
milsymb -- LaTeX package for TikZ based drawing of military symbols as per
NATO APP-6(C)
.
miniplot -- A package for easy figure arrangement
.
mkpic -- Perl interface to mfpic
.
modiagram -- Drawing molecular orbital diagrams
.
neuralnetwork -- Graph-drawing for neural networks
.
nl-interval -- Represent intervals on the number line
.
nndraw -- Draw neural networks
.
numericplots -- Plot numeric data (including Matlab export) using PSTricks
.
outilsgeomtikz -- Some geometric tools, with TikZ
.
papiergurvan -- Commands to work with Gurvan Paper
.
pb-diagram -- A commutative diagram package using LAMSTeX or Xy-pic fonts
.
petri-nets -- A set TeX/LaTeX packages for drawing Petri nets
.
pgf -- Create PostScript and PDF graphics in TeX
.
pgf-blur -- PGF/TikZ package for "blurred" shadows
.
pgf-interference -- Drawing interference patterns with PGF/TikZ
.
pgf-periodictable -- Create custom periodic tables of elements
.
pgf-pie -- Draw pie charts, using PGF
.
pgf-soroban -- Create images of the soroban using TikZ/PGF
.
pgf-spectra -- Draw continuous or discrete spectra using PGF/TikZ
.
pgf-umlcd -- Some LaTeX macros for UML Class Diagrams
.
pgf-umlsd -- Draw UML Sequence Diagrams
.
pgfgantt -- Draw Gantt charts with TikZ
.
pgfkeysearch -- This package offers a way to find keys in a given path
'recursively', unlike pgfkeysvalueof
.
pgfkeyx -- Extended and more robust version of pgfkeys
.
pgfmolbio -- Draw graphs typically found in molecular biology texts
.
pgfmorepages -- Assemble multiple logical pages onto a physical page
.
pgfopts -- LaTeX package options with pgfkeys
.
pgfornament -- Drawing of Vectorian ornaments with PGF/TikZ
.
pgfplots -- Create normal/logarithmic plots in two and three dimensions
.
pgfplotsthemebeamer -- Use colours from the current beamer theme in pgfplots
.
picinpar -- Insert pictures into paragraphs
.
pict2e -- New implementation of picture commands
.
pictex -- Picture drawing macros for TeX and LaTeX
.
pictex2 -- Adds relative coordinates and improves the \plot command
.
pictochrono -- Insert "chronometer pictograms" with a duration
.
pinlabel -- A TeX labelling package
.
pixelart -- Draw pixel-art pictures
.
pixelarttikz -- Work with PixelArts, with TikZ
.
pmgraph -- "Poor man's" graphics
.
polyhedra -- A TikZ package for drawing polyhedra
.
polyomino -- Polyominoes using TikZ and LaTeX3
.
postage -- Stamp letters with >>Deutsche Post<<'s service >>Internetmarke<<
.
postit -- A LaTeX package for displaying Post-it notes
.
prerex -- Interactive editor and macro support for prerequisite charts
.
prisma-flow-diagram -- This package provides an abstraction for creating
PRISMA 2009 flow diagrams in LaTeX
.
productbox -- Typeset a three-dimensional product box
.
ptolemaicastronomy -- Diagrams of sphere models for variably strict
conditionals (Lewis counterfactuals)
.
puyotikz -- Quickly typeset board states of Puyo Puyo games
.
pxpgfmark -- e-pTeX driver for PGF inter-picture connections
.
pxpic -- Draw pixel pictures
.
qcircuit -- Macros to generate quantum ciruits
.
qrcode -- Generate QR codes in LaTeX
.
quantikz -- Draw quantum circuit diagrams
.
randbild -- Marginal pictures
.
randomwalk -- Random walks using TikZ
.
realhats -- Put real hats on symbols instead of ^
.
reotex -- Draw Reo Channels and Circuits
.
robotarm -- TikZ powered LaTeX package to draw parameterized 2D robot arms
.
rviewport -- Relative Viewport for Graphics Inclusion
.
sa-tikz -- TikZ library to draw switching architectures
.
sacsymb -- "Sacred Symbols" prepared with TikZ
.
schemabloc -- Draw block diagrams, using TikZ
.
scratch -- Draw programs like "scratch"
.
scratch3 -- Draw programs like "scratch"
.
scsnowman -- Snowman variants using TikZ
.
setdeck -- Typeset cards for Set
.
signchart -- Create beautifully typeset sign charts
.
simplenodes -- Simple nodes in four colors written in TikZ for LaTeX
.
simpleoptics -- Drawing lenses and mirrors for optical diagrams
.
smartdiagram -- Generate diagrams from lists
.
spath3 -- Manipulate "soft paths" in PGF
.
spectralsequences -- Print spectral sequence diagrams using PGF/TikZ
.
strands -- Draw objects constructed from strands
.
sunpath -- Draw sun path charts
.
swimgraf -- Graphical/textual representations of swimming performances
.
syntaxdi -- Create "railroad" syntax diagrams
.
table-fct -- Draw a variations table of functions and a convexity table of
its graph
.
texdraw -- Graphical macros, using embedded PostScript
.
ticollege -- Graphical representation of keys on a standard scientific
calculator
.
tikz-3dplot -- Coordinate transformation styles for 3d plotting in TikZ
.
tikz-among-us -- Create some AmongUs characters in TikZ environments
.
tikz-bagua -- Draw Bagua symbols in Yijing
.
tikz-bayesnet -- Draw Bayesian networks, graphical models and directed
factor graphs
.
tikz-bbox -- Precise determination of bounding boxes in TikZ
.
tikz-bpmn -- A TikZ library for creating BPMN models
.
tikz-cd -- Create commutative diagrams with TikZ
.
tikz-decofonts -- Simple decoration fonts, made with TikZ, for short texts
.
tikz-dependency -- A library for drawing dependency graphs
.
tikz-dimline -- Technical dimension lines using PGF/TikZ
.
tikz-ext -- A collection of libraries for PGF/TikZ
.
tikz-feynhand -- Feynman diagrams with TikZ
.
tikz-feynman -- Feynman diagrams with TikZ
.
tikz-imagelabels -- Put labels on images using TikZ
.
tikz-inet -- Draw interaction nets with TikZ
.
tikz-kalender -- A LaTeX based calendar using TikZ
.
tikz-karnaugh -- Typeset Karnaugh maps using TikZ
.
tikz-ladder -- Draw ladder diagrams using TikZ
.
tikz-lake-fig -- Schematic diagrams of lakes
.
tikz-layers -- TikZ provides graphical layers on TikZ: "behind", "above" and
"glass"
.
tikz-mirror-lens -- Spherical mirrors and lenses in TikZ
.
tikz-nef -- Create diagrams for neural networks constructed with the methods
of the Neural Engineering Framework (NEF)
.
tikz-network -- Draw networks with TikZ
.
tikz-nfold -- Triple, quadruple, and n-fold paths with TikZ
.
tikz-opm -- Typeset OPM diagrams
.
tikz-optics -- A library for drawing optical setups with TikZ
.
tikz-osci -- Produce oscilloscope "screen shots"
.
tikz-page -- Small macro to help building nice and complex layout materials
.
tikz-palattice -- Draw particle accelerator lattices with TikZ
.
tikz-planets -- Illustrate celestial mechanics and the solar system
.
tikz-qtree -- Use existing qtree syntax for trees in TikZ
.
tikz-relay -- TikZ library for typesetting electrical diagrams
.
tikz-sfc -- Symbols collection for typesetting Sequential Function Chart
(SFC) diagrams (PLC programs)
.
tikz-swigs -- Horizontally and vertically split elliptical nodes
.
tikz-timing -- Easy generation of timing diagrams as TikZ pictures
.
tikz-trackschematic -- A TikZ library for creating track diagrams in
railways
.
tikz-truchet -- Draw Truchet tiles
.
tikz2d-fr -- Work with some 2D TikZ commands (French)
.
tikz3d-fr -- Work with some 3D figures
.
tikzbricks -- Drawing bricks with TikZ
.
tikzcalendarnotes -- Highlighting, Marking and Annotating dates in a TikZ
calendar in a systematic way
.
tikzcodeblocks -- Helps to draw codeblocks like scratch, NEPO and PXT in
TikZ
.
tikzdotncross -- Marking coordinates and crossing paths
.
tikzducks -- A little fun package for using rubber ducks in TikZ
.
tikzfill -- TikZ libraries for filling with images and patterns
.
tikzinclude -- Import TikZ images from colletions
.
tikzlings -- A collection of cute little animals and similar creatures
.
tikzmark -- Use TikZ's method of remembering a position on a page
.
tikzmarmots -- Drawing little marmots in TikZ
.
tikzorbital -- Atomic and molecular orbitals using TikZ
.
tikzpackets -- Display network packets
.
tikzpagenodes -- A single TikZ node for the whole page
.
tikzpeople -- Draw people-shaped nodes in TikZ
.
tikzpfeile -- Draw arrows using PGF/TikZ
.
tikzpingus -- Penguins with TikZ
.
tikzposter -- Create scientific posters using TikZ
.
tikzquads -- A few shapes designed to be used with CircuiTikZ
.
tikzquests -- A parametric questions' repositories framework
.
tikzscale -- Resize pictures while respecting text size
.
tikzsymbols -- Some symbols created using TikZ
.
tikztosvg -- A utility for rendering TikZ diagrams to SVG
.
tikzviolinplots -- Draws violin plots from data
.
tile-graphic -- Create tiles of a graphical file
.
tilings -- A TikZ library for drawing tiles and tilings
.
timechart -- A package for drawing chronological charts
.
timing-diagrams -- Draw timing diagrams
.
tipfr -- Produces calculator's keys with the help of TikZ
.
tkz-base -- Tools for drawing with a cartesian coordinate system
.
tkz-berge -- Macros for drawing graphs of graph theory
.
tkz-bernoulli -- Draw Bernoulli trees with TikZ
.
tkz-doc -- Documentation macros for the TKZ series of packages
.
tkz-elements -- A Lua library for drawing Euclidean geometry with TikZ or
tkz-euclide
.
tkz-euclide -- Tools for drawing Euclidean geometry
.
tkz-fct -- Tools for drawing graphs of functions
.
tkz-graph -- Draw graph-theory graphs
.
tkz-grapheur -- A LaTeX package with tools for graph plotting (and TikZ)
.
tkz-orm -- Create Object-Role Model (ORM) diagrams
.
tkz-tab -- Tables of signs and variations using PGF/TikZ
.
tkzexample -- Package for the documentation of all tkz-* packages
.
tonevalue -- Tool for linguists and phoneticians to visualize tone value
patterns
.
tqft -- Drawing TQFT diagrams with TikZ/PGF
.
tsemlines -- Support for the ancient \emline macro
.
tufte-latex -- Document classes inspired by the work of Edward Tufte
.
twemojis -- Use Twitter's open source emojis through LaTeX commands
.
tzplot -- Plot graphs with TikZ abbreviations
.
utfsym -- Provides various Unicode symbols
.
vectorlogos -- Vectorial logos (GeoGebra, Emacs, Scratch, ...) with 'inline'
support
.
venndiagram -- Creating Venn diagrams with TikZ
.
visualpstricks -- Visual help for PSTricks based on images with minimum text
.
wheelchart -- Diagrams with circular or other shapes using TikZ and LaTeX3
.
wordcloud -- Drawing wordclouds with MetaPost and Lua
.
worldflags -- Drawing flags with TikZ
.
xistercian -- Cistercian numerals in LaTeX
.
xpicture -- Extensions of LaTeX picture drawing
.
xypic -- Flexible diagramming macros
Package: texlive-luatex
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, libjs-jquery, lmodern, texlive-base (>= 2022.20220405), texlive-base (>= 2024.20240401), texlive-binaries (>= 2024.20240313)
Replaces: texlive-latex-extra (<< 2020.20200804)
Breaks: texlive-base (<< 2022.20220405), texlive-latex-extra (<< 2020.20200804)
Description: TeX Live: LuaTeX packages
Packages for LuaTeX, a TeX engine using Lua as an embedded scripting and
extension language, with native support for Unicode, OpenType/TrueType
fonts, and both PDF and DVI output. The LuaTeX engine itself (and plain
formats) are in collection-basic.
.
This package includes the following CTAN packages:
.
addliga -- Access basic ligatures in legacy TrueType fonts
.
addtoluatexpath -- Add paths to Lua packages and input TeX files
.
auto-pst-pdf-lua -- Using LuaLaTeX together with PostScript code
.
barracuda -- Draw barcodes with Lua
.
bezierplot -- Approximate smooth function graphs with cubic bezier splines
for use with TikZ or MetaPost
.
blopentype -- A basic LuaTeX OpenType handler
.
checkcites -- Check citation commands in a document
.
chickenize -- Use lua callbacks for "interesting" textual effects
.
chinese-jfm -- Luatexja-jfm files for Chinese typesetting
.
cloze -- A LuaLaTeX package for creating cloze texts
.
combofont -- Add NFSS-declarations of combo fonts to LuaLaTeX documents
.
cstypo -- Czech typography rules enforced through LuaTeX hooks
.
ctablestack -- Catcode table stable support
.
ekdosis -- Typesetting TEI-xml compliant Critical Editions
.
emoji -- Emoji support in (Lua)LaTeX
.
emojicite -- Add emojis to citations
.
enigma -- Encrypt documents with a three rotor Enigma
.
gitinfo-lua -- Display git project information in your LaTeX projects
.
ideavault -- Idea (concept) management package
.
innerscript -- Small modifications to math formatting
.
interpreter -- Translate input files on the fly
.
kanaparser -- Kana parser for LuaTeX
.
ligtype -- Comprehensive ligature suppression functionalities
.
linebreaker -- Prevent overflow boxes with LuaLaTeX
.
longmath -- Nested delimiter groups extending over multiple array cells or
lines
.
lparse -- A Lua module for parsing key-value options
.
lt3luabridge -- Execute Lua code in any TeX engine that exposes the shell
.
lua-placeholders -- Specifying placeholders for demonstration purposes
.
lua-tinyyaml -- A tiny YAML (subset) parser in pure Lua
.
lua-typo -- Highlighting typographical flaws with LuaLaTeX
.
lua-uca -- Unicode Collation Algorithm library for Lua
.
lua-ul -- Underlining for LuaLaTeX
.
lua-uni-algos -- Unicode algorithms for LuaTeX
.
lua-visual-debug -- Visual debugging with LuaLaTeX
.
lua-widow-control -- Automatically remove widows and orphans from any
document
.
luaaddplot -- An extension to pgfplots' \addplot macro
.
luacas -- A computer algebra system for users of LuaLaTeX
.
luacensor -- Securely redact sensitive information using Lua
.
luacode -- Helper for executing lua code from within TeX
.
luacolor -- Color support based on LuaTeX's node attributes
.
luacomplex -- Operations on complex numbers inside LaTeX documents using Lua
.
luagcd -- Computation of gcd of integers inside LaTeX using Lua
.
luahttp -- Compile-time internet-interactive PDF-documents using Lua and
LuaTeX
.
luahyphenrules -- Loading patterns in LuaLaTeX with language.dat
.
luaimageembed -- Embed images as base64-encoded strings
.
luaindex -- Create index using LuaLaTeX
.
luainputenc -- Replacing inputenc for use in LuaTeX
.
luakeys -- A Lua module for parsing key-value options
.
lualatex-math -- Fixes for mathematics-related LuaLaTeX issues
.
lualatex-truncate -- A wrapper for using the truncate package with LuaLaTeX
.
lualibs -- Additional Lua functions for LuaTeX macro programmers
.
lualinalg -- A linear algebra package for LuaLaTeX
.
luamathalign -- More flexible alignment in amsmath environments
.
luamaths -- Provide standard mathematical operations inside LaTeX documents
using Lua
.
luamml -- Automatically generate MathML from LuaLaTeX math mode material
.
luamodulartables -- Generate modular addition and multiplication tables
.
luamplib -- Use LuaTeX's built-in MetaPost interpreter
.
luaoptions -- Option handling for LuaLaTeX packages
.
luaotfload -- OpenType 'loader' for Plain TeX and LaTeX
.
luapackageloader -- Allow LuaTeX to load external Lua packages
.
luaplot -- Plotting graphs using Lua
.
luaprogtable -- Programmable table interface for LuaLaTeX
.
luaquotes -- Smart setting of quotation marks
.
luarandom -- Create lists of random numbers
.
luaset -- Set Operations inside LaTeX documents using Lua
.
luatbls -- Lua tables made accessible in LaTeX
.
luatex85 -- pdfTeX aliases for LuaTeX
.
luatexbase -- Basic resource management for LuaTeX code
.
luatexko -- Typeset Korean with Lua(La)TeX
.
luatextra -- Additional macros for Plain TeX and LaTeX in LuaTeX
.
luatikz -- A 2D graphics library to draw TikZ graphics using the Lua
programming language
.
luatruthtable -- Generate truth tables of boolean values in LuaLaTeX
.
luavlna -- Prevent line breaks after single letter words, units, or academic
titles
.
luaxml -- Lua library for reading and serialising XML files
.
lutabulartools -- Some useful LuaLaTeX-based tabular tools
.
marginalia -- Non-floating marginal content with automatic placement for
LuaLaTeX
.
minim -- A modern plain format for the LuaTeX engine
.
minim-math -- Extensive maths for LuaTeX
.
minim-mp -- Low-level mplib integration for LuaTeX
.
minim-pdf -- Low-level PDF integration for LuaTeX
.
minim-xmp -- Embed XMP metadata in PDF with LuaTeX
.
newpax -- Experimental package to extract and reinsert PDF annotations
.
nodetree -- Visualize node lists in a tree view
.
odsfile -- Read OpenDocument Spreadsheet documents as LaTeX tables
.
optex -- LuaTeX format based on Plain TeX and OPmac
.
pdfarticle -- Class for pdf publications
.
pdfextra -- Extra PDF features for (Op)TeX
.
penlight -- Penlight Lua libraries made available to LuaLaTeX users
.
penlightplus -- Additions to the Penlight Lua libraries
.
piton -- Typeset informatic listings with LPEG of LuaLaTeX
.
placeat -- Absolute content positioning
.
plantuml -- Support for rendering UML diagrams using PlantUML
.
pyluatex -- Execute Python code on the fly in your LaTeX documents
.
scikgtex -- Mark research contributions in scientific documents and embed
them in PDF metadata
.
selnolig -- Selectively disable typographic ligatures
.
semesterplannerlua -- Draw timetables and other organizational matters
useful for planning a semester
.
showhyphenation -- Marking of hyphenation points
.
showkerning -- Showing kerns in a document
.
spacekern -- Kerning between words and against space
.
spelling -- Support for spell-checking of LuaTeX documents
.
stricttex -- Strictly balanced brackets and numbers in command names
.
sympycalc -- Work with SymPy and PyLuaTeX
.
tango -- A LaTeX document class for math teachers
.
texfindpkg -- Query or install TeX packages and their dependencies
.
truthtable -- Automatically generate truth tables for given variables and
statements
.
tsvtemplate -- Apply a template to a tsv file
.
typewriter -- Typeset with a randomly variable monospace font
.
unibidi-lua -- Unicode bidi algorithm implementation for various LuaTeX
formats
.
uninormalize -- Unicode normalization support
.
yamlvars -- A YAML parser and tool for easy LaTeX definition creation
Package: texlive-metapost
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-base (>= 2022.20220405), texlive-base (>= 2024.20240401), texlive-binaries (>= 2024.20240313)
Recommends: feynmf
Suggests: texlive-metapost-doc
Breaks: texlive-base (<< 2022.20220405)
Description: TeX Live: MetaPost and Metafont packages
This package includes the following CTAN packages:
.
automata -- Finite state machines, graphs and trees in MetaPost
.
bbcard -- Bullshit bingo, calendar and baseball-score cards
.
blockdraw_mp -- Block diagrams and bond graphs, with MetaPost
.
bpolynomial -- Drawing polynomial functions of up to order 3
.
cmarrows -- MetaPost arrows and braces in the Computer Modern style
.
drv -- Derivation trees with MetaPost
.
dviincl -- Include a DVI page into MetaPost output
.
emp -- "Encapsulate" MetaPost figures in a document
.
epsincl -- Include EPS in MetaPost figures
.
expressg -- Diagrams consisting of boxes, lines, and annotations
.
exteps -- Include EPS figures in MetaPost
.
featpost -- MetaPost macros for 3D
.
feynmp-auto -- Automatic processing of feynmp graphics
.
fiziko -- A MetaPost library for physics textbook illustrations
.
garrigues -- MetaPost macros for the reproduction of Garrigues' Easter
nomogram
.
gmp -- Enable integration between MetaPost pictures and LaTeX
.
hatching -- MetaPost macros for hatching interior of closed paths
.
hershey-mp -- MetaPost support for the Hershey font file format
.
huffman -- Drawing binary Huffman trees with MetaPost and METAOBJ
.
latexmp -- Interface for LaTeX-based typesetting in MetaPost
.
mcf2graph -- Draw chemical structure diagrams with MetaPost
.
metago -- MetaPost output of Go positions
.
metaobj -- MetaPost package providing high-level objects
.
metaplot -- Plot-manipulation macros for use in MetaPost
.
metapost -- A development of Metafont for creating graphics
.
metapost-colorbrewer -- An implementation of the colorbrewer2.org colours
for MetaPost
.
metauml -- MetaPost library for typesetting UML diagrams
.
mfpic -- Draw Metafont/post pictures from (La)TeX commands
.
mfpic4ode -- Macros to draw direction fields and solutions of ODEs
.
minim-hatching -- Create tiling patterns with the minim-mp MetaPost
processor
.
mp-geom2d -- Flat geometry with MetaPost
.
mp-neuralnetwork -- Drawing artificial neural networks with MetaPost and
METAOBJ
.
mp3d -- 3D animations
.
mparrows -- MetaPost module with different types of arrow heads
.
mpattern -- Patterns in MetaPost
.
mpchess -- Drawing chess boards and positions with MetaPost
.
mpcolornames -- Extend list of predefined colour names for MetaPost
.
mpgraphics -- Process and display MetaPost figures inline
.
mpkiviat -- MetaPost package to draw Kiviat diagrams
.
mptrees -- Probability trees with MetaPost
.
piechartmp -- Draw pie-charts using MetaPost
.
repere -- MetaPost macros for secondary school mathematics teachers
.
roex -- Metafont-PostScript conversions
.
roundrect -- MetaPost macros for highly configurable rounded rectangles
(optionally with text)
.
shapes -- Draw polygons, reentrant stars, and fractions in circles with
MetaPost
.
slideshow -- Generate slideshow with MetaPost
.
splines -- MetaPost macros for drawing cubic spline interpolants
.
suanpan -- MetaPost macros for drawing Chinese and Japanese abaci
.
textpath -- Setting text along a path with MetaPost
.
threeddice -- Create images of dice with one, two, or three faces showing,
using MetaPost
Package: texlive-xetex
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, teckit, texlive-base (>= 2022.20220405), texlive-base (>= 2024.20240401), texlive-binaries (>= 2024.20240313), texlive-latex-base (>= 2024.20240401), texlive-latex-extra (>= 2024.20240401), tipa (>= 2:1.2-2.1)
Recommends: lmodern
Breaks: texlive-base (<< 2022.20220405), texlive-lang-arabic (<< 2020.20200519), texlive-lang-cjk (<< 2021.20220204), texlive-lang-german (<< 2020.20200519), texlive-latex-extra (<< 2023.20240207), texlive-latex-extra-doc (<< 2023.20240207)
Description: TeX Live: XeTeX and packages
Packages for XeTeX, the Unicode/OpenType-enabled TeX by Jonathan Kew. See
https://tug.org/xetex.
.
This package includes the following CTAN packages:
.
arabxetex -- An ArabTeX-like interface for XeLaTeX
.
bidi-atbegshi -- Bidi-aware shipout macros
.
bidicontour -- Bidi-aware coloured contour around text
.
bidipagegrid -- Bidi-aware page grid in background
.
bidipresentation -- Experimental bidi presentation
.
bidishadowtext -- Bidi-aware shadow text
.
businesscard-qrcode -- Business cards with QR-Code
.
cqubeamer -- LaTeX Beamer Template for Chongqing University
.
fixlatvian -- Improve Latvian language support in XeLaTeX
.
font-change-xetex -- Macros to change text and mathematics fonts in plain
XeTeX
.
fontbook -- Generate a font book
.
fontwrap -- Bind fonts to specific unicode blocks
.
interchar -- Managing character class schemes in XeTeX
.
na-position -- Tables of relative positions of curves and asymptotes or
tangents in Arabic documents
.
philokalia -- A font to typeset the Philokalia Books
.
ptext -- A 'lipsum' for Persian
.
realscripts -- Access OpenType subscript and superscript glyphs
.
simple-resume-cv -- Template for a simple resume or curriculum vitae (CV),
in XeLaTeX
.
simple-thesis-dissertation -- Template for a simple thesis or dissertation
(Ph.D. or master's degree) or technical report, in XeLaTeX
.
tetragonos -- Four-Corner codes of Chinese characters
.
ucharclasses -- Font actions in XeTeX according to what is being processed
.
unicode-bidi -- Experimental unicode bidi package for XeTeX
.
unimath-plain-xetex -- OpenType math support in (plain) XeTeX
.
unisugar -- Define syntactic sugar for Unicode LaTeX
.
xebaposter -- Create beautiful scientific Persian/Latin posters using TikZ
.
xechangebar -- An extension of package changebar that can be used with
XeLaTeX
.
xecolor -- Support for color in XeLaTeX
.
xecyr -- Using Cyrillic languages in XeTeX
.
xeindex -- Automatic index generation for XeLaTeX
.
xelatex-dev --
.
xesearch -- A string finder for XeTeX
.
xespotcolor -- Spot colours support for XeLaTeX
.
xetex -- An extended variant of TeX for use with Unicode sources
.
xetex-itrans -- Itrans input maps for use with XeLaTeX
.
xetex-pstricks -- Running PSTricks under XeTeX
.
xetex-tibetan -- XeTeX input maps for Unicode Tibetan
.
xetexconfig -- crop.cfg for XeLaTeX
.
xetexfontinfo -- Report font features in XeTeX
.
xetexko -- Typeset Korean with Xe(La)TeX
.
xevlna -- Insert non-breakable spaces using XeTeX
.
zbmath-review-template -- Template for a zbMATH Open review
Package: texlive
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-fonts-recommended (>= 2024.20240401), texlive-latex-base (>= 2024.20240401), texlive-latex-recommended (>= 2024.20240401)
Description: TeX Live: A decent selection of the TeX Live packages
The TeX Live software distribution offers a complete TeX system. It
encompasses programs for typesetting, previewing and printing of TeX
documents in many different languages, and a large collection of TeX macros
and font libraries. . This metapackage provides a decent selection of the
TeX Live packages which should suffice for the most common tasks. . The
distribution also includes extensive general documentation about TeX, as
well as the documentation accompanying the included software packages.
Package: texlive-full
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, asymptote, biber, chktex, cm-super (>= 0.3.3-3), context, dvidvi, dvipng, feynmf, fragmaster, info (>= 4.8), lacheck, latex-cjk-all (>= 4.6.0+cvs20060714-2), latexdiff, latexmk, lcdf-typetools, lmodern (>= 0.93.3), prerex (>> 6.5.3-1), psutils, purifyeps, t1utils, tex-gyre, texinfo (>= 4.8), texlive-base (>= 2024.20240401), texlive-bibtex-extra (>= 2024.20240401), texlive-binaries (>= 2024.20240313), texlive-extra-utils (>= 2024.20240401), texlive-font-utils (>= 2024.20240401), texlive-fonts-extra (>= 2024.20240401), texlive-fonts-extra-doc (>= 2024.20240401), texlive-fonts-extra-links (>= 2024.20240401), texlive-fonts-extra-links (>= 2024.20240401), texlive-fonts-recommended (>= 2024.20240401), texlive-fonts-recommended-doc (>= 2024.20240401), texlive-formats-extra (>= 2024.20240401), texlive-games (>= 2024.20240401), texlive-humanities (>= 2024.20240401), texlive-humanities-doc (>= 2024.20240401), texlive-lang-arabic (>= 2024.20240401), texlive-lang-chinese (>= 2024.20240401), texlive-lang-cjk (>= 2024.20240401), texlive-lang-cyrillic (>= 2024.20240401), texlive-lang-czechslovak (>= 2024.20240401), texlive-lang-english (>= 2024.20240401), texlive-lang-european (>= 2024.20240401), texlive-lang-french (>= 2024.20240401), texlive-lang-german (>= 2024.20240401), texlive-lang-greek (>= 2024.20240401), texlive-lang-italian (>= 2024.20240401), texlive-lang-japanese (>= 2024.20240401), texlive-lang-korean (>= 2024.20240401), texlive-lang-other (>= 2024.20240401), texlive-lang-polish (>= 2024.20240401), texlive-lang-portuguese (>= 2024.20240401), texlive-lang-spanish (>= 2024.20240401), texlive-latex-base (>= 2024.20240401), texlive-latex-base-doc (>= 2024.20240401), texlive-latex-extra (>= 2024.20240401), texlive-latex-extra-doc (>= 2024.20240401), texlive-latex-recommended (>= 2024.20240401), texlive-latex-recommended-doc (>= 2024.20240401), texlive-luatex (>= 2024.20240401), texlive-metapost (>= 2024.20240401), texlive-metapost-doc (>= 2024.20240401), texlive-music (>= 2024.20240401), texlive-pictures (>= 2024.20240401), texlive-pictures-doc (>= 2024.20240401), texlive-plain-generic (>= 2024.20240401), texlive-pstricks (>= 2024.20240401), texlive-pstricks-doc (>= 2024.20240401), texlive-publishers (>= 2024.20240401), texlive-publishers-doc (>= 2024.20240401), texlive-science (>= 2024.20240401), texlive-science-doc (>= 2024.20240401), texlive-xetex (>= 2024.20240401), tipa (>= 2:1.2-2.1), vprerex (>> 6.5.3-1)
Suggests: xindy
Description: TeX Live: metapackage pulling in all components of TeX Live
The TeX Live software distribution offers a complete TeX system. It
encompasses programs for typesetting, previewing and printing of TeX
documents in many different languages, and a large collection of TeX macros
and font libraries. . The distribution also includes extensive general
documentation about TeX, as well as the documentation accompanying the
included software packages.
Package: texlive-fonts-recommended-doc
Section: doc
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-base (>= 2022.20220405)
Breaks: texlive-base (<< 2019.20200213)
Description: TeX Live: Documentation files for texlive-fonts-recommended
This package provides the documentation for texlive-fonts-recommended
Package: texlive-latex-base-doc
Section: doc
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-base (>= 2022.20220405)
Replaces: texlive-latex-extra-doc (<< 2022.20220923), texlive-latex-recommended-doc (<< 2019.20200205), texlive-latex-recommended-doc (<< 2019.20200225), texlive-latex-recommended-doc (<< 2020.20201203), texlive-latex-recommended-doc (<< 2022.20230122), texlive-latex-recommended-doc (<< 2024.20250309)
Breaks: texlive-latex-extra-doc (<< 2019.20191203), texlive-latex-extra-doc (<< 2022.20220923), texlive-latex-recommended-doc (<< 2019.20191208), texlive-latex-recommended-doc (<< 2019.20200205), texlive-latex-recommended-doc (<< 2019.20200225), texlive-latex-recommended-doc (<< 2020.20201203), texlive-latex-recommended-doc (<< 2022.20230122), texlive-latex-recommended-doc (<< 2024.20250309)
Description: TeX Live: Documentation files for texlive-latex-base
This package provides the documentation for texlive-latex-base
Package: texlive-latex-recommended-doc
Section: doc
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-base (>= 2022.20220405)
Replaces: texlive-latex-base-doc (<< 2019.20191208), texlive-latex-extra-doc (<< 2019.20190324), texlive-latex-extra-doc (<< 2019.20190507), texlive-latex-extra-doc (<< 2019.20191208)
Breaks: texlive-latex-base-doc (<< 2019.20191208), texlive-latex-base-doc (<< 2019.20200205), texlive-latex-base-doc (<< 2019.20200225), texlive-latex-base-doc (<< 2020.20201203), texlive-latex-base-doc (<< 2022.20230122), texlive-latex-base-doc (<< 2024.20250309), texlive-latex-extra-doc (<< 2019.20190324), texlive-latex-extra-doc (<< 2019.20190507), texlive-latex-extra-doc (<< 2019.20190915), texlive-latex-extra-doc (<< 2019.20191208)
Description: TeX Live: Documentation files for texlive-latex-recommended
This package provides the documentation for texlive-latex-recommended
Package: texlive-metapost-doc
Section: doc
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-base (>= 2022.20220405)
Description: TeX Live: Documentation files for texlive-metapost
This package provides the documentation for texlive-metapost
Package: texlive-pictures-doc
Section: doc
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-base (>= 2022.20220405)
Description: TeX Live: Documentation files for texlive-pictures
This package provides the documentation for texlive-pictures
|