1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317
|
=======================================================================
This file lists changes to the LaTeX2e files in reverse chronological order.
It is provided for convenience only. It therefore makes no claims to
completeness or accuracy and it contains some references to files that
are not part of the distribution.
=======================================================================
2010-11-12 Frank Mittelbach <Frank.Mittelbach@latex-project.org>
* varioref.dtx: Avoid even \protected@edef in \vref@pagenum
to pacify french babel (pr/4093)
2010-10-24 Frank Mittelbach <Frank.Mittelbach@latex-project.org>
* multicol.dtx: right-to-left language support added
2010-08-06 Frank Mittelbach <Frank.Mittelbach@latex-project.org>
* multicol.dtx: typo corrections only -- thanks to Laurent Lyaudet
2010-08-04 Frank Mittelbach <Frank.Mittelbach@latex-project.org>
* varioref.dtx: Correct spacing -- same mistake as in \vref (pr/4123)
Defaults for esperanto added
2010-04-06 Will Robertson <will.robertson@latex-project.org>
* xspace.dtx: Improve edge case for xspace (tools/3895)
2010-02-25 Frank Mittelbach <Frank.Mittelbach@latex-project.org>
* ftnright.dtx: Check for split footnotes (pr/4099)
2009-09-13 Frank Mittelbach <Frank.Mittelbach@latex-project.org>
* varioref.dtx: Use \protected@edef to avoid problems
in complicated setups, e.g., microtype (pr/4080)
2009-06-12 Frank Mittelbach <Frank.Mittelbach@latex-project.org>
* varioref.dtx: Incorrect text in \reftextafter (pr/4070)
2008-04-16 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: clarified customization with Babel in use.
2007-09-07 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: Added defaults for islandic
2007-05-26 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: fixed missspellings of \extrasbazil and \extrasportuges
2006-09-19 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx: Make the color of the rule between columns (if
any) a hook called \columnseprulecolor. Defaults to \normalcolor
2006-05-23 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: support for bulgarian added.
2006-05-14 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: support for croatian added.
2006-05-08 Morten Hoegholm <latex-bugs@latex-project.org>
* xspace.dtx: Bug fix for verbatim in output routine.
2006-02-23 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx: Added \@minipagefalse to \end@dblfloat. Otherwise
that switch may end up being true after a figure* has ended,
messing up spacing afterwards randomly.
2006-02-12 Morten Hoegholm <latex-bugs@latex-project.org>
* xspace.dtx: Modified so the \@let@token can be \outer. Avoid
re-doing eTeX setup step multiple times for the original call of
\xspace.
2006-01-09 Morten Hoegholm <latex-bugs@latex-project.org>
* showkeys.dtx: Make \tag* and starred AMS environments work
(pr/3693). Fix varioref support so \vref* also works
(pr/3373). Added \showkeyslabelformat to avoid hard-wiring the
label format.
2005-12-02 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: Bahasa Malaysia defaults added.
2005-11-26 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: Single hyphen rather than -- in range for spanish
an galician.
2005-11-10 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: Added a few more brazil strings
Added a few more finnish strings
Added further galician defaults (and corrected spelling)
Corrections in italian strings
2005-10-04 Morten Hoegholm <latex-bugs@latex-project.org>
* xspace.dtx: Improved expansion method. Added use of higher level
functions for conditional processing. Simplified the code so that
difference between eTeX and non-eTeX is minimal.
2005-09-27 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: corrected typo in documentation
2005-09-14 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: corrected one default for polish
2005-08-23 Morten Hoegholm <latex-bugs@latex-project.org>
* array.dtx: Removed spurious space.
2005-08-06 Morten Hoegholm <latex-bugs@latex-project.org>
* calc.dtx: Improved expansion of arguments, added new
commands \maxof, \minof, \totalheightof and
\settototalheight.
2005-07-26 Morten Hoegholm <latex-bugs@latex-project.org>
* xspace.dtx: Improve test by exiting if \@let@token is a
letter. Add \xspaceremoveexception.
2005-07-24 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: small change in italian.
small fix in german and ngerman (pr/3793)
2005-06-09 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: fixed bug in Dutch localization (pr/3791)
added localization for romanian (pr/3790)
2005-05-07 Morten Hoegholm <latex-bugs@latex-project.org>
* xspace.dtx: Improve handling of active characters.
2005-04-24 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: Ukranian defaults added (by Mykola Lyakhovych)
2005-04-09 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: Basque defaults added (by I\~naki Larra\~naga
Murgoitio)
2004-12-07 Morten Hoegholm <latex-bugs@latex-project.org>
* xspace.dtx: Make extensible (tools/3712), fix active
characters (tools/3747) and update documentation.
2004-10-30 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: Added missing defaults for italian (by Lapo Mori)
2004-07-03 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx: fixing errors that happen only if multicol is
compiled with a special combination of docstrip modules.
2004-05-08 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: Use \@nil for testing in \is@pos@num
2004-02-27 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: fixed a bug in magyar option
2004-02-15 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx: Avoid self-referencing definition of
\@footnotetext (pr/3618)
2003-12-29 Frank Mittelbach <latex-bugs@latex-project.org>
* fileerr.dtx: attempt to set exit code when reading x.tex (pr/3538)
2003-12-19 David Carlisle <latex-bugs@latex-project.org>
* array.dtx: add \arraybackslash
2003-10-05 Frank Mittelbach <latex-bugs@latex-project.org>
* bm.dtx: AMS version of \sqrt not working
2003-09-01 Frank Mittelbach <latex-bugs@latex-project.org>
* bm.dtx: Forgotten to check for \hskip (pr/3572)
2003-08-22 Rainer Schoepf <latex-bugs@latex-project.org>
* verbatim.dtx: Added \@noligs again, as I can be sure that
it is defined in the LaTeX kernel, so that other packages
can rely on \@noligs always being used.
2003-04-30 Frank Mittelbach <latex-bugs@latex-project.org>
* trace.dtx: added option full to trace everything; set a few more
switches back to no-tracing on exit; make \tracingall trace full
even when full is not specified
2003-04-17 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx: Catch problem with \columnbreak
in last line (found by Ulrike Fischer)
2003-04-08 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx: Collect one addition line per column to account
for vanishing space at column breaks
2003-03-29 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx (subsection{Options}):
Afrikaans option contributed by Danie Els <dnjels@sun.ac.za>.
2003-03-18 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx: changed the tracing output a bit
2003-03-15 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx:
Further corrections to the micro-spacing around the boxes produced
by multicols, so that grid typesetting (given right values for
other parameters) becomes a possibility.
Also added option "grid" which currently does nothing except
producing a warning if the grid might got lost.
2003-02-17 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx:
Add a kern to cancel potential depth of previous line at the
beginning of a multicols and also suppsed \lineskip
\multicolovershoot set back to 0pt as a default 2pt was simply
wrong in some applications (pr/3465)
2003-01-10 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: changed error message when possible loop was
detected.
* somedefs.dtx: added version number to \ProvidesPackage line
(pr/3490)
* varioref.dtx: typo added a blank line into one macro
2003-01-08 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: Use \vref@label instead of \label to avoid
problems with amsmath. (pr/3489)
2002-11-22 Frank Mittelbach <latex-bugs@latex-project.org>
* bm.dtx: Get math alphabets right (pr/3476)
2002-11-06 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: Changed default for \reftextbefore for options
english and american.
This is an incompatible change, but the original was bad English!
Changed default for \reftext...range for dutch as well.
2002-06-18 Frank Mittelbach <latex-bugs@latex-project.org>
* fileerr.dtx: added space after ! better to match TeX's error
style (pr/3414)
* varioref.dtx: Use \vpageref inside \ref not \@vpageref
to get spacing correct (pr/3403)
2002-06-14 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: added \labelformat to support references that
automatically add "text" around the referenced number.
added \Ref and \Vref to generated references at the beinning of a
sentence (might be needed if \reformat is used)
added \vpagerefnum to support referencing the "number" within
commands like \refpageafter, e.g.
\renewcommand\reftextfaceafter {on page~\thevpagerefnum}
texts for "slovak" and "slovene" options added
2001-09-04 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: correct typo in name \vref -> \vr@f
2001-07-24 Frank Mittelbach <latex-bugs@latex-project.org>
* trace.dtx: use ltxdoc not ltugboat class for docu
2001-05-28 Chris Rowley <latex-bugs@latex-project.org>
* dcolumn.dtx:
Documentation of centring improved (pr/3315)
2001-04-16 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: changed my mind and also added \vpagerefrange*
* trace.dtx: added package to tools distribution
2001-04-12 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx (subsection{Defining the main macros}): Added
\vref* and \vpageref* which do not add a space in front of the
generated text (ever) so that they can be used in situations like
(\vref{foo} ...) without added a space after the open parenthesis.
2001-01-12 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: Updated nynorsk defaults
2000-12-30 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: Updated Danish defaults
2000-10-23 Chris Rowley <latex-bugs@latex-project.org>
* longtable.dtx:
Added a \noexpand (as in array.sty) for mathtext.sty
2000-09-25 Johannes Braams <latex-bugs@latex-project.org>
* layout.dtx: Added the option italian as suggested by Claudio
Beccari, back in august 1998...
2000-09-21 Johannes Braams <latex-bugs@latex-project.org>
* layout.dtx: Added the option german as proposed by Karsten
Tinnefeld <karsten@tinnefeld.com> in PR 3259
2000-08-23 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: Updated defaults for catalan
2000-08-21 Chris Rowley <latex-bugs@latex-project.org>
* verbatim.dtx:
2000-07-10 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx: fixed color problem with rules between columns
(their color did depend on the color of the text at the break)
2000-07-09 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: Don't output space if optional argument
to \vpageref is empty (pr/3230)
2000-06-11 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx (subsection{The output routines}]): when
doing boxed mode do not restrict height of columns to \@colroom
(pr/3212)
2000-05-05 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx (subsection{Starting and ): Detect and fix
problem if a multicols ends at the top of a page
2000-04-16 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: added defaults for Czech
2000-04-15 Frank Mittelbach <latex-bugs@latex-project.org>
* ftnright.dtx: Don't use math mode for footnote symbol
(pr/3172)
2000-01-11 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: added naustrian and ngerman options
2000-01-07 Rainer Schoepf <latex-bugs@latex-project.org>
* verbatim.dtx: Disable hyphenation even if the font allows it.
1999-12-14 Rainer Schoepf <latex-bugs@latex-project.org>
1999-12-02 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: even more portugese defaults
1999-11-25 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: added portuguese defaults
1999-10-21 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx: allow multi-paragraph footnotes again. This functionality
was lost when the footnotes got reimplemented some time ago. (Problem
reported by Niels Ferguson)
1999-09-03 Frank Mittelbach <latex-bugs@latex-project.org>
* DEFAULT.hea: updated for LPPL 1.2
* DEFAULT.pre: updated for LPPL 1.2
1999-07-19 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx:
Added some additional tracing code.
When balancing check that last column doesn't contain a forced
page break; if it does reject the solution.
1999-07-09 Frank Mittelbach <latex-bugs@latex-project.org>
* updated headers to reflect LPPL 1.1
1999-06-18 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx: added documentation for \columnsep
1999-06-12 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx: minor documentation updates
1999-05-27 Frank Mittelbach <latex-bugs@latex-project.org>
* tools.ins: added colbreak guard for multicol.sty
1999-05-26 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx (subsection{Manual column breaking}):
Added a \columnbreak command to allow manual column breaks.
1999-05-01 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx: reworded license text slightly
1999-03-22 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx: re-add \cs{mark} command which was commented out
by mistake at some point in 1998 (pr/2978)
1999-03-05 David Carlisle <latex-bugs@latex-project.org>
* enumerate.dtx: extension hook tools/2916}
* verbatim.dtx: Add \begingroup/\endgroup to definition of
\verbatim(*)/\endverbatim(*) so that they can safely be
used without \begin/\end. Suggested by Donald Arseneau.
1999-03-04 Rainer Schoepf <latex-bugs@latex-project.org>
* manifest.txt: Corrected typo.
1999-03-03 Rainer Schoepf <latex-bugs@latex-project.org>
* tools.ins: New copyright info and preamble.
1999-02-16 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx: fixed reference to ltx3info.tex in license
1999-02-13 David Carlisle <latex-bugs@latex-project.org>
* readme.txt: lppl
1999-02-10 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx: changed license text
1998-12-31 Frank Mittelbach <latex-bugs@latex-project.org>
* array.dtx: Added \noexpand in front of \ialign
to guard against interesting :-) changes to \halign done to support
text glyphs in math
1998-12-03 Johannes Braams <latex-bugs@latex-project.org>
* ftnright.dtx: Made \@makecol colorsafe by adding
\color@begingroup, \color@endgroup and \normalcolor.
1998-11-27 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: taken out fix for (pr/1866) as it produce undesired
results (see comments in doc of \vref) (pr/2909)
* varioref.dtx: Added two new user commands \vrefrange and
\vpagerefrange to support referencing a range of labels.
Also added customising commands \reftextlabelrange and
\reftextpagerange to support the above commands.
Added draft and final option (draft will turn errors into warnings).
Added austrian defaults (same a german).
Added greek defaults.
Removed incorrect warning for italian.
Added hungarian defaults.
Added russian defaults.
Added utility command \vrefpagenum and used it to shorten code
this will also fix a problem that in certain circumstances varioref
was not warning that another run was needed.
1998-09-16 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx: test if document ends in middle of multicols
and if so issue an error message instead of dying with an OR loop
pr/2873
1998-08-17 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx: new logic for dealing with \@footnotetext macro:
instead of redefining its definition completely, thereby possibly
overwriting a class change, we locally set \columnwidth to \textwidth
and then call the original definition. this will also solves a problem
with the situation of a footnote inside multicols inside a minipage
would vanish.
* varioref.dtx: added defaults for greek contributed by
Apostolos Syropoulos <apostolo@obelix.ee.duth.gr>
1998-06-22 Frank Mittelbach <latex-bugs@latex-project.org>
* layout.dtx: renamed \bs to \LayOutbs to avoid possible conflicts
with other packages using this command. Originally the package
redefined \bs in case it already had a definition.
Also rename \type to \LayOuttype for the same reason.
Added \@doendpe to definition of
\endverbatim(*) (pr/3234)
1998-06-17 Chris Rowley <latex-bugs@latex-project.org>
* calc.dtx:
Added \widthof etc
Made \ratio and \real robust
Enhanced documentation
2004-02-27 <david.carlisle@latex-project.org>
* bm.sty: fix for "new" AMS math accent code. tools/3256
2004-02-01 <david.carlisle@latex-project.org>
* longtable.dtx: \nobreak after table head, for tools/3484
1998-05-13 David Carlisle <latex-bugs@latex-project.org>
* tabularx.dtx: Use \setlength so calc syntax may be used in
the width argument. tools/2793.
* longtable.dtx: Use \setlength so calc syntax may be used in p
arguments. tools/2793.
1998-05-13 Frank Mittelbach <latex-bugs@latex-project.org>
* array.dtx: also allow calc syntax in first arg of tabular*
(pr/2793)
1998-05-12 Frank Mittelbach <latex-bugs@latex-project.org>
* array.dtx: set the \hsize for p columns (and others) via
\setlength so that calc syntax can be applied (pr/2793)
1998-05-10 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: support for amsmath displays (pr2175)
Actually this probably should be fixed in amsmath instead.
1998-04-25 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: added galician defaults contributed by Matthias
Moebius.
1998-03-09 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: replace ~ by \nobreak\space so that \vref obeys
setting of \frenchspacing (pr/1866)
1998-01-29 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx: Removed group around contents of optional argument
to \begin{multicols}{2}[...] so that the use of \section within
this argument works better.
* array.dtx: made \multicolumn long to match kernel change for
pr/2180 (forgotten at that time)
1998-01-19 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx (subsection{Not balancing the columns}):
added support for a version of multicols (star form) that doesn't
balance the columns on the last page.
Fixed a bit of the documentation (so that a toc is possible).
1997-12-19 Frank Mittelbach <latex-bugs@latex-project.org>
* array.dtx: moving a docstrip guard. this doesn't change
the style but prevents some code being added at the end of
the driver file
1997-12-14 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx: redefine \@footnotetext only within environment
not globally any longer. pr/2689 + some docu updates
* fileerr.dtx: fixed file date. pr/2689
1997-12-06 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: added default for polish language.
1997-11-22 David Carlisle <latex-bugs@latex-project.org>
* bm.dtx: Make \bm{\hat{A}} work like \bm{\hat A} (from c.t.t).
1997-11-18 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx: now finally set \columnwidth to width of column
pr2664
1997-11-16 David Carlisle <latex-bugs@latex-project.org>
* bm.dtx: support mathcode hex 8000 (like prime) properly.
Support null delimiter \left. constructions.
Support breqn package.
1997-11-11 David Carlisle <latex-bugs@latex-project.org>
* calc.dtx: Fix error message inserted at the weekend.
1997-11-08 David Carlisle <latex-bugs@latex-project.org>
* manifest.txt: add calc.
* Makefile (FILES): add calc
* tools.ins: add calc.
* calc.dtx: Contributed to the distribution by
Kresten Krab Thorup and Frank Jensen. One minor change, use
\PackageError rather than the primitive \errormessge.
1997-10-16 David Carlisle <latex-bugs@latex-project.org>
* longtable.dtx: avoid using % in aux file. tools/2631
1997-10-13 David Carlisle <latex-bugs@latex-project.org>
* xspace.dtx: test for space token added for tools/2632
1997-10-09 David Carlisle <latex-bugs@latex-project.org>
* bm.dtx: Add extra braces around group code so \bm{\frac..} does
the right thing. (Spotted on c.t.t)
1997-10-06 David Carlisle <latex-bugs@latex-project.org>
* dcolumn.dtx: Document use of math mode. tools/2616.
1997-09-18 David Carlisle <latex-bugs@latex-project.org>
* tabularx.dtx: Fix \write catch for tools/2607.
(Fix page 401 of TeXBook at same time...)
1997-07-09 Rainer Schoepf <latex-bugs@latex-project.org>
* verbatim.dtx: Documentation fixes by Andreas Schwab
<schwab@issan.informatik.uni-dortmund.de>.
* tabularx.dtx: Documentation fixes by Andreas Schwab
<schwab@issan.informatik.uni-dortmund.de>.
* showkeys.dtx: Documentation fixes by Andreas Schwab
<schwab@issan.informatik.uni-dortmund.de>.
* multicol.dtx: Documentation fixes by Andreas Schwab
<schwab@issan.informatik.uni-dortmund.de>.
* longtable.dtx: Documentation fixes by Andreas Schwab
<schwab@issan.informatik.uni-dortmund.de>.
* layout.dtx: Documentation fixes by Andreas Schwab
<schwab@issan.informatik.uni-dortmund.de>.
* delarray.dtx: Documentation fixes by Andreas Schwab
<schwab@issan.informatik.uni-dortmund.de>.
* array.dtx: Documentation fixes by Andreas Schwab
<schwab@issan.informatik.uni-dortmund.de>.
1997-07-07 Frank Mittelbach <latex-bugs@latex-project.org>
* tools.ins: added q.tex and r.tex files so that "run" and
"quit" mode is now also supported.
* fileerr.dtx: added q.tex and r.tex files so that "run" and
"quit" mode is now also supported.
1997-06-28 David Carlisle <latex-bugs@latex-project.org>
* longtable.dtx: New email address for David K.
1997-06-13 David Carlisle <latex-bugs@latex-project.org>
* showkeys.dtx: support cite package for tools/2490
1997-06-12 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx: added support for catalan
1997-06-05 Rainer Schoepf <latex-bugs@latex-project.org>
* multicol.dtx: Applied improvement of documentation, kindly done
by Robin Fairbairns.
1997-05-13 Rainer Schoepf <latex-bugs@latex-project.org>
* fontsmpl.dtx: Replaced \@changed@x@err by
\TextSymbolUnavailable, according to the change in ltoutenc.dtx.
1997-04-30 Rainer Schoepf <latex-bugs@latex-project.org>
* verbatim.dtx (\verbatiminput): Added code to check for
existence of file to be input and print error message if not.
1997-04-14 David Carlisle <latex-bugs@latex-project.org>
* tools.ins: add bm
* bm.dtx: Add to tools bundle.
Add \boldsymbol as alias for \bm
1997-02-26 David Carlisle <latex-bugs@latex-project.org>
* tabularx.dtx: Spurious brace removed. Jean-Pierre Drucbert.
1997-02-20 David Carlisle <latex-bugs@latex-project.org>
* tabularx.dtx: improve behaviour in case table too wide.
1996-12-06 David Carlisle <latex-bugs@latex-project.org>
* xspace.dtx: alltt support. tools/2322.
1996-11-21 David Carlisle <latex-bugs@latex-project.org>
* longtable.dtx: new page break control.
1996-11-02 David Carlisle <latex-bugs@latex-project.org>
* readme.txt: Add old docstrip note.
1996-11-01 David Carlisle <latex-bugs@latex-project.org>
* showkeys.dtx: colour option. tools/2297.
* tools.ins: new style.
1996-10-24 David Carlisle <latex-bugs@latex-project.org>
* xspace.dtx: Fix guards for driver document. tools/2206
1996-09-25 Rainer Schoepf <latex-bugs@latex-project.org>
* verbatim.dtx (\verbatiminput): Added \@addtofilelist and
\ProvidesFile so that the name of the file read in appears in the
\listfiles output.
1996-09-23 David Carlisle <latex-bugs@latex-project.org>
* dcolumn.dtx: Fix case where no decimal point is used
in the `new' case of a the third argument being n.m.
Fri Sep 6 15:24:17 1996 David Carlisle <carlisle@cs.man.ac.uk>
* showkeys.dtx: more changes following from /2252.
Fri Aug 30 18:09:48 1996 David Carlisle <carlisle@cs.man.ac.uk>
* showkeys.dtx: more fudges for AMS tools/2252, and extra
group from Donald A. tools/2147
Wed Jul 10 11:15:30 1996 David Carlisle <carlisle@cs.man.ac.uk>
* showkeys.dtx: Missing percent added for tools/2215
1996-06-14 David Carlisle <latex-bugs@latex-project.org>
* array.dtx: change \kern\z@ to \hskip1sp for latex/2160
A few long lines wrapped.
1996-06-04 Rainer Schoepf <latex-bugs@latex-project.org>
* verbatim.dtx: \verbatim@noligs@list now processed after
\dospecials (PR 2138).
1996-05-25 Frank Mittelbach <latex-bugs@latex-project.org>
* array.dtx (subsection{Support for
\texttt{\textbackslash firsthline} and ):
Complete reimplementation after Mark Wooding pointed out that
they were everything else than correct --- hope i got it
right this time :-)
1996-05-24 David Carlisle <latex-bugs@latex-project.org>
* longtable.dtx: Add a warning to re run LaTeX \AtEndDocument if
any longtable has failed to align on this run.
1996-05-17 David Carlisle <latex-bugs@latex-project.org>
* xspace.dtx: Add / to list of punctuation characters.
* showkeys.dtx: use \protected@edef rather than \def
so that the expansion of any macros is printed. tools/2147
1996-05-07 David Carlisle <latex-bugs@latex-project.org>
* longtable.dtx: add \hfil to match array package change.
* array.dtx: add \hfil to \@endpbox for tools/2120 (and to match
kernel version).
1996-04-22 David Carlisle <latex-bugs@latex-project.org>
* array.dtx: Extra \kern\z@ for empty l colummns. latex/2122
1996-04-16 David Carlisle <latex-bugs@latex-project.org>
* longtable.dtx: Version 4.02 using new algorithm of David Kastrup
to align tables without \setlongtables command.
1996-02-28 David Carlisle <latex-bugs@latex-project.org>
* dcolumn.dtx: New feature (tools/2093) D{.}{.}{3.2} specifies a
column of figures that should be centred, assuming 3 places to
the left of the decimal point and 2 to the right.
1996-02-01 David Carlisle <latex-bugs@latex-project.org>
* longtable.dtx: allow \multicolumn and \hline to work inside
tabulars inside longtables. tools/2068
1996-01-13 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx:
Explain why with \OnlyDescription there will be an unresolved
reference pr/2047.
1996-01-03 David Carlisle <latex-bugs@latex-project.org>
* longtable.dtx: (Martin Schr"oder) remove ! which causes a
makeindex error in \changes entry. tools/2035
1996-01-01 Frank Mittelbach <latex-bugs@latex-project.org>
* ftnright.dtx:
Finally got around to take out ltxdoc and use article for
documentation. pr/536
Also cleaned up use of ProvidesPackage.
1995-12-28 Frank Mittelbach <latex-bugs@latex-project.org>
* array.dtx:
Fixed section headings so that a toc is possible. pr/2033.
* multicol.dtx:
Fixed index entries. pr/2036
1995-12-12 David Carlisle <latex-bugs@latex-project.org>
* tools.dst: Add trap for old docstrip.
1995-11-23 David Carlisle <latex-bugs@latex-project.org>
* theorem.dtx: Fix \@newctr usage (Ulrik Vieth)
* layout.dtx: Documentation fixes (J"org Knappen).
* indentfirst.dtx: (Ulrik Vieth) Fix \GetFileInfo usage.
In the documentation.
1995-11-22 David Carlisle <latex-bugs@latex-project.org>
* tools.dst: New style concurrent generation.
* showkeys.dtx: Fix \harvarditem: add SK code after the implicit
\item (as for \cite) not before.
1995-11-19 Frank Mittelbach <latex-bugs@latex-project.org>
* theorem.dtx:
Ensure that there is an error message if one of the counters
in newtheorem are undefined pr/1861.
* array.dtx (subsection{Getting the spacing around rules right}):
ensure that the space between \hline\hline is visually \doublerulesep
and does not depend of the rulewidth (as it does with standard latex)
pr/1945
Added some documentation about rule handling concepts.
1995-11-09 David Carlisle <latex-bugs@latex-project.org>
* longtable.dtx: (Anil K Goel) Really measure the size of the
first row of the table not `assume' the size from the array
strut. (Avoids really bad first page break with two headings)
* showkeys.dtx: Take more care over redefining \protect commands
1995-11-02 David Carlisle <latex-bugs@latex-project.org>
* array.dtx: Minor doc changes, no more ooverfull hboxes...
1995-10-30 Johannes Braams <latex-bugs@latex-project.org>
* layout.dtx : Added command \layout* wbhich recomputes the values
it needs before making the picture of the layout. (PR 1465)
1995-10-30 David Carlisle <latex-bugs@latex-project.org>
* showkeys.dtx: Fix for tools/1744 (notref/varioref case)
Add final and draft options
Fix inner vmode case which could cause extra white space
to be added.
1995-10-29 Johannes Braams <latex-bugs@latex-project.org>
* layout.dtx (section{The implementation}): Added the options
spanish, braziolian and portugues, as provided by
Ausberto S. Castro V. <ascv@inf.ufrgs.br> (PR 1837)
1995-10-27 David Carlisle <latex-bugs@latex-project.org>
* afterpage.dtx: tools/1579/1880/1884
1995-10-19 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx:
Added defaults for Italian pr/1888
* multicol.dtx:
Added \@largefloatcheck so that floats being too large
will produce a warning. pr/1890
1995-09-22 Rainer Schoepf <latex-bugs@latex-project.org>
* verbatim.dtx: Corrected vertical spacing if verbatim is nested
in quote (and other) environment. This error was introduced with
version v1.3c (1990/02/26). Clarified documentation on how to
define new verbatim-like environments.
1995-08-06 Frank Mittelbach <latex-bugs@latex-project.org>
* tools.dst:
Updated copying conditions so that it is allowed to distribute
unpacked files together with the sources.
1995-08-04 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx:
Changed class used for documentation from
article to ltxdoc. pr/1788
1995-06-25 Johannes Braams <latex-bugs@latex-project.org>
* layout.dtx : The june 1995 release of LaTeX no longer needs two
hash marks when defining a newcommand inside the argument of
\DeclareOption.
1995-06-15 David Carlisle <latex-bugs@latex-project.org>
* longtable.dtx: replace ## by # in \DeclareOption, latex/1557
1995-05-25 David Carlisle <latex-bugs@latex-project.org>
* longtable.dtx: Modify Caption handling again.
1995-05-16 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx:
Updated \DeclareOption declarations to reflect ##1 -> #1 change. pr/1557
1995-05-07 Frank Mittelbach <latex-bugs@latex-project.org>
* fontsmpl.dtx:
Removed \pagestyle{empty} so that all pages produced by fontsmpl.tex
are numbered. pr/1559
1995-05-03 Rainer Schoepf <latex-bugs@latex-project.org>
* verbatim.dtx: Removed extra backslash in argument to \cs.
1995-05-02 David Carlisle <latex-bugs@latex-project.org>
* longtable.dtx: Explitly reset page height for tools/1584.
Modify caption handling.
1995-04-26 Rainer Schoepf <latex-bugs@latex-project.org>
* verbatim.dtx: Removed \fileversion and \filedate.
1995-04-25 David Carlisle <latex-bugs@latex-project.org>
* longtable.dtx: Modify brace hacks cf tools/1571
Allow 1100 longtables in a single document---A bug reported on a
`real document' by Mike Van Geest!
* showkeys.dtx: Fix inner horz mode case.
Add option handling: notref and notcite to stop the
redefinitions of those commands.
1995-04-23 Frank Mittelbach <latex-bugs@latex-project.org>
* array.dtx (section{The line separator \\}):
Fixed a serious bug that was present right from the beginning:
in some cases the last column of an array line could get an extra
math ord messing up the spacing. pr/1571.
(subsection{Bugs and Features}):
Added comment about the fact that a column (execpt for the first) refers to
the column specifier plus intercolumn material to the *right*.
Therefore \multicolumn{2}{|c|} is normally incorrect. pr/1443
1995-04-08 Johannes Braams <latex-bugs@latex-project.org>
* layout.dtx : Added the options 'integers' and 'reals'. The
default is the option 'integers'; this results in the 'old'
behaviour, where the values of parameters are presented
truncated. Using the option 'reals' will switch to presenting the
real val;ues of the parameters. This also affects the definition
of \Show and \Type.
1995-04-06 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx (subsection{Options}):
Added norsk and nynorsk strings.
Modified Warning message about undefined Option texts.
1995-04-03 Johannes Braams <latex-bugs@latex-project.org>
* layout.dtx : Simplified the definition of \Show and \Type, the
effect is that now the complete value is shown (PR #1520)
1995-03-20 David Carlisle <latex-bugs@latex-project.org>
* tabularx.dtx: Allow \tabularx to be used inside
\newenvironment definitions
1995-03-17 David Carlisle <latex-bugs@latex-project.org>
* showkeys.dtx: Fix for tools/1434 (showkeys affecting footnote
placement)
1995-03-16 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx:
Fixed colour support (thanks to David)
Clarified copyright notice.
Updated driver file.
1995-03-16 David Carlisle <latex-bugs@latex-project.org>
* showkeys.dtx: Fix for tools/1181 (Bad placement in with \item
and \bibitem) and tools/1496 (Working with new ams*)
1995-03-14 Johannes Braams <latex-bugs@latex-project.org>
* layout.dtx : Added the options french and francais (thanks to
Eric Picheral <Eric.Picheral@univ-rennes1.fr> who provided the
translations); introduced \notshown
1995-01-10 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx:
Added swedish strings.
1994-12-08 David Carlisle <latex-bugs@latex-project.org>
* longtable.dtx: Add \tabularnewline.
* array.dtx: Add \tabularnewline.
1994-11-22 David Carlisle <latex-bugs@latex-project.org>
* tools.dst: Avoid generating error messages on `.tex'.
1994-11-15 David Carlisle <latex-bugs@latex-project.org>
* xspace.dtx: Make robust, add !
1994-10-29 Johannes Braams <latex-bugs@latex-project.org>
* layout.dtx : Some of the dutch words should really be one word
instead of two (PR #1078)
1994-10-25 Rainer Schoepf <latex-bugs@latex-project.org>
* verbatim.dtx: Changed code for handling verbatim as first thing
after an \item command. (This change had already been done in the
LaTeX2e kernel.)
* verbatim.dtx: Removed extra \typeout lines.
1994-10-15 Frank Mittelbach <latex-bugs@latex-project.org>
* array.dtx (subsection{Support for ...):
Added \firsthline and \lasthline from Companion.
1994-10-03 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx:
Correct change from 26 of August. Leave old code only add the new
one.
1994-09-27 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx:
Added strings for breton language, this also means adding a new option.
1994-09-25 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx:
Added danish strings.
1994-09-23 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx (subsection{Options}):
Added finnish strings.
1994-09-09 David Carlisle <latex-bugs@latex-project.org>
* showkeys.dtx: add \citefullauthor for (forthcoming) natbib.
1994-09-08 Johannes Braams <latex-bugs@latex-project.org>
* layout.dtx: Stored texts in control sequences to allow the use
of other languages. Added the options english (default) and
dutch.
* tools.dst: Added the layout package
1994-09-07 David Carlisle <latex-bugs@latex-project.org>
* showkeys.dtx: Version 3, supports varioref ref styles, and
natbib and harvard citation styles.
Also modify `internal vertical mode' case, to cope with modified
\caption behaviour in the LaTeX2e classes.
Modify \GetFileInfo usage, as suggested by Patrick Daly.
1994-08-26 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx (subsection{The output routines}]):
Check explicitly for void boxes before assigning the current column
width to their width, because void boxes will not change.
Extract the kept marks before adding a penalty -10000 to the output box
when balancing, otherwise no marks will be found. (This bug was
introduced recently.
1994-08-08 Frank Mittelbach <latex-bugs@latex-project.org>
* tools.dst:
Added a better informational message about the problems
that can arise when LaTeX tries to generate the file `.tex'
1994-07-24 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx (subsection{Options}):
Added dutch defaults as suggested by Frank Poppe.
Explicitly expand label argument before passing it to \label, so that
varioref will work with babel.
Correct misspelling in spanish option.
1994-07-14 Johannes Braams <latex-bugs@latex-project.org>
* layout.dtx: Moved the identification code to the front of the
file.
Needed to interchange to calls to \ttfamily and \footnotsize as
\footnotesize calls \normalfont in compatibility mode.
Added a check for negative arrowlength to \InsideHArrow
1994-06-30 David Carlisle <latex-bugs@latex-project.org>
* longtable.dtx: Obey a \nofiles declaration. Remove special
handling of letter class, not needed for the latex2e version of
letter.
* showkeys.dtx: Correct \ProvidesPackage usage (previously had two
\providesPackage commands),
1994-06-21 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx (subsection{Options}):
Added french defaults as suggested by Daniel Flippo.
1994-06-20 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx:
Correction was buggy, brace placed incorrectly.
1994-06-11 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx:
\vpageref[above][one ]{one} didn't work because first
optional argument wasn't passed (found by Patrick Daly).
1994-06-07 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx (section{New macros and hacks for version 1.2}]):
Updated float commands to contain \color@endgroup etc. so
that they work together with the color.sty package.
(Found by SPQR)
1994-06-01 Frank Mittelbach <latex-bugs@latex-project.org>
* array.dtx:
Added \null to the end of \multicolumn. This fixes
a bug that was long fixed in the original but never made it
into array.sty.
Use PackageError/Warning interface.
1994-06-01 David Carlisle <latex-bugs@latex-project.org>
* somedefs.dtx: Use new style error commands.
1994-05-28 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx:
Do not alloc \col@number any longer.
Use Standard Warning/info messages.
* fileerr.dtx:
Added file to the collection.
1994-05-28 David Carlisle <latex-bugs@latex-project.org>
* manifest.txt: First draft.
* readme.txt: First draft.
1994-05-27 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx:
Warning about looping pages displayed in wrong order
(found by Wolfgang Christen).
(subsection{Defining the main macros}):
Added help message for loop error.
Use PackageError rather than \errmessage.
Use DeclareRobustCommand.
Added \NeedTeXFormat.
1994-05-26 Frank Mittelbach <latex-bugs@latex-project.org>
* multicol.dtx (subsection{Starting and ):
fixed bug with "premulticols" not being a register
(tried to \the a string in tracing mode)
1994-05-18 Frank Mittelbach <latex-bugs@latex-project.org>
* varioref.dtx:
Added defaults for brazil.
1994-05-16 Frank Mittelbach <latex-bugs@latex-project.org>
* array.dtx (section{The macros \texttt{\protect):
Use \@finalstrut in \@endpbox
1994-03-23 Braams J.L. <latex-bugs@latex-project.org>
* layout.dtx : repaired bug in twosided mode.
Changed vertical positioning of the arrows identifying
\amrginparsep and \marginparwidth
Repaired bug in the preparation of the table of dimensions.
Produce two pages in twoside mode
Removed use of \wlog
1994-03-14 Frank Mittelbach <latex-bugs@latex-project.org>
* array.dtx:
Removed identification \typeout's.
Removed the check for the old version of the \@tfor macro.
1994-02-28 Frank Mittelbach <latex-bugs@latex-project.org>
* array.dtx:
Moved the driver code in front so that the documentation can be
processed by simply running the file through LaTeX2e.
* ftnright.dtx:
Moved the driver code in front so that the documentation can be
processed by simply running the file through LaTeX2e.
* multicol.dtx:
Balance code rewritten; many changes to documentation etc.
Changed driver code slightly.
Moved the driver code in front so that the documentation can be
processed by simply running the file through LaTeX2e.
* theorem.dtx:
Changed driver code slightly.
Moved the driver code in front so that the documentation can be
processed by simply running the file through LaTeX2e.
|