File: control

package info (click to toggle)
texlive-base 2020.20210202-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 791,092 kB
  • sloc: perl: 45,038; sh: 4,926; makefile: 4,655; ansic: 2,266; ruby: 2,231; tcl: 2,156; xml: 1,874; python: 822; cpp: 695; awk: 606; lisp: 199; sed: 8
file content (1301 lines) | stat: -rw-r--r-- 47,708 bytes parent folder | download
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
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>
Build-Depends: debhelper-compat (= 13), dh-strip-nondeterminism
Build-Depends-Indep: sharutils, tex-common (>= 6.14), findutils (>=4.2.0)
Standards-Version: 4.5.0
Homepage: http://www.tug.org/texlive/
Vcs-Git: https://github.com/debian-tex/texlive-nonbin.git
Vcs-Browser: https://github.com/debian-tex/texlive-nonbin

Package: texlive-base
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, libpaper-utils, sensible-utils, tex-common (>= 6.14), texlive-binaries (>= 2020.20200327), ucf, xdg-utils
Conflicts: tex4ht (<< 20160814), texlive (<< 2020.20200417), texlive-base (<< 2020.20200417), texlive-bibtex-extra (<< 2020.20200417), texlive-binaries (<< 2020.20200327), texlive-extra-utils (<< 2020.20200417), texlive-font-utils (<< 2020.20200417), texlive-fonts-extra (<< 2020.20200417), texlive-fonts-extra-doc (<< 2020.20200417), texlive-fonts-extra-links (<< 2020.20200417), texlive-fonts-recommended (<< 2020.20200417), texlive-fonts-recommended-doc (<< 2020.20200417), texlive-formats-extra (<< 2020.20200417), texlive-full (<< 2020.20200417), texlive-games (<< 2020.20200417), texlive-humanities (<< 2020.20200417), texlive-humanities-doc (<< 2020.20200417), texlive-lang-all (<< 2020.20200417), texlive-lang-arabic (<< 2020.20200417), texlive-lang-chinese (<< 2020.20200417), texlive-lang-cjk (<< 2020.20200417), texlive-lang-cyrillic (<< 2020.20200417), texlive-lang-czechslovak (<< 2020.20200417), texlive-lang-english (<< 2020.20200417), texlive-lang-european (<< 2020.20200417), texlive-lang-french (<< 2020.20200417), texlive-lang-german (<< 2020.20200417), texlive-lang-greek (<< 2020.20200417), texlive-lang-italian (<< 2020.20200417), texlive-lang-japanese (<< 2020.20200417), texlive-lang-korean (<< 2020.20200417), texlive-lang-other (<< 2020.20200417), texlive-lang-polish (<< 2020.20200417), texlive-lang-portuguese (<< 2020.20200417), texlive-lang-spanish (<< 2020.20200417), texlive-latex-base (<< 2020.20200417), texlive-latex-base-doc (<< 2020.20200417), texlive-latex-extra (<< 2020.20200417), texlive-latex-extra-doc (<< 2020.20200417), texlive-latex-recommended (<< 2020.20200417), texlive-latex-recommended-doc (<< 2020.20200417), texlive-luatex (<< 2020.20200417), texlive-metapost (<< 2020.20200417), texlive-metapost-doc (<< 2020.20200417), texlive-music (<< 2020.20200417), texlive-pictures (<< 2020.20200417), texlive-pictures-doc (<< 2020.20200417), texlive-plain-generic (<< 2020.20200417), texlive-pstricks (<< 2020.20200417), texlive-pstricks-doc (<< 2020.20200417), texlive-publishers (<< 2020.20200417), texlive-publishers-doc (<< 2020.20200417), texlive-science (<< 2020.20200417), texlive-science-doc (<< 2020.20200417), texlive-xetex (<< 2020.20200417)
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-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-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-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 for LaTeX, etc
 .
 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
 .
 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 -- A small library of Metafont sources
 .
 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-docindex -- top-level TeX Live doc.html, etc.
 .
 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 (>= 2020.20200417), texlive-base (>= 2020.20200417), texlive-binaries (>= 2020.20200327)
