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
|
Source: texlive-lang
Section: tex
Priority: optional
Maintainer: Debian TeX Maintainers <debian-tex-maint@lists.debian.org>
Uploaders: Norbert Preining <preining@debian.org>
Build-Depends: debhelper (>= 9)
Build-Depends-Indep: sharutils, tex-common (>= 6), findutils (>=4.2.0)
Standards-Version: 3.9.8
Homepage: http://www.tug.org/texlive/
Package: texlive-lang-african
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-base (>= 2016.20170123-2), texlive-base (>= 2016.20170123-2)
Replaces: texlive-base (<< 2016)
Breaks: texlive-base (<< 2016), texlive-base (<< 2016.20170123-2)
Description: TeX Live: African scripts
Support for African scripts.
.
This package includes the following CTAN packages:
.
ethiop -- LaTeX macros and fonts for typesetting Amharic
.
ethiop-t1 -- Type 1 versions of Amharic fonts
.
fc -- Fonts for African languages
.
hyphen-ethiopic -- Hyphenation patterns for Ethiopic scripts.
Package: texlive-lang-arabic
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, fonts-hosny-amiri, texlive-base (>= 2016.20170123-2), texlive-base (>= 2016.20170123-2), texlive-generic-extra (>= 2016.20170123-2)
Replaces: texlive-xetex (<< 2016.20161008)
Breaks: texlive-xetex (<< 2016.20161008), texlive-base (<< 2016.20170123-2)
Description: TeX Live: Arabic
Support for Arabic and Persian.
.
This package includes the following CTAN packages:
.
amiri -- A classical Arabic typeface, Naskh style
.
arabi -- (La)TeX support for Arabic and Farsi, compliant with Babel
.
arabi-add -- Using hyperref and bookmark packages with arabic and farsi
languages
.
arabluatex -- An ArabTeX-like interface for LuaLaTeX
.
arabtex -- Macros and fonts for typesetting Arabic
.
bidi -- Bidirectional typesetting in plain TeX and LaTeX, using XeTeX engine
.
bidihl -- Experimental bidi-aware text highlighting
.
dad -- Simple typesetting system for mixed Arabic/Latin documents
.
ghab -- Typeset ghab boxes in LaTeX
.
hyphen-arabic -- (No) Arabic hyphenation patterns.
.
hyphen-farsi -- (No) Persian hyphenation patterns.
.
imsproc -- Typeset IMS conference proceedings
.
lshort-persian -- Persian (Farsi) introduction to LaTeX
.
persian-bib -- Persian translations of classic BibTeX styles
.
simurgh -- Typeset Parsi in LuaLaTeX
.
tram -- Typeset tram boxes in LaTeX
.
xepersian -- Persian for LaTeX, using XeTeX
Package: texlive-lang-cjk
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, poppler-data, texlive-base (>= 2016.20170123-2), texlive-base (>= 2016.20170123-2), texlive-binaries (>= 2016.20160513.41080-7), texlive-latex-base (>= 2016.20170123-2)
Recommends: latex-cjk-all (>= 4.6.0+cvs20060714-2), ruby | ruby-interpreter, texlive-lang-chinese, texlive-lang-japanese, texlive-lang-korean
Breaks: texlive-base (<< 2016.20170123-2)
Description: TeX Live: Chinese/Japanese/Korean (base)
Packages supporting a combination of Chinese, Japanese, Korean, including
macros, fonts, documentation. Also Thai in the c90 encoding, since there is
some overlap in those fonts; standard Thai support is in
collection-langother. Additional packages for CJK are in their individual
language collections.
.
This package includes the following CTAN packages:
.
c90 --
.
cjk-gs-integrate -- Tools to integrate CJK fonts into Ghostscript
.
cjkpunct -- Adjust locations and kerning of CJK punctuation marks
.
garuda-c90 -- TeX support (from CJK) for the garuda font
.
norasi-c90 -- TeX support (from CJK) for the norasi font
.
pxtatescale -- Patch to graphics driver for scaling in vertical direction of
pTeX
.
xcjk2uni -- Convert CJK characters to Unicode, in pdfTeX
.
zxjafont -- Set up Japanese font families for XeLaTeX
Package: texlive-lang-korean
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, fonts-baekmuk, fonts-unfonts-core, fonts-unfonts-extra, texlive-base (>= 2016.20170123-2), texlive-binaries (>= 2016.20160513.41080-7), texlive-lang-cjk (>= 2016.20170123-2)
Conflicts: ko.tex-bin
Provides: ko.tex
Breaks: texlive-base (<< 2016.20170123-2)
Description: TeX Live: Korean
Support for Korean; additional packages in collection-langcjk.
.
This package includes the following CTAN packages:
.
baekmuk -- Baekmuk Korean TrueType fonts
.
cjk-ko -- Extension of the CJK package for Korean typesetting
.
kotex-oblivoir -- A LaTeX document class for typesetting Korean documents
.
kotex-plain -- Macros for typesetting Korean under Plain TeX
.
kotex-utf -- Typeset Hangul, coded in UTF-8
.
kotex-utils -- Utility scripts and support files for typesetting Korean
.
lshort-korean -- Korean introduction to LaTeX
.
nanumtype1 -- Type1 subfonts of Nanum Korean fonts
.
uhc -- Fonts for the Korean language
.
unfonts-core -- TrueType version of Un-fonts
.
unfonts-extra -- TrueType version of Un-fonts
Package: texlive-lang-chinese
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, fonts-arphic-bkai00mp, fonts-arphic-bsmi00lp, fonts-arphic-gbsn00lp, fonts-arphic-gkai00mp, texlive-base (>= 2016.20170123-2), texlive-lang-cjk (>= 2016.20170123-2)
Replaces: texlive-base (<< 2016)
Breaks: texlive-base (<< 2016), texlive-base (<< 2016.20170123-2)
Description: TeX Live: Chinese
Support for Chinese; additional packages in collection-langcjk.
.
This package includes the following CTAN packages:
.
arphic-ttf -- TrueType version of Chinese Arphic fonts
.
asymptote-by-example-zh-cn -- Asymptote by example
.
asymptote-faq-zh-cn -- Asymptote FAQ (Chinese translation)
.
asymptote-manual-zh-cn -- A Chinese translation of the asymptote manual
.
cns --
.
ctex -- LaTeX classes and packages for Chinese typesetting
.
ctex-faq -- LaTeX FAQ by the Chinese TeX Society (ctex.org)
.
fandol -- Four basic fonts for Chinese typesetting
.
hyphen-chinese -- Chinese pinyin hyphenation patterns.
.
impatient-cn --
.
latex-notes-zh-cn -- Chinese Introduction to TeX and LaTeX
.
lshort-chinese -- Introduction to LaTeX, in Chinese
.
texlive-zh-cn -- TeX Live manual (Chinese)
.
texproposal -- A proposal prototype for LaTeX promotion in Chinese
universities
.
xpinyin -- Automatically add pinyin to Chinese characters
.
zhmetrics -- TFM subfont files for using Chinese fonts in 8-bit TeX
.
zhmetrics-uptex -- Chinese font metrics for upTeX
.
zhnumber -- Typeset Chinese representations of numbers
.
zhspacing -- Spacing for mixed CJK-English documents in XeTeX
Package: texlive-lang-japanese
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, fonts-ipaexfont-gothic, fonts-ipaexfont-mincho, fonts-ipafont-gothic, fonts-ipafont-mincho, ruby, texlive-base (>= 2016.20170123-2), texlive-binaries (>= 2016.20160513.41080-7), texlive-lang-cjk (>= 2016.20170123-2)
Conflicts: ptex-jisfonts
Provides: okumura-clsfiles, ptex-jisfonts, vfdata-morisawa5
Replaces: mendexk, texlive-lang-cjk (<< 2014.20150305)
Breaks: texlive-base (<< 2016.20170123-2), texlive-lang-cjk (<< 2014.20150305)
Description: TeX Live: Japanese
Support for Japanese; additional packages in collection- langcjk.
.
This package includes the following CTAN packages:
.
babel-japanese -- Babel support for Japanese
.
bxbase -- BX bundle base components
.
bxcjkjatype -- Typeset Japanese with pdfLaTeX and CJK
.
bxjalipsum -- Dummy text in Japanese
.
bxjscls -- Japanese document class collection for all major engines
.
convbkmk -- Correct platex/uplatex bookmarks in PDF created with hyperref
.
ipaex -- IPA and IPAex fonts from Information-technology Promotion Agency,
Japan.
.
japanese-otf -- Advanced font selection for platex and its friends
.
japanese-otf-uptex -- Support for Japanese OTF files in upLaTeX
.
jsclasses -- Classes tailored for use with Japanese
.
lshort-japanese -- Japanese version of A Short Introduction to LaTeX2e
.
luatexja -- Typeset Japanese with Lua(La)TeX
.
mendex-doc -- Documentation for Mendex index processor
.
pbibtex-base -- Bibliography styles and miscellaneous files for pBibTeX
.
platex -- pLaTeX2e and miscellaneous macros for pTeX
.
platex-tools -- pLaTeX standard tools bundle
.
platexcheat -- A LaTeX cheat sheet, in Japanese
.
ptex -- A TeX system for publishing in Japanese
.
ptex-base -- Plain TeX format and documents for pTeX and e-pTeX
.
ptex-fonts -- Fonts for use with pTeX
.
ptex-fontmaps -- Font maps and configuration tools for
Japanese/Chinese/Korean fonts with (u)ptex
.
ptex2pdf -- Convert Japanese TeX documents to PDF
.
pxbase -- Tools for use with (u)pLaTeX
.
pxchfon -- Japanese font setup for pLaTeX and upLaTeX
.
pxcjkcat -- LaTeX interface for the CJK category codes of upTeX
.
pxjahyper -- Hyperref support for pLaTeX
.
pxrubrica --
.
uplatex -- pLaTeX2e and miscellaneous macros for upTeX
.
uptex -- Unicode version of pTeX
.
uptex-base -- Plain TeX format and documents for upTeX
.
uptex-fonts -- Fonts for use with upTeX
.
zxjafbfont -- Fallback CJK font support for xeCJK
.
zxjatype -- Standard conforming typesetting of Japanese, for XeLaTeX
Package: texlive-lang-cyrillic
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-base (>= 2016.20170123-2), texlive-base (>= 2016.20170123-2), texlive-binaries (>= 2016.20160513.41080-7), texlive-latex-base (>= 2016.20170123-2)
Replaces: texlive-base (<< 2016)
Breaks: texlive-base (<< 2016), texlive-base (<< 2016.20170123-2)
Description: TeX Live: Cyrillic
Support for Cyrillic scripts (Bulgarian, Russian, Serbian, Ukrainian), even
if Latin alphabets may also be used.
.
This package includes the following CTAN packages:
.
babel-belarusian -- Babel support for Belarusian
.
babel-bulgarian -- Babel contributed support for Bulgarian
.
babel-russian -- Russian language module for Babel
.
babel-serbian --
.
babel-serbianc -- Babel module to support Serbian Cyrillic
.
babel-ukrainian -- Babel support for Ukrainian
.
churchslavonic -- Typeset documents in Church Slavonic language using
Unicode
.
cmcyr -- Computer Modern fonts with cyrillic extensions
.
cyrillic -- Support for Cyrillic fonts in LaTeX
.
cyrillic-bin -- Cyrillic bibtex and makeindex.
.
cyrplain --
.
disser -- Class and templates for typesetting dissertations in Russian
.
eskd -- Modern Russian typesetting
.
eskdx -- Modern Russian typesetting
.
gost -- BibTeX styles to format according to GOST
.
hyphen-bulgarian -- Bulgarian hyphenation patterns.
.
hyphen-churchslavonic -- Church Slavonic hyphenation patterns.
.
hyphen-mongolian -- Mongolian hyphenation patterns in Cyrillic script.
.
hyphen-russian -- Russian hyphenation patterns.
.
hyphen-serbian -- Serbian hyphenation patterns.
.
hyphen-ukrainian -- Ukrainian hyphenation patterns.
.
lcyw -- Make Classic Cyrillic CM fonts accessible in LaTeX
.
lh -- Cyrillic fonts that support LaTeX standard encodings
.
lhcyr -- A non-standard Cyrillic input scheme
.
lshort-bulgarian -- Bulgarian translation of the "Short Introduction to
LaTeX2e"
.
lshort-mongol -- Short introduction to LaTeX, in Mongolian
.
lshort-russian -- Russian introduction to LaTeX
.
lshort-ukr -- Ukrainian version of the LaTeX introduction
.
mongolian-babel -- A language definition file for Mongolian in Babel
.
montex -- Mongolian LaTeX
.
mpman-ru -- A Russian translation of the MetaPost manual
.
pst-eucl-translation-bg -- Bulgarian translation of the pst-eucl
documentation
.
ruhyphen -- Russian hyphenation
.
russ -- LaTeX in Russian, without babel
.
serbian-apostrophe -- Commands for Serbian words with apostrophes
.
serbian-date-lat -- Updated date typesetting for Serbian
.
serbian-def-cyr -- Serbian cyrillic localization
.
serbian-lig -- Control ligatures in Serbian
.
t2 -- Support for using T2 encoding
.
texlive-ru -- TeX Live manual (Russian)
.
texlive-sr -- TeX Live manual (Serbian)
.
ukrhyph -- Hyphenation Patterns for Ukrainian
Package: texlive-lang-czechslovak
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-base (>= 2016.20170123-2), texlive-base (>= 2016.20170123-2), texlive-binaries (>= 2016.20160513.41080-7), texlive-latex-base (>= 2016.20170123-2), texlive-luatex (>= 2016.20170123-2)
Replaces: texlive-base (<< 2016)
Breaks: texlive-base (<< 2016), texlive-base (<< 2016.20170123-2)
Description: TeX Live: Czech/Slovak
Support for Czech/Slovak.
.
This package includes the following CTAN packages:
.
babel-czech -- Babel support for Czech
.
babel-slovak -- Babel support for typesetting Slovak
.
cnbwp -- Typeset working papers of the Czech National Bank
.
cs -- Czech/Slovak-tuned Computer Modern fonts
.
csbulletin -- LaTeX class for articles submitted to the CSTUG Bulletin
(Zpravodaj)
.
cslatex -- LaTeX support for Czech/Slovak typesetting
.
csplain -- Plain TeX multilanguage support
.
cstex -- Support for Czech/Slovak languages
.
hyphen-czech -- Czech hyphenation patterns.
.
hyphen-slovak -- Slovak hyphenation patterns.
.
vlna --
.
lshort-czech -- Czech translation of the "Short Introduction to LaTeX2e"
.
lshort-slovak -- Slovak introduction to LaTeX
.
texlive-cz -- TeX Live manual (Czech/Slovak)
Package: texlive-lang-english
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-base (>= 2016.20170123-2), texlive-base (>= 2016.20170123-2)
Replaces: texlive-base (<< 2016)
Breaks: texlive-base (<< 2016), texlive-base (<< 2016.20170123-2)
Description: TeX Live: US and UK English
Support for (and documentation in) English.
.
This package includes the following CTAN packages:
.
hyphen-english -- English hyphenation patterns.
.
FAQ-en -- A compilation of Frequently Asked Questions with answers
.
MemoirChapStyles -- Chapter styles in memoir class
.
Type1fonts -- Font installation guide
.
amslatex-primer -- Getting up and running with AMS-LaTeX
.
around-the-bend -- Typeset exercises in TeX, with answers
.
ascii-chart -- An ASCII wall chart
.
components-of-TeX -- Components of TeX
.
comprehensive -- Symbols accessible from LaTeX
.
dtxtut -- Tutorial on writing .dtx and .ins files
.
first-latex-doc -- A document for absolute LaTeX beginners
.
forest-quickstart -- Quickstart Guide for Linguists package "forest"
.
gentle -- A Gentle Introduction to TeX
.
guide-to-latex --
.
happy4th -- A firework display in obfuscated TeX
.
impatient -- Free edition of the book "TeX for the Impatient"
.
intro-scientific -- Introducing scientific/mathematical documents using
LaTeX
.
knuth -- Knuth's published errata
.
l2tabu-english -- English translation of "Obsolete packages and commands"
.
latex-brochure -- A publicity flyer for LaTeX
.
latex-course -- A LaTeX course as a projected presentation
.
latex-doc-ptr -- A direction-finder for LaTeX documentation
.
latex-graphics-companion -- Examples from The LaTeX Graphics Companion
.
latex-veryshortguide -- The Very Short Guide to LaTeX
.
latex-web-companion -- Examples from The LaTeX Web Companion
.
latex2e-help-texinfo -- Unofficial reference manual covering LaTeX2e
.
latex4wp -- A LaTeX guide specifically designed for word processor users
.
latexcheat -- A LaTeX cheat sheet
.
latexcourse-rug -- A LaTeX course book
.
latexfileinfo-pkgs -- A comparison of packages showing LaTeX file
information
.
lshort-english -- A (Not So) Short Introduction to LaTeX2e
.
macros2e -- A list of internal LaTeX2e macros
.
math-e -- Examples from the book Typesetting Mathematics with LaTeX
.
math-into-latex-4 -- Samples from Math into LaTeX, 4th Edition
.
maths-symbols -- Summary of mathematical symbols available in LaTeX
.
memdesign -- Notes on book design
.
metafont-beginners -- An introductory tutorial for Metafont
.
metapost-examples -- Example drawings using MetaPost
.
patgen2-tutorial -- A tutorial on the use of Patgen 2
.
pictexsum -- A summary of PicTeX commands
.
plain-doc -- A list of plain.tex cs names
.
presentations-en -- Examples from the book Presentations with LaTeX
.
simplified-latex -- A Simplified Introduction to LaTeX
.
svg-inkscape -- How to include an SVG image in LaTeX using Inkscape
.
tabulars-e -- Examples from the book "Typesetting tables with LaTeX"
.
tamethebeast -- A manual about bibliographies and especially BibTeX
.
tds -- The TeX Directory Structure standard
.
tex-font-errors-cheatsheet -- Cheat sheet outlining the most common TeX font
errors
.
tex-overview -- An overview of the development of TeX
.
tex-refs -- References for TeX and Friends
.
texbytopic -- Freed version of the book TeX by Topic
.
titlepages -- Sample titlepages, and how to code them
.
tlc2 -- Examples from "The LaTeX Companion", second edition
.
undergradmath -- LaTeX Math for Undergraduates cheat sheet
.
visualfaq -- A Visual LaTeX FAQ
.
webguide -- Brief Guide to LaTeX Tools for Web publishing
.
xetexref -- Reference documentation of XeTeX
Package: texlive-lang-european
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-base (>= 2016.20170123-2), texlive-base (>= 2016.20170123-2)
Replaces: texlive-base (<< 2016)
Breaks: texlive-base (<< 2016), texlive-base (<< 2016.20170123-2)
Description: TeX Live: Other European languages
Support for a number of European languages; others (Greek, German,
French, ...) have their own collections, depending simply on the size of the
support.
.
This package includes the following CTAN packages:
.
armtex -- A system for writing Armenian with TeX and LaTeX
.
babel-albanian -- Support for Albanian within babel
.
babel-bosnian -- Babel contrib support for Bosnian
.
babel-breton -- Babel contributed support for Breton
.
babel-croatian -- Babel contributed support for Croatian
.
babel-danish -- Babel contributed support for Danish
.
babel-dutch -- Babel contributed support for Dutch
.
babel-estonian -- Babel support for Estonian
.
babel-finnish --
.
babel-friulan -- Babel/Polyglossia support for Friulan(Furlan)
.
babel-hungarian -- Babel support for Hungarian (Magyar)
.
babel-icelandic -- Babel support for Icelandic
.
babel-irish -- Babel support for Irish
.
babel-kurmanji -- Babel support for Kurmanji
.
babel-latin -- Babel support for Latin
.
babel-latvian -- Babel support for Latvian
.
babel-macedonian -- Babel module to support Macedonian Cyrillic
.
babel-norsk -- Babel support for Norwegian
.
babel-occitan -- Babel support for Occitan
.
babel-piedmontese -- Babel support for Piedmontese
.
babel-romanian -- Babel support for Romanian
.
babel-romansh -- Babel/Polyglossia support for the Romansh language
.
babel-samin -- Babel support for Samin
.
babel-scottish -- Babel support for Scottish Gaelic
.
babel-slovenian -- Babel support for typesetting Slovenian
.
babel-swedish -- Babel support for typesetting Swedish
.
babel-turkish -- Babel support for Turkish documents
.
babel-welsh -- Babel support for Welsh
.
finbib -- A Finnish version of plain.bst
.
gloss-occitan -- Polyglossia support for Occitan
.
hrlatex -- LaTeX support for Croatian documents
.
hyphen-armenian -- Armenian hyphenation patterns.
.
hyphen-croatian -- Croatian hyphenation patterns.
.
hyphen-danish -- Danish hyphenation patterns.
.
hyphen-dutch -- Dutch hyphenation patterns.
.
hyphen-estonian -- Estonian hyphenation patterns.
.
hyphen-finnish -- Finnish hyphenation patterns.
.
hyphen-friulan -- Friulan hyphenation patterns.
.
hyphen-hungarian -- Hungarian hyphenation patterns.
.
hyphen-icelandic -- Icelandic hyphenation patterns.
.
hyphen-irish -- Irish hyphenation patterns.
.
hyphen-kurmanji -- Kurmanji hyphenation patterns.
.
hyphen-latin -- Liturgical Latin hyphenation patterns.
.
hyphen-latvian -- Latvian hyphenation patterns.
.
hyphen-lithuanian -- Lithuanian hyphenation patterns.
.
hyphen-norwegian -- Norwegian Bokmal and Nynorsk hyphenation patterns.
.
hyphen-occitan -- Occitan hyphenation patterns.
.
hyphen-piedmontese -- Piedmontese hyphenation patterns.
.
hyphen-romanian -- Romanian hyphenation patterns.
.
hyphen-romansh -- Romansh hyphenation patterns.
.
hyphen-slovenian -- Slovenian hyphenation patterns.
.
hyphen-swedish -- Swedish hyphenation patterns.
.
hyphen-turkish -- Turkish hyphenation patterns.
.
hyphen-uppersorbian -- Upper Sorbian hyphenation patterns.
.
hyphen-welsh -- Welsh hyphenation patterns.
.
lithuanian -- Lithuanian language support
.
lshort-dutch -- Introduction to LaTeX in Dutch
.
lshort-estonian -- Estonian introduction to LaTeX
.
lshort-finnish -- Finnish introduction to LaTeX
.
lshort-slovenian -- Slovenian translation of lshort
.
lshort-turkish -- Turkish introduction to LaTeX
.
nevelok -- LaTeX package for automatic definite articles for Hungarian
.
swebib -- Swedish bibliography styles
.
turkmen -- Babel support for Turkmen
Package: texlive-lang-french
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-base (>= 2016.20170123-2), texlive-base (>= 2016.20170123-2)
Replaces: texlive-base (<< 2016)
Breaks: texlive-base (<< 2016), texlive-base (<< 2016.20170123-2)
Description: TeX Live: French
Support for French and Basque.
.
This package includes the following CTAN packages:
.
aeguill -- Add several kinds of guillemets to the ae fonts
.
apprends-latex -- Apprends LaTeX!
.
babel-basque -- Babel contributed support for Basque
.
babel-french -- Babel contributed support for French
.
basque-book -- Class for book-type documents written in Basque
.
basque-date -- Print the date in Basque
.
bib-fr -- French translation of classical BibTeX styles
.
bibleref-french -- French translations for bibleref
.
booktabs-fr -- French translation of booktabs documentation
.
droit-fr -- Document class and bibliographic style for French law
.
e-french -- Comprehensive LaTeX support for French-language typesetting
.
epslatex-fr -- French version of "graphics in LaTeX"
.
facture -- Generate an invoice
.
formation-latex-ul -- Introductory LaTeX course in French
.
frletter -- Typeset letters in the French style
.
hyphen-basque -- Basque hyphenation patterns.
.
hyphen-french -- French hyphenation patterns.
.
impatient-fr -- Free edition of the book "TeX for the Impatient"
.
impnattypo -- Support typography of l'Imprimerie Nationale Francaise
.
l2tabu-french -- French translation of l2tabu
.
latex2e-help-texinfo-fr -- A French translation of "latex2e-help-texinfo"
.
lshort-french -- Short introduction to LaTeX, French translation
.
mafr -- Mathematics in accord with French usage
.
tabvar -- Typesetting tables showing variations of functions
.
tdsfrmath -- Macros for French teachers of mathematics
.
texlive-fr -- TeX Live manual (French)
.
translation-array-fr -- French translation of the documentation of array
.
translation-dcolumn-fr -- French translation of the documentation of dcolumn
.
translation-natbib-fr -- French translation of the documentation of natbib
.
translation-tabbing-fr -- French translation of the documentation of Tabbing
.
variations -- Typeset tables of variations of functions
.
visualtikz -- Visual help for TikZ based on images with minimum text
Package: texlive-lang-german
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-base (>= 2016.20170123-2), texlive-base (>= 2016.20170123-2)
Replaces: texlive-base (<< 2016)
Breaks: texlive-base (<< 2016), texlive-base (<< 2016.20170123-2)
Description: TeX Live: German
Support for German.
.
This package includes the following CTAN packages:
.
apalike-german -- A copy of apalike.bst with German localization
.
babel-german -- Babel support for documents written in German
.
bibleref-german -- German adaptation of bibleref
.
booktabs-de -- German version of booktabs
.
csquotes-de -- German translation of csquotes documentation
.
dehyph-exptl -- Experimental hyphenation patterns for the German language
.
dhua -- German abbreviations using thin space
.
einfuehrung -- Examples from the book Einfuhrung in LaTeX
.
einfuehrung2 -- Examples from the book Einfuhrung in LaTeX
.
etdipa -- Simple, lightweight template for scientific documents
.
etoolbox-de -- German translation of documentation of etoolbox
.
fifinddo-info -- German HTML beamer presentation on nicetext and morehype
.
geometry-de -- German translation of the geometry package
.
german -- Support for German typography
.
germbib -- German variants of standard BibTeX styles
.
germkorr -- Change kerning for German quotation marks
.
hausarbeit-jura -- Class for writing "juristische Hausarbeiten" at German
Universities
.
hyphen-german -- German hyphenation patterns.
.
koma-script-examples -- Examples from the KOMA-Script book
.
l2picfaq -- LaTeX pictures "how-to" (German)
.
l2tabu -- Obsolete packages and commands
.
latex-bib-ex -- Examples for the book Bibliografien mit LaTeX
.
latex-bib2-ex -- Examples for the book Bibliografien mit LaTeX
.
latex-referenz -- Examples from the book "LaTeX Referenz"
.
latex-tabellen -- LaTeX Tabellen
.
latexcheat-de -- A LaTeX cheat sheet, in German
.
lshort-german -- German version of A Short Introduction to LaTeX2e: LaTeX2e-
Kurzbeschreibung
.
lualatex-doc-de -- Guide to LuaLaTeX (German translation)
.
microtype-de -- Translation into German of the documentation of microtype
.
milog -- A LaTeX class for fulfilling the documentation duties according to
the German minimum wage law MiLoG
.
presentations -- Examples from the book Presentationen mit LaTeX
.
r_und_s -- Chemical hazard codes
.
templates-fenn -- Templates for TeX usage
.
templates-sommer -- Templates for TeX usage
.
texlive-de -- TeX Live manual (German)
.
tipa-de -- German translation of tipa documentation
.
translation-arsclassica-de -- German version of arsclassica
.
translation-biblatex-de -- German translation of the User Guide of BibLaTeX
.
translation-chemsym-de -- German version of chemsym
.
translation-ecv-de -- Ecv documentation, in German
.
translation-enumitem-de -- Enumitem documentation, in German
.
translation-europecv-de -- German version of europecv
.
translation-filecontents-de -- German version of filecontents
.
translation-moreverb-de -- German version of moreverb
.
udesoftec -- Thesis class for the University of Duisburg-Essen
.
uhrzeit -- Time printing, in German
.
umlaute -- German input encodings in LaTeX
.
voss-mathcol -- Typesetting mathematics in colour, in (La)TeX
Package: texlive-lang-greek
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, fonts-gfs-baskerville, fonts-gfs-porson, texlive-base (>= 2016.20170123-2), texlive-base (>= 2016.20170123-2), texlive-binaries (>= 2016.20160513.41080-7)
Replaces: texlive-base (<< 2016)
Breaks: texlive-base (<< 2016), texlive-base (<< 2016.20170123-2)
Description: TeX Live: Greek
Support for Greek.
.
This package includes the following CTAN packages:
.
babel-greek -- Babel support for documents written in Greek
.
begingreek -- Greek environment to be used with pdfLaTeX only
.
betababel -- Insert ancient greek text coded in Beta Code
.
bgreek -- Using Beccari's fonts in betacode for classical Greek
.
cbfonts -- Complete set of Greek fonts
.
cbfonts-fd -- LaTeX font description files for the CB Greek fonts
.
gfsbaskerville -- A Greek font, from one such by Baskerville
.
gfsporson -- A Greek font, originally from Porson
.
greek-fontenc -- LICR macros and encoding definition files for Greek
.
greek-inputenc -- Greek encoding support for inputenc
.
greekdates -- Provides ancient Greek day and month names, dates, etc
.
greektex -- Fonts for typesetting Greek/English documents
.
greektonoi -- Facilitates writing/editing of multiaccented greek
.
hyphen-greek -- Modern Greek hyphenation patterns.
.
hyphen-ancientgreek -- Ancient Greek hyphenation patterns.
.
ibycus-babel -- Use the Ibycus 4 Greek font with Babel
.
ibygrk -- Fonts and macros to typeset ancient Greek
.
kerkis -- Kerkis (Greek) font family
.
levy -- Fonts for typesetting classical greek
.
lgreek -- LaTeX macros for using Silvio Levy's Greek fonts
.
mkgrkindex -- Makeindex working with Greek
.
teubner -- Philological typesetting of classical Greek
.
xgreek -- XeLaTeX package for typesetting Greek language documents (beta
release)
.
yannisgr -- Greek fonts by Yannis Haralambous
Package: texlive-lang-indic
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, python, texlive-base (>= 2016.20170123-2), texlive-base (>= 2016.20170123-2), texlive-binaries (>= 2016.20160513.41080-7)
Replaces: texlive-base (<< 2016)
Breaks: texlive-base (<< 2016), texlive-base (<< 2016.20170123-2)
Description: TeX Live: Indic scripts
Support for Indic scripts.
.
This package includes the following CTAN packages:
.
bangtex -- Writing Bangla and Assamese with LaTeX
.
latexbangla -- Enhanced LaTeX integration for Bangla
.
bengali -- Support for the Bengali language
.
burmese -- Basic Support for Writing Burmese
.
ebong -- Utility for writing Bengali in Rapid Roman Format
.
hyphen-indic -- Indic hyphenation patterns.
.
hyphen-sanskrit -- Sanskrit hyphenation patterns.
.
sanskrit -- Sanskrit support
.
sanskrit-t1 -- Type 1 version of 'skt' fonts for Sanskrit
.
velthuis -- Typeset Devanagari
.
wnri -- Ridgeway's fonts
.
wnri-latex -- LaTeX support for wnri fonts
.
xetex-devanagari -- XeTeX input map for Unicode Devanagari
Package: texlive-lang-italian
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-base (>= 2016.20170123-2), texlive-base (>= 2016.20170123-2)
Replaces: texlive-base (<< 2016)
Breaks: texlive-base (<< 2016), texlive-base (<< 2016.20170123-2)
Description: TeX Live: Italian
Support for Italian.
.
This package includes the following CTAN packages:
.
amsldoc-it --
.
amsmath-it -- Italian translations of some old amsmath documents
.
amsthdoc-it --
.
babel-italian -- Babel support for Italian text
.
codicefiscaleitaliano -- Test the consistency of the Italian personal Fiscal
Code
.
fancyhdr-it -- Italian translation of fancyhdr documentation
.
fixltxhyph -- Allow hyphenation of partially-emphasised substrings
.
frontespizio -- Create a frontispiece for Italian theses
.
hyphen-italian -- Italian hyphenation patterns.
.
itnumpar -- Spell numbers in words (Italian)
.
l2tabu-italian -- Italian Translation of Obsolete packages and commands
.
latex4wp-it -- LaTeX guide for word processor users, in Italian
.
layaureo -- A package to improve the A4 page layout
.
lshort-italian -- Introduction to LaTeX in Italian
.
psfrag-italian -- PSfrag documentation in Italian
.
texlive-it -- TeX Live manual (Italian)
Package: texlive-lang-other
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, fonts-sil-padauk, texlive-base (>= 2016.20170123-2), texlive-base (>= 2016.20170123-2)
Replaces: texlive-base (<< 2016)
Breaks: texlive-base (<< 2016), texlive-base (<< 2016.20170123-2)
Description: TeX Live: Other languages
Support for languages not otherwise listed, including Thai, Vietnamese,
Hebrew, Indonesian, and plenty more. The split is made simply on the basis
of the size of the support, to keep both collection sizes and the number of
collections reasonable.
.
This package includes the following CTAN packages:
.
amsldoc-vn -- Vietnamese translation of AMSLaTeX documentation
.
aramaic-serto -- Fonts and LaTeX for Syriac written in Serto
.
babel-bahasa -- Support for Bahasa within babel
.
babel-esperanto -- Babel support for Esperanto
.
babel-georgian -- Babel
.
babel-hebrew -- Babel support for Hebrew
.
babel-interlingua -- Babel support for Interlingua
.
babel-sorbian -- Babel support for Upper and Lower Sorbian
.
babel-thai -- Support for Thai within babel
.
babel-vietnamese -- Babel support for typesetting Vietnamese
.
cjhebrew -- Typeset Hebrew with LaTeX
.
ctib -- Tibetan for TeX and LaTeX2e
.
fonts-tlwg -- Thai fonts for LaTeX from TLWG
.
hyphen-afrikaans -- Afrikaans hyphenation patterns.
.
hyphen-coptic -- Coptic hyphenation patterns.
.
hyphen-esperanto -- Esperanto hyphenation patterns.
.
hyphen-georgian -- Georgian hyphenation patterns.
.
hyphen-indonesian -- Indonesian hyphenation patterns.
.
hyphen-interlingua -- Interlingua hyphenation patterns.
.
hyphen-thai -- Thai hyphenation patterns.
.
hyphen-turkmen -- Turkmen hyphenation patterns.
.
lshort-thai -- Introduction to LaTeX in Thai
.
lshort-vietnamese -- Vietnamese version of the LaTeX introduction
.
ntheorem-vn -- Vietnamese translation of documentation of ntheorem
.
padauk -- a high-quality TrueType font that supports the many diverse
languages that use the Myanmar script
.
vntex -- Support for Vietnamese
Package: texlive-lang-polish
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-base (>= 2016.20170123-2), texlive-base (>= 2016.20170123-2), texlive-binaries (>= 2016.20160513.41080-7), texlive-latex-base (>= 2016.20170123-2)
Suggests: texlive-fonts-extra
Replaces: texlive-base (<< 2016)
Breaks: texlive-base (<< 2016), texlive-base (<< 2016.20170123-2)
Description: TeX Live: Polish
Support for Polish.
.
This package includes the following CTAN packages:
.
babel-polish -- Babel support for Polish
.
cc-pl -- Polish extension of Computer Concrete fonts
.
gustlib --
.
gustprog --
.
hyphen-polish -- Polish hyphenation patterns.
.
lshort-polish -- Introduction to LaTeX in Polish
.
mex -- Polish formats for TeX
.
mwcls -- Polish-oriented document classes
.
pl -- Polish extension of Computer Modern fonts
.
polski -- Typeset Polish documents with LaTeX and Polish fonts
.
przechlewski-book -- Examples from Przechlewski's LaTeX book
.
qpxqtx --
.
tap -- TeX macros for typesetting complex tables
.
tex-virtual-academy-pl --
.
texlive-pl -- TeX Live manual (Polish)
.
utf8mex -- Tools to produce formats that read Polish language input
Package: texlive-lang-portuguese
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-base (>= 2016.20170123-2), texlive-base (>= 2016.20170123-2)
Replaces: texlive-base (<< 2016)
Breaks: texlive-base (<< 2016), texlive-base (<< 2016.20170123-2)
Description: TeX Live: Portuguese
Support for Portuguese.
.
This package includes the following CTAN packages:
.
babel-portuges -- Babel support for Portuges
.
beamer-tut-pt -- An introduction to the Beamer class, in Portuguese
.
cursolatex -- A LaTeX tutorial
.
feupphdteses -- Typeset Engineering PhD theses at the University of Porto
.
hyphen-portuguese -- Portuguese hyphenation patterns.
.
latexcheat-ptbr -- A LaTeX cheat sheet, in Brazilian Portuguese
.
lshort-portuguese -- Introduction to LaTeX in Portuguese
.
ordinalpt -- Counters as ordinal numbers in Portuguese
.
xypic-tut-pt -- A tutorial for XY-pic, in Portuguese
Package: texlive-lang-spanish
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-base (>= 2016.20170123-2), texlive-base (>= 2016.20170123-2)
Replaces: texlive-base (<< 2016)
Breaks: texlive-base (<< 2016), texlive-base (<< 2016.20170123-2)
Description: TeX Live: Spanish
Support for Spanish.
.
This package includes the following CTAN packages:
.
babel-catalan -- Babel contributed support for Catalan
.
babel-galician --
.
babel-spanglish -- Simplified Spanish support for Babel
.
babel-spanish -- Babel support for Spanish
.
es-tex-faq -- CervanTeX (Spanish TeX Group) FAQ
.
hyphen-catalan -- Catalan hyphenation patterns.
.
hyphen-galician -- Galician hyphenation patterns.
.
hyphen-spanish -- Spanish hyphenation patterns.
.
l2tabu-spanish -- Spanish translation of "Obsolete packages and commands"
.
latex2e-help-texinfo-spanish --
.
latexcheat-esmx -- A LaTeX cheat sheet, in Spanish
.
lshort-spanish -- Short introduction to LaTeX, Spanish translation
.
spanish-mx -- Typeset Spanish as in Mexico
.
texlive-es -- TeX Live manual (Spanish)
Package: texlive-lang-all
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-lang-african (>= 2016.20170123-2), texlive-lang-arabic (>= 2016.20170123-2), texlive-lang-chinese (>= 2016.20170123-2), texlive-lang-cjk (>= 2016.20170123-2), texlive-lang-cyrillic (>= 2016.20170123-2), texlive-lang-czechslovak (>= 2016.20170123-2), texlive-lang-english (>= 2016.20170123-2), texlive-lang-european (>= 2016.20170123-2), texlive-lang-french (>= 2016.20170123-2), texlive-lang-german (>= 2016.20170123-2), texlive-lang-greek (>= 2016.20170123-2), texlive-lang-indic (>= 2016.20170123-2), texlive-lang-italian (>= 2016.20170123-2), texlive-lang-japanese (>= 2016.20170123-2), texlive-lang-korean (>= 2016.20170123-2), texlive-lang-other (>= 2016.20170123-2), texlive-lang-polish (>= 2016.20170123-2), texlive-lang-portuguese (>= 2016.20170123-2), texlive-lang-spanish (>= 2016.20170123-2)
Description: TeX Live: metapackage depending on all TeX Live language packages
This package pulls in all texlive-lang-* packages.
|