This repository has been archived by the owner on Sep 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
17816 lines (11190 loc) · 580 KB
/
ChangeLog
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
2018-05-18 Karl Berry <[email protected]>
* faq-how-do-i.tex (Q-2colfloat): mention the nidanfloat package,
which solves the problem completely, and bb's article
http://tug.org/TUGboat/tb35-3/tb111beet-banner.pdf.
* markup-syntax.md: main text is in faq-*.tex, not newfaq.tex.
More hints for TUGboat and question cross-references.
2016-08-18 Karl Berry <[email protected]>
* faq-docs.tex (Q-maillists): mail-archive.com mia; replace
with link to new http://ctan.org/ctan-ann.
2014-06-10 Robin Fairbairns <[email protected]>
* texfaq2html: tidy blank lines
* sanitize.pl: a few changes from -beta
* gather-faqbody.tex: new version
* faq-intro.tex:
* faq-mac-prog.tex
* faq-wdidt.tex:
* add-general.tex: \nothtml{\noindent}!!!
2014-06-09 Robin Fairbairns <[email protected]>
* faq-how-do-i.tex (q-conditional): mention the tagging package
2014-06-03 Robin Fairbairns <[email protected]>
* faq-bits+pieces.tex (q-dtx): first stab at description of "using" a
.dtx/.ins combination to produce packages and docs
2014-05-30 Robin Fairbairns <[email protected]>
* faq-fmt-conv.tex (q-latextoplain): clarification (i hope!)
* faq-backgrnd.tex (q-context): attempting a better path for beginners
2014-05-21 Robin Fairbairns <[email protected]>
* faq-backgrnd.tex (q-readtex): dash off ref to online compilers
2014-05-18 Robin Fairbairns <[email protected]>
* faq-t-g-wr.tex (q-oldfontnames): historic stuff cleared away,
slight rewording
2014-05-07 Robin Fairbairns <[email protected]>
* faq-adj-types.tex (q-makeindex): work on description of using xindy
* sanitize-beta.pl (sanitize_line): add \luatex and \lualatex
* faq.sty: add \luatex and \lualatex
2014-05-02 Robin Fairbairns <[email protected]> [email protected]
* faq-biblio.tex (q-custbib): discourage beginners from attempting
their own biblatex style; editorial
2014-04-25 Robin Fairbairns <[email protected]>
* dirctan.tex: restore lollipop (w/cat link)
* faq-backgrnd.tex (q-lollipop): renew, from add-general
2014-04-23 Robin Fairbairns <[email protected]>
* dirctan.tex: drop fonts/armenian (fonts now part of armtex)
* add-general.tex (q-lollipop): recreated entry for lollipop
2014-04-04 Robin Fairbairns <[email protected]>
* faq-mac-prog.tex (q-cmdstar): bug fix from javier mora
2014-03-19 Robin Fairbairns <[email protected]>
* faq-getit.tex (q-findfiles): editorial
2014-03-18 Robin Fairbairns <[email protected]>
* faq-backgrnd.tex (q-catalogue): yet another iteration
(q-context): typos
(q-latexandplain): rewrite. who knows if it's worth it...
2014-03-17 Robin Fairbairns <[email protected]>
* faq-backgrnd.tex (q-catalogue): 2 iterations towards
comprehensibility
2014-03-14 Robin Fairbairns <[email protected]>
* faq-docs.tex (q-latex-books): sort out html of more math into latex
(still not terribly good, but no more actual latex...)
2014-03-05 Robin Fairbairns <[email protected]>
* add-general.tex (q-getnff,q-otf-maths): removed as already in main
(q-outer-err): removed, similarly
2014-03-04 Robin Fairbairns <[email protected]>
* faq-docs.tex: missing close brace
2014-02-18 Robin Fairbairns <[email protected]>
* faq-docs.tex (q-mfptutorials): add links to the voipio papers,
and remove the (dead) one to Heck's
2014-02-16 Robin Fairbairns <[email protected]>
* faq-hyp+pdf.tex (q-pdfpagelabels): add {} to a \dots call
(q-cpy-srchpdf): deal with broken parens
2014-02-10 Robin Fairbairns <[email protected]>
* add-general.tex: remove q-ltx-csv (now in faq-mac-prog)
2014-01-31 Robin Fairbairns <[email protected]>
* faq-biblio.tex (q-custbib): typo
2014-01-29 Robin Fairbairns <[email protected]>
* sanitize-beta.pl (sanitize_line): remove {} from pattern \\The{}\{\} ?
2014-01-28 Robin Fairbairns <[email protected]>
* faq-docs.tex (q-gethelp): warning of abrasiveness on tex/sx
2014-01-26 Robin Fairbairns <[email protected]>
* faq-how-do-i.tex (Q-filesused): convert tetex ref to texlive-unix(!)
2014-01-22 Robin Fairbairns <[email protected]>
* faq-adj-types.tex (q-dropping): remove ref to vtex
* faq-graphics.tex (q-labelfig): remove refs to vtex
* faq-hyp+pdf.tex (q-acrobat): remove ref to vtex
* faq-t-g-wr.tex (q-usepictex): root out reference to vtex
* faq-fonts.tex (q-otf-maths): new, from add-general
(q-psfchoice): editorial, incl reference to q-otf-maths
2014-01-21 Robin Fairbairns <[email protected]>
* faq-getit.tex (q-findfont): tidy, and fill in missing holes
2013-12-10 Robin Fairbairns <[email protected]>
* faq-backgrnd.tex (q-mp): mp output may be svg, too
2013-12-04 Robin Fairbairns <[email protected]>
* faq-symbols.tex (q-numbersets): add boondox as a source, mention
newpx, newtx as preferable to pxfonts/txfonts
2013-11-28 Robin Fairbairns <[email protected]>
* add-general.tex (q-cap-out-flt): new error answer
2013-11-27 Robin Fairbairns <[email protected]>
* faq-backgrnd.tex (q-whattex): reworded for clarity
2013-11-26 Robin Fairbairns <[email protected]>
* faq-wdidt.tex (q-xspace): play the command down (after reading a post
on tex/sx by david carlisle, tidy the whole question.
2013-11-20 Robin Fairbairns <[email protected]>
* faq-jot-err.tex (q-normalszmiss): rewritten. not easy to do, without
sounding patronising
2013-11-19 Robin Fairbairns <[email protected]>
* faq-install.tex,faq-biblio.tex: editorial (% signs)
* faq-wdidt.tex (q-center-flt): new, from add-general
* sanitize-beta.pl (sanitize_line): move \textpercent{} to immediately
below "dump comments" code
* faq-adj-types.tex (a-outszwrng): braces after \textpercent
2013-11-05 Robin Fairbairns <[email protected]>
* add-general.tex (q-inputenc): show structure of multiple-encoding docs
2013-10-28 Robin Fairbairns <[email protected]>
* faq-adj-types.tex (q-linespace): editorial
2013-10-22 Robin Fairbairns <[email protected]>
* faq-fonts.tex (q-getnff): new, from add-general
* add-general.tex (q-getnff): mention distinction between -sys and
user versions of the script
2013-10-21 Robin Fairbairns <[email protected]>
* faq-wdidt.tex (q-verbwithin): mention verbatim writing using
tcolorbox and moreverb (and mention the comments in the doc of
verbatim, for diy enthusiasts).
* faq-intro.tex: add martin garrod to the list, mark drucbert deceased
* faq-bits+pieces.tex (q-clsvpkg): remove duplicate "report" (!)
2013-10-18 Robin Fairbairns <[email protected]>
* add-general.tex (q-catcodes): doodling with better explanation
(not got very far)
* faq-docs.tex (q-latex-books): reference digital version of tlc2
* FAQ-wdidt.tex (q-verbwithin): typo (extra closing paren)
2013-10-15 Robin Fairbairns <[email protected]>
* faq-docs.tex (q-bibtexing): mention www.bibtex.org
2013-10-10 Robin Fairbairns <[email protected]>
* faq-backgrnd.tex (q-context): provide link to minimals (even though
it's not the neatest of web sites...)
2013-10-09 Robin Fairbairns <[email protected]>
* dirctan.tex: add context-contrib
* faq-backgrnd.tex (q-context): edited for more realism re. ctan
* faq-getit.tex (q-findfiles): rsync is the only mirroring protocol
2013-10-02 Robin Fairbairns <[email protected]>
* faq-support.tex (q-spell): weave in hunspell (not on ctan...)
2013-09-27 Robin Fairbairns <[email protected]>
* faq-mac-prog.tex (q-plninltx*): editorial (hoping for clarification)
(q-ltxcmds): editorial (again aiming for clarification)
* faq-adj-types.tex (q-music): typo for \progname
2013-09-25 Robin Fairbairns <[email protected]>
* faq-docs.tex (q-gethelp): change junk edit date to today
2013-09-23 Robin Fairbairns <[email protected]>
* dirctan.tex: makeinfo's moved
* faq-adj-types.tex (q-music): use of lilyglyphs as option
2013-09-20 Robin Fairbairns <[email protected]>
* faq-how-do-i.tex (q-nohyph): minor editorial
(q-hyphoff): ditto
(q-hyphexcept): editorial, add a bit of text discussing unicode
hyphenation
2013-09-13 Robin Fairbairns <[email protected]>
* gather-faqbody.tex: comment out debugging stuff
* faq-docs.tex (q-gethelp): mention tex/sx "getting started" page
2013-09-11 Robin Fairbairns <[email protected]>
* dirctan.tex: pgf dir is actually the base above graphics/pgf
add cat link for picinpar
* faq-mac-prog.tex (q-ltx-csv): new, from add-general
2013-09-09 Robin Fairbairns <[email protected]>
* faq-jot-err.tex (q-parmoderr): new, from add-general
* add-general.tex (q-parmoderr): tweaks for clarification
2013-08-29 Robin Fairbairns <[email protected]>
* faq-adj-types.tex (q-overstrike): suggest pdfcomment
* dirctan.tex: add pdfcomment
2013-08-21 Robin Fairbairns <[email protected]>
* faq-how-do-i.tex (q-mathlips): sort out refs to yhmath (now in just
the one place on ctan
* dirctan.tex: add belleek (from broken filectan entry)
* faq-hyp+pdf.tex (q-cpy-srchpdf): extended replacement for q-srchpdf
* dirctan.tex: add mmap, belleek; remove one of the verbdef entries
2013-08-20 Robin Fairbairns <[email protected]>
* faq-intro.tex: editorial
* faq-wdidt.tex (q-tocloftwrong): missing brace
2013-08-19 Robin Fairbairns <[email protected]>
* dirctan.tex: remove duplicate of verbdef
2013-07-18 Robin Fairbairns <[email protected]>
* dirctan.tex: tidy up copies
* faq-texsys.tex (throughout): remove vtex
(q-sysunix): purge mention of unix miktex
dirctan.tex: remove biolinum
2013-07-17 Robin Fairbairns <[email protected]>
* faq-adj-types.tex (q-slidecls): link to beamer theme gallery
2013-07-15 Robin Fairbairns <[email protected]>
* faq-adj-types.tex (q-papergeom): no more vtex
* faq-texsys.tex (q-sysother): expunge reference to vtex
2013-07-14 Robin Fairbairns <[email protected]>
* faq-wdidt.tex (q-tocloftwrong): give answers as well as reference!
(needs some reference to koma-script)
2013-07-12 Robin Fairbairns <[email protected]>
* faq-graphics.tex (q-labelfig): add text discussing pdfrack
* dirctan.tex: add pdfrack
2013-07-09 Robin Fairbairns <[email protected]>
* faq-bits+pieces.tex (q-clsvpkg): editorial
2013-07-02 Robin Fairbairns <[email protected]>
* faq-docs.tex (q-whereFAQ): remove voss's texnik.de (no longer there)
2013-06-25 Robin Fairbairns <[email protected]>
* faq-backgrnd.tex (q-eplain): editorial
(q-whyfree): editorial on licence issues
(q-tug*): tidy conditional sections
2013-06-20 Robin Fairbairns <[email protected]>
* dirctan.tex: add verbatimbox
* faq-wdidt.tex (q-verbwithin): add bullet item about verbatimbox
2013-06-17 Robin Fairbairns <[email protected]>
* faq-backgrnd.tex (q-context): flagged potential need for context
minimals; this file is wildly different to its supposed rcs copy...
needs review when i've learnt more about minimals
2013-06-12 Robin Fairbairns <[email protected]>
* faqbody.tex: version 3.28, today
* faq-symbols.tex (q-boldgreek): largely rewritten, with more detail
about the reasons for the acrobatics needed (also remove incorrect
assertion about amsmath and \mathbf)
2013-06-10 Robin Fairbairns <[email protected]>
* faq-wdidt.tex (q-verbwithin): newverbs helps -- like verbdef, etc
* dirctan.tex: add newverbs
2013-06-07 *** Release 3.27 ***
2013-06-06 Robin Fairbairns <[email protected]>
* add-general.tex (q-otf-maths): minor tweak
* faq-install.tex (q-what-TDS): editorial
2013-06-05 Robin Fairbairns <[email protected]>
* faq-symbols.tex (q-scriptfonts): mention tgchorus
* faq-wdidt.tex (q-dolldoll): editorial clarification (hopefully...)
2013-06-04 Robin Fairbairns <[email protected]>
* dirctan.tex: add anyfontsize, remove ghostscript, gsview,
correct polyglossia
* faq-mac-prog.tex (q-fontsize): editorial, incorporate
anyfontsize package
2013-06-03 Robin Fairbairns <[email protected]>
* faq-backgrnd.tex (q-notWYSIWYG): flesh out, note demise of textures,
editorial
* texfaq2html-beta: ignore intro by scanning file for \end{introduction}
* faq-jot-err.tex (q-buffovl): editorial
* faq-graphics.tex (q-labelfig,q-repeatgrf,q-dvipdfmgraphics): gs
from web
2013-05-31 Robin Fairbairns <[email protected]>
* faq-hyp+pdf.tex (q-hyper, q-acrobat): tidies, gs from web
2013-05-29 Robin Fairbairns <[email protected]>
* faq-fonts.tex (q-psfchoice): add URW base35 in their own right
to discussion of txfonts
* faq-graphics.tex (q-mpprologues): href for ghostscript
(q-labelfig): href for gsview
* faq-fonts.tex (q-psfchoice): href for ghostscript
* faq-dvi.tex (q-otherprinters): href for ghostscript
2013-05-24 Robin Fairbairns <[email protected]>
* texfaq2html: minuscule changes from -beta
* sanitize.pl (sanitize_line): minuscule changes from -beta
2013-05-21 Robin Fairbairns <[email protected]>
* faq-backgrnd.tex (q-texfuture): end date for luatex 2014 (i think)
* sanitize-beta.pl (sanitize_line): add entity xlations for \beta, \pi
* faq-projects.tex (q-luatex): update somewhat
* faq-backgrnd.tex (q-ctan): editorial
(q-catalogue): editorial
(q-y2k): commented out (no longer relevant)
2013-05-20 Robin Fairbairns <[email protected]>
* faq-texsys.tex (q-editors): reword mention of texworks, add texstudio
2013-05-14 Robin Fairbairns <[email protected]>
* faq-symbols.tex (q-osf): \oldstylenums _does_ use bold style
2013-05-13 Robin Fairbairns <[email protected]>
* dirctan.tex: add try
* faq-how-do-i.tex (q-make): add try
* faq-backgrnd.tex (q-catalogue): editorial
2013-04-29 Robin Fairbairns <[email protected]>
* faq-intro.tex: added subsection about licence
2013-04-23 Robin Fairbairns <[email protected]>
* faq-graphics.tex (q-mpprologues): untangle some prose. slightly.
2013-04-22 Robin Fairbairns <[email protected]>
* faq-fonts.tex (q-pspreview): ghostscript, gsview from web
(q-psfchoice): remove ghostscript mention in discussing urw fonts;
reference newpx from pxfonts, and newtx from txfonts, add urw-base35
to ctanrefs as locations of palladio and NimbusRomanNo9
2013-04-19 Robin Fairbairns <[email protected]>
* faq-dvi.tex (q-dvi-bmp): typo
2013-04-18 Robin Fairbairns <[email protected]>
* faq-jot-err.tex (q-buffovl): ghostscript and gsview from the net
2013-04-17 Robin Fairbairns <[email protected]>
* dirctan.tex: add dtxgen
* faq-bits+pieces.tex (q-dtx): mention dtxgen
* faq-projects.tex (q-luatex): revise version statement, editorial
2013-04-16 Robin Fairbairns <[email protected]>
* faq-texsys.tex (q-commercial): remove bluesky :-(
2013-04-16 Robin Fairbairns <[email protected]>
* faq-fmt-conv.tex (q-recovertex): munge ghostscript refs, remove it
from ctanrefs
* faq-dvi.tex (q-dvi-bmp): editorial
* add-general.tex (q-tangle-weave): editorial, link to doc of web2c on
tug site
2013-04-12 Robin Fairbairns <[email protected]>
* faq-fmt-conv.tex (q-fmtconv): tidy, re-organise
2013-04-11 Robin Fairbairns <[email protected]>
* faq-fmt-conv.tex (q-readML): correct a \Qref call
* faq-fonts.tex (q-psfchoice): add newpx to the list
* faq-texsys.tex (q-syswin32): miktex 2.9 (in ctanrefs)
* faq-dvi.tex (q-otherprinters): reword because gs no longer on ctan
(q-previewers): ditto
2013-04-09 Robin Fairbairns <[email protected]>
* faq-symbols.tex (q-scriptfonts): elide mention of ghostscript,
since (a) it doesn't add anything, and (b) it's no longer
available on ctan
* dirctan.tex: add newpx
2013-03-28 Robin Fairbairns <[email protected]>
* filectan.tex: remove <ispell>
* dirctan.tex: add <showexpl>, <ispell>; correct <spelling>; remove
<makeinfo>, ghostscript-[gpl|ghostgum]
* faq-adj-types.tex (q-codelist): add showexpl
2013-03-26 Robin Fairbairns <[email protected]>
* faq-docs.tex (q-man-latex): add link to nicola's phd and admin books
2013-03-22 Robin Fairbairns <[email protected]>
* add-general.tex (q-tangle-weave): new: the basics of web
2013-03-21 Robin Fairbairns <[email protected]>
* faq-how-do-i.tex (q-make): add ctan link for vpp
2013-03-15 Robin Fairbairns <[email protected]>
* faq-bits+pieces.tex (q-dvi): editorial, hoping to clarify
2013-03-11 Robin Fairbairns <[email protected]>
* faq-how-do-i.tex (q-footintab): don't suggest putting a "table" in
minipage ... good sense from ulrike fischer
2013-03-08 Robin Fairbairns <[email protected]>
* sanitize-beta.pl (sanitize_line): \arrowhyph translate to →
2013-03-07 Robin Fairbairns <[email protected]>
* gather-faqbody.tex: v3.26b, today
* faq-the-end.tex (q-latexbug): removed "upload bug by email"; editorial
2013-03-05 Robin Fairbairns <[email protected]>
* add-general.tex (q-varitoc): start of an answer starting from the
ideas of the tableof package
* faq-adj-types.tex (q-minitoc): editorial
2013-03-04 Robin Fairbairns <[email protected]>
* texfaq2html, texfaq2html-beta, sanitize.pl, sanitize-beta.pl:
correct \ctanhref coding (never-used flexibility in early coding
had confused me summat rotten)
2013-03-01 Robin Fairbairns <[email protected]>
* faq-intro: remove a spurious "<p/>" (huh?)
* faq-jot-err.tex (q-manymathalph): point out that the problem can also
be avoided by using xetex/luatex
* gather-faqbody.tex: version 3.26a, today (released as beta)
* faq-mac-prog.tex (q-repeat-num): tone down "tex.ne.prog language"
(q-repeat-set): consequential changes to match -repeat-num
2013-02-28 Robin Fairbairns <[email protected]>
* faq-mac-prog.tex (q-cmdstar): this was buggy; corrected
2013-02-26 Robin Fairbairns <[email protected]>
* faqbody.tex: update \faqfiledate
*** released 3.26 ***
2013-02-21 Robin Fairbairns <[email protected]>
* faq-support.tex (q-spell): editorial
* faq-fmt-conv.tex (q-readml): question links for context, luatex
2013-02-20 Robin Fairbairns <[email protected]>
* faq-graphics.tex (q-pdftexgraphics): \lastedit
* faq-adj-types.tex (q-nofm): \lastedit
* faq-mac-prog.tex (q-latexqual): \lastedit
* faq-how-do-i.tex (q-dpfloat, q-ftncapt): \lastedit
* faq-wdidt.tex (q-dolldoll): editorial
* faq-backgrnd.tex (q-ctan): editorial
* faq-adj-types.tex (q-codelist): editorial
* faq-bits+pieces.tex (q-whatenv): editorial
* faq-jot-err.tex (q-expl3-old): editorial
* faq-mac-prog.tex (q-repeat-num): editorial
2013-02-19 Robin Fairbairns <[email protected]>
* sanitize.pl (sanitize_line): updates from -beta (not many)
2013-02-15 Robin Fairbairns <[email protected]>
* faq-wdidt.tex (q-verbwithin): \lastedit outside ctanrefs(!)
(q-noline): question title in quotes
2013-02-08 Robin Fairbairns <[email protected]>
* dirctan.tex: add arara
* faq-how-do-i.tex (q-make): add arara
2013-02-07 Robin Fairbairns <[email protected]>
* texfaq2html-beta: align with texfaq2html (regular)
2013-02-01 Robin Fairbairns <[email protected]>
* faq-projects.tex (q-omegaleph): editorial
* faq-jot-err.tex (q-expl3-old): editorial (too many parens)
* faq-how-do-i.tex (q-dpfloat): describe \ContinuedFloat
* faq-projects.tex (q-xetex): change question title to match others in
the section
2013-01-31 Robin Fairbairns <[email protected]>
* faq-getit.tex (q-uploads): reflect changed situation
* faq-backgrnd.tex (q-ctan): reflect changed situation
2013-01-30 Robin Fairbairns <[email protected]>
* dirctan.tex: add ucharclasses, xecjk
* add-general.tex (q-xetex*): new, from an answer in stackexchange
2013-01-28 Robin Fairbairns <[email protected]>
* faq.sty: add \ctan for all those \acro calls
* gather-faqbody.tex: file date today. may be near, now...
2013-01-10 Robin Fairbairns <[email protected]>
* faq-docs.tex (q-pkgdoc): mthelp on miktex rather than texdoc
2013-01-09 Robin Fairbairns <[email protected]>
* dirctan.tex: add mwe, blindtext and lipsum
* faq-docs.tex (q-minxampl): more detail about support packages, etc;
editorial
2013-01-04 Robin Fairbairns <[email protected]>
* faq-biblio.tex (q-chapbib): show biblatex-based approach
2012-12-21 Robin Fairbairns <[email protected]>
* dirctan.tex: remove biolinum-type1 (never actually used in a
published version...)
* faq-mac-prog.tex (q-patch): mention regexpatch
* dirctan.tex: add regexpatch
2012-12-14 Robin Fairbairns <[email protected]>
* faq-getit.tex (q-archives): first stab at "new world"
(q-uploads): only one upload method, nowadays
2012-12-07 Robin Fairbairns <[email protected]>
* dirctan.tex: add spelling
* faq-support.tex (q-spell): update text, and add spelling package
* sanitize-beta.pl (sanitize_line): add \^o
2012-12-03 Robin Fairbairns <[email protected]>
* faq-bits+pieces.tex (q-spawnprog): editorial
(q-hyphen): editorial, ref q-hyphenaccents
2012-11-29 Robin Fairbairns <[email protected]>
* faq-docs.tex (q-man-latex): omit frivolous comment about uea users
being taught by nicola
(q-latex3-prog): moved here from faq-mac-prog
2012-11-28 Robin Fairbairns <[email protected]>
* faq-how-do-i.tex (q-conditional): suggest stampinclude
* dirctan.tex: add commado
* faq-mac-prog.tex (q-repeat-set): add commado and filesdo
* filectan.tex: add interface3-doc, expl3-doc
* faq-mac-prog.tex (q-latex3-prog): new, from stack exchange
2012-11-26 Robin Fairbairns <[email protected]>
* faq-adj-types.tex (q-codelist): elaborate on use of minted
* faq-fmt-conv.tex (q-readml): give context mkiv pride of place
(coming from nowhere in the previous release ;-)
2012-11-21 Robin Fairbairns <[email protected]>
* add-general.tex (q-center-flt): typo
2012-11-20 Robin Fairbairns <[email protected]>
* faq-graphics.tex (q-pdftexgraphics): add pdftricks2
* faq-adj-types.tex (q-tocloft): mention etoc
* faq-fonts.tex (q-psfchoice): add garamondx extn to newtx
* dirctan.tex: add garamondx, pdftricks2; correct pdftricks; remove all
"libertine*" except libertine itself; add cat link for newtx
2012-11-19 Robin Fairbairns <[email protected]>
* add-general.tex (q-samepage): editorial twiddle
* faq-adj-types.tex (q-extsizes): caveat text for scrextend, about
design (perhaps restructure so as to have just one caveat for both
packages)
2012-11-16 Robin Fairbairns <[email protected]>
* faq-litprog.tex (q-lit): sort empty link target
* faq-support.tex (q-texcad): sort empty link target
* faq-how-do-i.tex (q-vertspacefloat): removed
* faq-wdidt.tex (q-vertspacefloat): come from faq-how-do-i
* faq-bits+pieces.tex (q-whatenv): point out args don't propagate to
end env code
* add-general.tex (q-center-flt): new, following q on c.t.t (or summat)
2012-11-15 Robin Fairbairns <[email protected]>
* dirctan.tex: add shorttoc
* add-general.tex (q-shorttoc): new answer (copied from tex/sx)
* gather-faqbody.tex: v3.26, today (premature...)
2012-11-09 Robin Fairbairns <[email protected]>
* faq-jot-err.tex (q-expl3-old): new, from add-general
* faq-docs.tex (q-pkgdoc): mention texdoc.net
2012-11-01 Robin Fairbairns <[email protected]>
* faq-adj-types.tex (q-extsizes): show use of scrextend for random sizes
2012-10-31 Robin Fairbairns <[email protected]>
* faq-wdidt.tex (q-verbwithin): editorial don't refer to expl3 directly
* add-general.tex (q-expl3-old): new, about the common error message
2012-10-30 Robin Fairbairns <[email protected]>
* filectan.tex: add memoir-man
* faq-how-do-i.tex (q-complist): editorial, for clarification, incl
pointer to memoir manual section
2012-10-29 Robin Fairbairns <[email protected]>
* faq-biblio.tex (q-usebibtex): editorial (testing macros)
2012-10-26 Robin Fairbairns <[email protected]>
* archive.cfg: use mirror.ctan.org for arch ptrs
* add-general.tex (q-otf-maths): editorial
2012-10-25 Robin Fairbairns <[email protected]>
* add-general.tex (q-otf-maths): started yesterday -- what it says
2012-10-24 Robin Fairbairns <[email protected]>
* faq-fonts.tex (q-psfchoice): change question answered, update listed
coverage of mathdesign
(q-pspreview): editorial
(q-charshift): note now vanishingly unlikely
2012-10-22 Robin Fairbairns <[email protected]>
* add-general.tex (q-bib-trblshoot): new answer, from sx/63852
* faq-wdidt.tex (q-dolldoll): tidy, on the basis of sx/503
2012-10-19 Robin Fairbairns <[email protected]>
* faq-texsys.tex (q-texsystems): no empty arg to \qref
* faq-graphics.tex (q-drawing): clarify statements about pgf
* sanitize.pl (sanitize_line): pick up changes in -beta
* sanitize-beta.pl (sanitize_line): only one \pictex, with "i" flag
* faq-bits+pieces.tex (q-virtualfonts): correct href to knuth on vfs
* texfaq2html-gamma: use label-to-file.pl
* faq-bits+pieces.tex (q-dvi,q-pk,q-tfm,q-virtualfonts): editorial
2012-10-17 Robin Fairbairns <[email protected]>
* add-general.tex (q-simple-maths): remove refs to libgreek, libertine,
biolinum (since libgreek is based on libertine-legacy)
* faq-fonts.tex (q-psfchoice): libertine-legacy->libertine-type1
* dirctan.tex: add libertine, libertine-t1, biolinum-t1, remove
libertine-legacy
2012-10-17 Robin Fairbairns <[email protected]>
* dirctan.tex: remove libertine-legacy, add libertine, {}-type1,
biolinum-type1
2012-10-16 Robin Fairbairns <[email protected]>
* faq-adj-types.tex (q-nofm): zref-lastpage does a LastPage label, too
2012-10-15 Robin Fairbairns <[email protected]>
* add-general.tex (q-gensym): opening out old proto-answer
2012-10-10 Robin Fairbairns <[email protected]>
* patchdates.tex: is this really necessary
* add-general.tex (q-detknize): probably dead -- mark as such
* faq-bits+pieces.tex (q-whatenv): new, from add-general
* faq-backgrnd.tex (q-ctan): tweak description of mirror.ctan
(q-whyfree): add closing paren in first sentence!
(q-readtex): add a let-out clause at the end ;-)
2012-10-09 Robin Fairbairns <[email protected]>
* faq-mac-prog.tex (q-ltxcmds): diddle with margins for narrowversion
* add-general.tex (q-whatenv): basic body of answer complete
* faq-t-g-wr.tex,faq-docs.tex,faq-graphics.texfaq-how-do-i.tex
(throughout): use \pictex{}
* faq.sty: \pictex so as to avoid typos ;-)
* filectan.tex: remove l2tabuen, l2tabuen.src
* faq-docs.tex (q-man-latex): unify reference to l2tabu
* faq-mac-prog.tex (q-ltxcmds): more examples of the performance of
latexdef, for environments
(q-latexqual): tone down the dogmatism about l2tabu/nag
2012-10-08 Robin Fairbairns <[email protected]>
* add-general.tex (q-prog-tex): a start on this, too
(q-prog-tex): another paragraph
2012-10-05 Robin Fairbairns <[email protected]>
* add-general.tex (q-whatenv): a start...
2012-10-02 Robin Fairbairns <[email protected]>
* faq-adj-types.tex (q-poster): update nlct link, add comments giving
status of links [CHANGES]
2012-09-18 Robin Fairbairns <[email protected]>
* sanitize-beta.pl (sanitize_line): remove \quotify again (problems
with nested quotes)
* faq-jot-err.tex (q-badhyph): write out effect of \quotify; editorial
* faq.sty: remove \quotify again (see sanitize reversion)
2012-09-17 Robin Fairbairns <[email protected]>
* sanitize-beta.pl (sanitize_line): process \quotify
* texfaq2html-beta: open $archive_list from $home (why did it work?)
* faq.sty: define \quotify (according to hyperversion)
* faq-jot-err.tex (q-badhyph): modernise markup with \cmdinvoke,
\quotify, etc
* faq-how-do-i.tex (q-hyphenaccents): the future (unicode
hyphenation) is here, so cover it (however briefly)
* faq.sty: suppress font list from pdftex (per heiko's tip on texhax)
* faq-jot-err.tex (q-optionclash): correct quote env matching
2012-09-16 Robin Fairbairns <[email protected]>
* faq-jot-err.tex (q-optclash): clarification, in light of several
tex/sx comments on a question there [needs checking!]
2012-09-12 Robin Fairbairns <[email protected]>
* texfaq2html-beta: default_archive now mirror.ctan
* archive.list: add mirror.ctan.org, remove tug
2012-09-07 Robin Fairbairns <[email protected]>
* faq-adj-types.tex (q-multind): editorial
2012-09-03 Robin Fairbairns <[email protected]>
* faq-docs.tex (q-symbols): reorganise, add unimath-symbols
* add-general.tex (q-nolnerr): new, "no line to end"
2012-09-02 Robin Fairbairns <[email protected]>
* faq-wdidt.tex (q-newlineargs): editorial
2012-08-29 Robin Fairbairns <[email protected]>
* add-general.tex (q-view-rot): outline for new answer
2012-08-23 Robin Fairbairns <[email protected]>
* faq-fonts.tex: correct doc link for txfontsb
2012-08-16 Robin Fairbairns <[email protected]>
* dirctan.tex: add newtx, references to libertine support, etc.