Suggests: texlive-latex-base-doc
Replaces: texlive-latex-extra (<< 2019.202000225), texlive-latex-recommended (<< 2019.20200205), texlive-latex-recommended (<< 2019.20200225), texlive-latex-recommended (<< 2020.20201203)
Breaks: texlive-base (<< 2020.20200417), texlive-formats-extra (<< 2020.20201129), texlive-latex-extra (<< 2019.20191203), texlive-latex-extra (<< 2019.202000225), texlive-latex-recommended (<< 2019.20191208), texlive-latex-recommended (<< 2019.20200205), texlive-latex-recommended (<< 2019.20200225), texlive-latex-recommended (<< 2020.20201203)
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 Plain TeX or LaTeX
 .
 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
 .
 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
 .
 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
 .
 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

Package: texlive-latex-recommended
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-base (>= 2020.20200417), texlive-binaries (>= 2020.20200327), texlive-latex-base (>= 2020.20200417)
Suggests: texlive-latex-recommended-doc, texlive-luatex, texlive-pstricks
Replaces: texlive-latex-base (<< 2019.20191208), texlive-latex-extra (<< 2017.20171003), texlive-latex-extra (<< 2019.20190324), texlive-latex-extra (<< 2019.20190507), texlive-latex-extra (<< 2019.20191208), texlive-luatex (<< 2017.20171003)
Breaks: texlive-base (<< 2020.20200417), texlive-latex-base (<< 2019.20191208), texlive-latex-base (<< 2019.20200205), texlive-latex-base (<< 2019.20200225), texlive-latex-base (<< 2020.20201203), texlive-latex-extra (<< 2017.20171003), texlive-latex-extra (<< 2019.20190324), texlive-latex-extra (<< 2019.20190507), texlive-latex-extra (<< 2019.20190720), texlive-latex-extra (<< 2019.20190915), texlive-latex-extra (<< 2019.20191208), texlive-luatex (<< 2017.20171003)
Description: TeX Live: LaTeX recommended packages
 A collection of recommended add-on packages for LaTeX which have widespread 
 use, and the release candidate formats latex-dev, etc.
 .
 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
 .
 etoolbox -- e-TeX tools for LaTeX
 .
 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
 .
 infwarerr -- Complete set of information/warning/error message macros
 .
 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
 .
 ms -- Various LaTeX packages by Martin Schroder
 .
 newfloat -- Define new floating environments
 .
 ntgclass -- "European" versions of standard classes
 .
 parskip -- Layout with zero \parindent, non-zero \parskip
 .
 pdflscape -- Make landscape pages display as landscape
 .
 pdfpages -- Include PDF documents in LaTeX
 .
 pdftexcmds -- LuaTeX support for pdfTeX utility functions
 .
 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
 .
 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 (>= 2020.20200417), texlive-base (>= 2020.20200417)
Recommends: tex-gyre, tipa (>= 2:1.2-2.1)
Suggests: texlive-fonts-recommended-doc
Breaks: texlive-base (<< 2019.20200213), texlive-base (<< 2020.20200417)
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 (>= 2020.20200417), texlive-base (>= 2020.20200417), texlive-binaries (>= 2020.20200327), texlive-latex-recommended (>= 2020.20200417)
Recommends: ruby | ruby-interpreter, tk
Suggests: dot2tex, prerex (>> 6.5.3-1), ruby-tcltk | libtcltk-ruby, texlive-latex-extra, texlive-pictures-doc, vprerex (>> 6.5.3-1)
Replaces: prerex (<= 6.5.3-1), texlive-luatex (<< 2017.20171022)
Breaks: prerex (<= 6.5.3-1), texlive-base (<< 2020.20200417), texlive-luatex (<< 2017.20171022)
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
 .
 cachepic -- Convert document fragments into graphics
 .
 callouts -- Put simple annotations and notes inside a picture
 .
 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
 .
 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
 .
 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
 .
 fast-diagram -- Easy generation of FAST diagrams
 .
 fig4latex -- Management of figures for large LaTeX documents
 .
 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 -- Rotating caption and object of floats independently
 .
 istgame -- Draw Game Trees with TikZ
 .
 kblocks -- Easily typeset Control Block Diagrams and Signal Flow Graphs
 .
 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
 .
 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
 .
 mathspic -- A Perl filter program for use with PiCTeX
 .
 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
 .
 numericplots -- Plot numeric data (including Matlab export) using PSTricks
 .
 pb-diagram -- A commutative diagram package using LAMSTeX or Xy-pic fonts
 .
 penrose -- A TikZ library for producing Penrose tilings
 .
 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-cmykshadings -- Support for CMYK and grayscale shadings in PGF/TikZ
 .
 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
 .
 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
 .
 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
 .
 pinlabel -- A TeX labelling package
 .
 pixelart -- A package to draw pixel-art pictures
 .
 pmgraph -- "Poor man's" graphics
 .
 postage -- Stamp letters with >>Deutsche Post<<'s service >>Internetmarke<<
 .
 prerex -- Interactive editor and macro support for prerequisite charts
 .
 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
 .
 rviewport -- Relative Viewport for Graphics Inclusion
 .
 sa-tikz -- TikZ library to draw switching architectures
 .
 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
 .
 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
 .
 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-bayesnet -- Draw Bayesian networks, graphical models and directed
 factor graphs
 .
 tikz-bbox -- Precise determination of bounding boxes in TikZ
 .
 tikz-cd -- Create commutative diagrams with TikZ
 .
 tikz-dependency -- A library for drawing dependency graphs
 .
 tikz-dimline -- Technical dimension lines using 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-nef -- Create diagrams for neural networks constructed with the methods
 of the Neural Engineering Framework (NEF)
 .
 tikz-network -- Draw networks with TikZ
 .
 tikz-opm -- Typeset OPM diagrams
 .
 tikz-optics -- A library for drawing optical setups with TikZ
 .
 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-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
 .
 tikzcodeblocks -- Helps to draw codeblocks like scratch, NEPO and PXT in
 TikZ
 .
 tikzducks -- A little fun package for using rubber ducks in TikZ
 .
 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
 .
 tikzposter -- Create scientific posters using TikZ
 .
 tikzscale -- Resize pictures while respecting text size
 .
 tikzsymbols -- Some symbols created using TikZ
 .
 tikztosvg -- A utility for rendering TikZ diagrams to SVG
 .
 tile-graphic -- Create tiles of a graphical file
 .
 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-doc -- Documentation macros for the TKZ series of packages
 .
 tkz-euclide -- Tools for drawing Euclidean geometry
 .
 tkz-fct -- Tools for drawing graphs of functions
 .
 tkz-graph -- Draw graph-theory graphs
 .
 tkz-orm -- Create Object-Role Model (ORM) diagrams
 .
 tkz-tab -- Tables of signs and variations using PGF/TikZ
 .
 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
 .
 utfsym -- Provides various Unicode symbols
 .
 venndiagram -- Creating Venn diagrams with TikZ
 .
 visualpstricks -- Visual help for PSTricks based on images with minimum text
 .
 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 (>= 2020.20200417), texlive-base (>= 2020.20200417), texlive-binaries (>= 2020.20200327)
Replaces: texlive-latex-extra (<< 2020.20200804)
Breaks: texlive-base (<< 2020.20200417), texlive-bibtex-extra (<< 2017.20171022), texlive-lang-arabic (<< 2017.20171022), texlive-latex-extra (<< 2017.20171022), texlive-latex-extra (<< 2020.20200804), texlive-latex-extra-doc (<< 2017.20171022), texlive-latex-recommended (<< 2017.20171003), texlive-latex-recommended-doc (<< 2017.20171003), texlive-pictures (<< 2017.20171022), texlive-pictures-doc (<< 2017.20171022)
Description: TeX Live: LuaTeX packages
 Packages for LuaTeX, a Unicode-aware extension of pdfTeX, using Lua as an 
 embedded scripting and extension language. http://luatex.org/
 .
 This package includes the following CTAN packages:
 .
 addliga -- Access basic ligatures in legacy TrueType fonts
 .
 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
 .
 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
 .
 interpreter -- Translate input files on the fly
 .
 kanaparser -- Kana parser for LuaTeX
 .
 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
 .
 luacode -- Helper for executing lua code from within TeX
 .
 luacolor -- Color support based on LuaTeX's node attributes
 .
 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
 .
 luaintro -- Examples from the book "Einfuhrung in LuaTeX und LuaLaTeX"
 .
 luakeys -- A Lua module for parsing key-value options
 .
 lualatex-doc -- A guide to use of LaTeX with LuaTeX
 .
 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
 .
 luamplib -- Use LuaTeX's built-in MetaPost interpreter
 .
 luaotfload -- OpenType 'loader' for Plain TeX and LaTeX
 .
 luapackageloader -- Allow LuaTeX to load external Lua packages
 .
 luaprogtable -- Programmable table interface for LuaLaTeX
 .
 luarandom -- Create lists of random numbers
 .
 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
 .
 luavlna -- Prevent line breaks after single letter words, units, or academic
 titles
 .
 luaxml -- Lua library for reading and serialising XML files
 .
 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
 .
 placeat -- Absolute content positioning
 .
 plantuml -- Support for rendering UML diagrams using the syntax and tool of
 PlantUML
 .
 selnolig -- Selectively disable typographic ligatures
 .
 spelling -- Support for spell-checking of LuaTeX documents
 .
 stricttex -- Strictly balanced brackets and numbers in command names
 .
 typewriter -- Typeset with a randomly variable monospace font
 .
 uninormalize -- Unicode normalization support

Package: texlive-metapost
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-base (>= 2020.20200417), texlive-base (>= 2020.20200417), texlive-binaries (>= 2020.20200327)
Recommends: feynmf  
Suggests: texlive-metapost-doc
Breaks: texlive-base (<< 2020.20200417)
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
 .
 latexmp -- Interface for LaTeX-based typesetting in MetaPost
 .
 mcf2graph -- Draw chemical structure diagrams with Metafont/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
 .
 mp3d -- 3D animations
 .
 mparrows -- MetaPost module with different types of arrow heads
 .
 mpattern -- Patterns in MetaPost
 .
 mpcolornames -- Extend list of predefined colour names for MetaPost
 .
 mpgraphics -- Process and display MetaPost figures inline
 .
 mptrees -- Probability trees with MetaPost
 .
 piechartmp -- Draw pie-charts using MetaPost
 .
 repere -- Diagrams for school mathematics
 .
 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 (>= 2020.20200417), texlive-base (>= 2020.20200417), texlive-binaries (>= 2020.20200327), texlive-latex-base (>= 2020.20200417), texlive-latex-extra (>= 2020.20200417), tipa (>= 2:1.2-2.1)
Recommends: lmodern
Breaks: texlive-base (<< 2020.20200417), texlive-lang-arabic (<< 2020.20200519), texlive-lang-german (<< 2020.20200519)
Description: TeX Live: XeTeX and packages
 Packages for XeTeX, the Unicode/OpenType-enabled TeX by Jonathan Kew, 
 http://tug.org/xetex.
 .
 This package includes the following CTAN packages:
 .
 arabxetex -- An ArabTeX-like interface for XeLaTeX
 .
 awesomebox -- Draw admonition blocks in your documents, illustrated with
 FontAwesome icons
 .
 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
 .
 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
 .
 xecjk -- Support for CJK documents in 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

Package: texlive
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, texlive-fonts-recommended (>= 2020.20200417), texlive-latex-base (>= 2020.20200417), texlive-latex-recommended (>= 2020.20200417)
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 (>= 2020.20200417), texlive-bibtex-extra (>= 2020.20200417), texlive-binaries (>= 2020.20200327), texlive-extra-utils (>= 2020.20200417), texlive-font-utils (>= 2020.20200417), texlive-fonts-extra (>= 2020.20200417), texlive-fonts-extra-doc (>= 2020.20200417), texlive-fonts-extra-links (>= 2020.20200417), texlive-fonts-extra-links (>= 2020.20200417), texlive-fonts-recommended (>= 2020.20200417), texlive-fonts-recommended-doc (>= 2020.20200417), texlive-formats-extra (>= 2020.20200417), texlive-games (>= 2020.20200417), texlive-humanities (>= 2020.20200417), texlive-humanities-doc (>= 2020.20200417), texlive-lang-arabic (>= 2020.20200417), texlive-lang-chinese (>= 2020.20200417), texlive-lang-cjk (>= 2020.20200417), texlive-lang-cyrillic (>= 2020.20200417), texlive-lang-czechslovak (>= 2020.20200417), texlive-lang-english (>= 2020.20200417), texlive-lang-european (>= 2020.20200417), texlive-lang-french (>= 2020.20200417), texlive-lang-german (>= 2020.20200417), texlive-lang-greek (>= 2020.20200417), texlive-lang-italian (>= 2020.20200417), texlive-lang-japanese (>= 2020.20200417), texlive-lang-korean (>= 2020.20200417), texlive-lang-other (>= 2020.20200417), texlive-lang-polish (>= 2020.20200417), texlive-lang-portuguese (>= 2020.20200417), texlive-lang-spanish (>= 2020.20200417), texlive-latex-base (>= 2020.20200417), texlive-latex-base-doc (>= 2020.20200417), texlive-latex-extra (>= 2020.20200417), texlive-latex-extra-doc (>= 2020.20200417), texlive-latex-recommended (>= 2020.20200417), texlive-latex-recommended-doc (>= 2020.20200417), texlive-luatex (>= 2020.20200417), texlive-metapost (>= 2020.20200417), texlive-metapost-doc (>= 2020.20200417), texlive-music (>= 2020.20200417), texlive-pictures (>= 2020.20200417), texlive-pictures-doc (>= 2020.20200417), texlive-plain-generic (>= 2020.20200417), texlive-pstricks (>= 2020.20200417), texlive-pstricks-doc (>= 2020.20200417), texlive-publishers (>= 2020.20200417), texlive-publishers-doc (>= 2020.20200417), texlive-science (>= 2020.20200417), texlive-science-doc (>= 2020.20200417), texlive-xetex (>= 2020.20200417), 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 (>= 2020.20200417)
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 (>= 2020.20200417)
Replaces: texlive-latex-extra-doc (<< 2019.202000225), texlive-latex-recommended-doc (<< 2019.20200205), texlive-latex-recommended-doc (<< 2019.20200225), texlive-latex-recommended-doc (<< 2020.20201203)
Breaks: texlive-latex-extra-doc (<< 2019.20191203), texlive-latex-extra-doc (<< 2019.202000225), texlive-latex-recommended-doc (<< 2019.20191208), texlive-latex-recommended-doc (<< 2019.20200205), texlive-latex-recommended-doc (<< 2019.20200225), texlive-latex-recommended-doc (<< 2020.20201203)
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 (>= 2020.20200417)
Replaces: texlive-latex-base-doc (<< 2019.20191208), texlive-latex-extra-doc (<< 2017.20171003), texlive-latex-extra-doc (<< 2019.20190324), texlive-latex-extra-doc (<< 2019.20190507), texlive-latex-extra-doc (<< 2019.20191208), texlive-luatex (<< 2017.20171003)
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-extra-doc (<< 2017.20171003), texlive-latex-extra-doc (<< 2019.20190324), texlive-latex-extra-doc (<< 2019.20190507), texlive-latex-extra-doc (<< 2019.20190720), texlive-latex-extra-doc (<< 2019.20190915), texlive-latex-extra-doc (<< 2019.20191208), texlive-luatex (<< 2017.20171003)
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 (>= 2020.20200417)
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 (>= 2020.20200417)
Replaces: texlive-luatex (<< 2017.20171022)
Breaks: texlive-luatex (<< 2017.20171022)
Description: TeX Live: Documentation files for texlive-pictures
 This package provides the documentation for texlive-pictures