1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387
|
LyX file-format changes
-----------------------
Please keep the entries informative enough, i.e. try to indicate what
changes happened in particular if possible. A good example would be
2010-01-10 entry.
Please also indicate the revision at which your change was committed.
This will help later people understand what you did, especially as
adjustments are made to tex2lyx and bugs are fixed in lyx2lyx.
-----------------------
2011-02-15 Richard Heck <rgheck@comcast.net>
* Format incremented to 413 (r37682)
New buffer param \html_css_as_file to control whether
CSS is output to header to to style file
2011-02-03 Edwin Leuven <e.leuven@gmail.com>
* Format incremented to 412 (r37471)
Support tabular* : add tabularwidth parameter to
tabular features
2011-02-03 Jürgen Spitzmüller <spitz@lyx.org>
* Format incremented to 411
New buffer param \language_package to allow per-document
language package selection (bug 2909).
2010-11-26 Richard Heck <rgheck@comcast.net>
* Format incremented to 410 (r36520)
Rename "\\begin_layout Labeling" to "\\begin_layout List"
in the KOMA (scr*) classes.
2010-11-26 Jürgen Spitzmüller <spitz@lyx.org>
* Format incremented to 409 (r36500)
Rename buffer param \use_xetex to \use_non_tex_fonts.
2010-11-21 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* Format incremented to 408 (r36424)
New inset for sub/superscripts:
script superscript
script subscript
2010-11-07 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 407 (r36182)
Support for vertical offset of multirow cells.
New tag "mroffset" for multirow cells with an offset.
2010-11-06 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* Format incremented to 406 (r36163)
Proper ERT behaviour for normal layouts. Paragraph breaks
generate single \n in latex output when ParbreakIsNewline
is true.
2010-10-23 Vincent van Ravesteijn <vfr@lyx.org>
* Format incremented to 405 (r36134)
Author hash numbers.
The authors that are used in change tracking are
now identified in the file by a number that represents
the hash value of the name and email. In this way
collaboration using version control leads to way less
merge conflicts.
2010-10-13 Richard Heck <rgheck@comcast.net>
* Format incremented to 404 (r35623)
Support for refstyle package.
Changed the LaTeXCommand for InsetRef from "prettyref"
to "formatted", where "formatted" is now interprted
differently, depending upon whether the new buffer param
use_refstyle is true or false.
2010-10-12 Richard Heck <rgheck@comcast.net>
* Format incremented to 403 (r35608)
Renaming of flex insets.
Changed
\begin_inset Flex TAG:Style
to
\begin_inset Flex Style
where TAG is Custom, CharStyle, or Element
2010-10-11 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 402 (r35590)
No new or removed parameter, used to insert a
clear(double)page before BibTeX inset.
2010-09-19 Ronen Abravanel <ronena@gmail.com>
* Format incremented to 401 (r35455)
Support for Feynman diagrams
New math command \Diagram
2010-09-07 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 400 (r35299)
Support for the LaTeX-command \rule.
New CommandInset "line".
2010-08-31 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 399 (r35241)
Support for the LaTeX-package mathdots.
New parameter \use_mathdots.
2010-07-17 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 398 (r34941)
Support \mathscr.
No new parameter but the mathrsfs package will be loaded.
2010-07-16 Richard Heck <rgheck@comcast.net>
* Format incremented to 397 (r34920)
Remove Nameref support
2010-07-13 Richard Heck <rgheck@comcast.net>
* Format incremented to 396 (r34884)
nameref support
new commands nameref and Nameref for InsetRef
2010-07-13 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 395 (r34883)
Support for ISO C-series paper format.
New parameter \papersize cxpaper with (x = 0 - 6).
2010-07-03 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 394 (r34748)
Support for makebox.
New box parameter \use_makebox.
2010-06-07 Richard Heck <rgheck@comcast.net>
* Format incremented to 393 (r34619)
Renaming in LyX format: \begin_inset OptArg becomes
\begin_inset Argument.
2010-06-07 Richard Heck <rgheck@comcast.net>
* Format incremented to 392 (r34615)
Dummy format change permitting Beamer files to be converted to
a new, more useful format.
2010-06-05 Edwin Leuven <e.leuven@uva.nl>
* Format incremented to 391 (r34598)
Added support for decimal alignment in tables.
2010-05-25 Pavel Sanda <sanda@lyx.org>
* Format incremented to 390: support for ouput sync (forward/reverse)
search. New boolean \forward_search and string \forward_macro.
2010-05-24 Richard Heck <rgheck@comcast.net>
* Format incremented to 389: remove quotes from html_latex_* params.
2010-05-18 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 388: support for page sizes A0-3, A6, B0-3, B6
and JIS B0-6
2010-04-21 Richard heck <rgheck@comcast.net>
* Format incremented to 387: New options for XHTML math output.
New BufferParams: html_math_img_scale, html_latex_start,
html_latex_end.
2010-04-17 Richard heck <rgheck@comcast.net>
* Format incremented to 386: LyX version for InsetInfo:
new parameters: type "lyxinfo", arg "version".
2010-04-08 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 385: support to change the background color
for shaded boxes: new buffer parameter \boxbgcolor
2010-04-03 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 384: support to specify a document-wide
font color: new buffer parameter \fontcolor
2010-03-31 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 383: support for Turkmen
2010-03-31 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 382: support to change the font color
for greyed-out notes: new buffer parameter \notefontcolor
2010-03-28: Vincent van Ravesteijn <vfr@lyx.org>
* Format incremented to 381: support for new parameters
for \xymatrix: \xymatrix@!0, \xymatrix!R and \xymatrix!C.
2010-03-28: Vincent van Ravesteijn <vfr@lyx.org>
* Format incremented to 380: introduction of InsetPreview.
2010-03-18: Richard Heck <rgheck@comcast.net>
* Format incremented to 379: revise format 374
Replace boolean \html_use_mathml with \html_math_output,
which at the moment can be: MathML, HTML, Images, or LaTeX.
2010-02-12 Pavel Sanda <sanda@lyx.org>
* Format incremented to 378: support for revision InsetInfo.
Various "vcs-*" strings could be argument of arg parameter
in InsetInfo. This entry is a safety measure, no lyx2lyx
conversion is needed in fact.
2010-02-11 Uwe Stöhr <uwestoehr@web.de> and Edwin Leuven <e.leuven@uva.nl>
* Format incremented to 377: support for multirow cells in
tables
2010-01-10 Jürgen Spitzmüller <spitz@lyx.org>
* Format incremented to 376: new buffer param
\maintain_unincluded_children. If true, the aux files of
non-included children (with \includeonly) are updated to
keep the counters and refs correct.
2010-01-06 Jürgen Spitzmüller <spitz@lyx.org>
* Format incremented to 375: add support for \includeonly
This adds a new buffer param list of relative filenames
which are output as \includeonly arguments, like this:
\begin_includeonly
child1.lyx
child2.lyx
\end_includeonly
2009-12-30 Richard Heck <rgheck@comcast.net>
* Format incremented to 374: add html output options.
\html_use_mathml (boolean): whether to use MathML or images
\html_be_strict (boolean): whether to be XHTML 1.1 compliant
2009-12-07 Jürgen Spitzmüller <spitz@lyx.org>
* Format incremented to 373: merge g-brief-de and g-brief-en
classes into one g-brief class.
All German layout names are replaced by English ones, the
two classes are renamed to g-brief.
2009-11-29 Jürgen Spitzmüller <spitz@lyx.org>
* Format incremented to 372: new buffer param fontencoding.
This param holds a buffer-specific fontencoding (argument
of the fontenc package).
Possible values:
- global: use lyxrc.fontenc [this is the default]
- default: do not load the fontenc package at all
- <ENC>: real encodings such as "T1". Multiple encodings
can be separated by comma.
2009-11-11 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 371: add option to suppress the LaTeX
package mhchem.
2009-07-20 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 370: introduce a document option to
suppress the default date.
2009-07-22 Vincent van Ravesteijn <vfr@lyx.org>
* Format incremented to 369: add the author ids to the list of
authors and let the numbering start with 1 in stead of 0.
2009-07-21 Jürgen Spitzmüller <spitz@lyx.org>, Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 368: allow to use glue lengths for
horizontal spaces.
We just revert hspaces with glue lengths to ERT, since the
inset didn't support them prior to format 368.
No explicit conversion.
2009-07-20 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 367: allow to use percent lengths for
vertical and horizontal spaces.
2009-07-20 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 366: allow to use percent lengths for the
paragraph skip separation.
2009-07-19 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 365: support for paragraph indentation.
2009-07-13 Jürgen Spitzmüller <spitz@lyx.org>
* Format incremented to 364: add \filename_suffix parameter
to branches.
Possible values: 0, 1.
If "1", the branch name is appended to the filename on export
(e.g., <filename>-<suffix>.pdf).
2009-07-11 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 363: support for horizontal longtable
alignment.
2009-06-11 Jürgen Spitzmüller <spitz@lyx.org>
* Format incremented to 362: support for the applemac encoding.
2009-05-25 Jürgen Spitzmüller <spitz@lyx.org>
* Format incremented to 361: support for custom setting of
bibliography (longest) label width.
Empty file format change.
2009-05-22 Jürgen Spitzmüller <spitz@lyx.org>
* Format incremented to 360: param width for nomencl_print
CommandInset. This
1.) adds a further value "width" to param set_width
(see format 359)
and
2.) a param width, which takes a length
If "width" is chosen, we define the indendation of the nomencl
list via the optional argument of \printnomenclature, e.g.
\printnomenclature[2cm]{}
2009-05-22 Jürgen Spitzmüller <spitz@lyx.org>
* Format incremented to 359: param set_width for nomencl_print
CommandInset. This specifies how wide the longest nomencl label
is (i.e., how wide the indendation in the nomencl list is).
Possible values:
- none: do not specifiy the width (use predefined values)
- auto: compute the widest label and specify via
\settowidth{\nomlabelwidth}{<widest label>}
2009-05-22 Jürgen Spitzmüller <spitz@lyx.org>
* Format incremented to 358: support for custom bibtex and
makeindex commands.
2009-05-05 Pavel Sanda <sanda@lyx.org>, Enrico Forestieri <forenr@lyx.org>
* Format incremented to 357: Change of the latex output for
underline from \underbar to ulem's \uline.
2009-05-05 Pavel Sanda <sanda@lyx.org>
* Format incremented to 356: support for double and wave underline
character styles via ulem's \uuline and \uwave
2009-05-03 Pavel Sanda <sanda@lyx.org>
* Format incremented to 355: support for strikeout character
style via ulem's \sout
2009-04-26 Jürgen Spitzmüller <spitz@lyx.org>
* Format incremented to 354: support for splitindex's
\printindex* and \printsubindex*.
2009-04-26 Jürgen Spitzmüller <spitz@lyx.org>
* Format incremented to 353: support for splitindex's
\printsubindex.
2009-04-15 Jürgen Spitzmüller <spitz@lyx.org>
* Format incremented to 352: splitindex support.
2009-04-11 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 351: support to set a page background
color.
2009-04-06 Jürgen Spitzmüller <spitz@lyx.org>
* Format incremented to 350: new param \default_output_format.
2009-04-05 Jürgen Spitzmüller <spitz@lyx.org>
* Format incremented to 349: initial support for XeTeX.
2009-01-30 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 348: support for \*phantom.
2009-01-03 Vincent van Ravesteijn <V.F.vanRavesteijn@tudelft.nl>
* Format incremented to 347: support for tabular valign.
2008-11-28 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* Format incremented to 346: support for German (Switzerland):
(bug 5450)
2008-11-07 José Matos <jamatos@lyx.org>
* Format incremented to 345: for docbook backend CharStyle: -> Element:
(fix bug 5411)
2008-10-12 Pavel Sanda <sanda@lyx.org>
* Format incremented to 344: sanitize backreference settings
for hyperref (fix bug 5340).
2008-10-12 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* Format incremented to 343: new param \use_default_options
(fix bug 2114).
2008-10-12 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 342: support for Mongolian.
2008-09-30 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 341: support for TABs in listings.
2008-08-01 José Matos <jamatos@fc.up.pt>
* Format incremented to 340: move empty layouts to "Plain Layout".
2008-07-28 Richard Heck <rgheck@brown.edu>
* Format incremented to 339: removal of default modules.
2008-06-21 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 338: support for polytonic Greek.
2008-06-13 Abdelrazak Younes <younes@lyx.org>
* Format incremented to 337: convert/revert graphics display param.
2008-06-04 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* Format incremented to 336: new param \font_cjk.
2008-05-30 Richard Heck <rgheck@brown.edu>
* Format incremented to 335: fixes for InsetSpace problems.
2008-05-16 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 334: fix for bug 4868.
2008-05-09 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* Format incremented to 333: fixes in the APA layout.
2008-05-06 Pavel Sanda <sanda@lyx.org>
* Format incremented to 332: Added groupId for graphics insets.
2008-25-04 Helge Hafting <helge.hafting@aitel.hist.no>
* Format incremented to 330: More horizontal fills
- \leftarrowfill, \rightarrowfill
- \upbracefill, \downbracefill
2008-04-28 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* Format incremented to 329: new param \master.
2008-04-18 Bo Peng <ben.bob@gmail.com>
* Format incremented to 328: Revert the support for embedding
2008-04-16 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 327: support for Mexican Spanish.
2008-04-11 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* Format incremented to 326: support for pdflatex via external inset.
2008-03-29 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 325: merge the two Japanese languages to one that is
encoding independent.
2008-03-25 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* Format incremented to 324: merge the two newline insets.
2008-03-25 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* Format incremented to 323: merge the diverse newpage insets.
2008-03-24 Richard Heck <rgheck@comcast.net>
* Format incremented to 322: local layout
2008-03-18 Edwin Leuven <e.leuven@uva.nl>
* Format incremented to 321: drop row/col lines and ensure
consistency between cell and row/col lines.
Make the separation between \begin_inset and Tabular a
single space (it used to be a double space for lyx < 1.4)
2008-03-18 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* Format incremented to 320: support for protected horizontal fill
(\hspace*{\fill})
2008-03-10 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* Format incremented to 319: hspace and extended hfill support
2008-03-09 Bo Peng <ben.bob@gmail.com>
* Format incremented to 318: add \extra_embedded_files to buffer params
2008-03-02 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 317: support floating placements for wrap floats
2008-03-02 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* Format incremented to 316: support for subfloats (subfig package)
2008-02-18 Richard Heck <rgheck@comcast.net>
* Format incremented to 315: support for column separation in page margins
2008-02-03 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 314: adapt scrlttr2 class for serial letters
2008-01-12 Richard Heck <rgheck@comcast.net>
* Format incremented to 313: change in how modules are represented
2008-01-11 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* Format incremented to 312: support for sidewaysalgorithm (rotfloat)
and wide sideways{figure,table}.
2008-01-10 Richard Heck <rgheck@comcast.net>
* Format incremented to 311: dummy format to drive the AMS conversion
2007-12-28 Bernhard Reiter <ockham@gmx.net>
* Format incremented to 310: support for \nocite{*}
2007-12-11 Bernhard Reiter <ockham@gmx.net>
* Format incremented to 309: support for \nocite
2007-12-15 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 308: support for Serbian (Latin)
2007-12-05 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* Format incremented to 307: support for \slash and \nobreakdash
2007-12-05 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 306: support for Interlingua
2007-12-05 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 305: support for Bahasa Malaysia
2007-12-03 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* Format incremented to 304: framed and shaded boxes are now real boxes
(not notes).
2007-11-25 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 303: remove Serbocroatian as this was not a real
babel language (Croatian was used instead in the background)
* Implement Serbian
2007-11-25 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 302: support for Latin and North Sami
2007-11-24 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 301: support for \linebreak
2007-11-23 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 300: support for \pagebreak
2007-11-01 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 299: support for hyperlink types
2007-11-01 Stefan Schimanski <sts@1stein.org>
* Format incremented to 298: math-macro code has been rewritten,
now it supports definitions with optional parameters
2007-10-29 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 297: support for Albanian, lower Sorbian,
fixed upper Sorbian language
2007-10-23 Richard Heck <rgheck@comcast.net>
* Format incremented to 296: InsetInclude becomes an InsetCommand
2007-10-12 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 295: get rid of the htmlurl command that was
needed for docbook, add the option to create a hyperlink instead
2007-10-12 Pavel Sanda <ps@twin.jikos.cz>
* Format incremented to 294: PDFOptions: add usetitle,
fix leftovers
2007-10-11 Bo Peng <ben.bob@gmail.com>
* Format incremented to 293: Add InsetInfo.
2007-10-09 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 292: Support for Japanese without
using CJK and inputenc. (japanese-plain)
2007-10-04 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 291: Support for Vietnamese.
2007-10-03 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 290: Add table wrap floats
2007-10-03 Martin Vermeer <martin.vermeer@tkk.fi>
* Format incremented to 289: make Index a collapsable inset.
2007-09-25 Richard Heck <rgheck@comcast.net>
* Format incremented to 288: Change how command insets are
represented in LyX files.
2007-09-24 Uwe Stöhr <uwestoehr@web.de>
* Format incremented to 287: Add missing optional parameters
for wrapped figures.
2007-09-21 Pavel Sanda <ps@twin.jikos.cz>
* Format incremented to 286: LyX now supports hyperref and some
of its options.
2007-09-11 Bo Peng <ben.bob@gmail.com>
* Format incremented to 285: Tweaks to embedded file format
Remove inzip parameter from graphics insets.
2007-09-09 Helge Hafting <helge.hafting@aitel.hist.no>
* Format incremented to 284: LyX now implements wrapped figures
using wrapfig.sty instead of floatflt.sty. The latter
is rather buggy, the former also has more options.
No conversion as the .lyx doesn't change.
The .tex export is slightly different, necessitating the
format increase.
2007-09-08 Martin Vermeer <martin.vermeer@tkk.fi>
* format incremented to 283: CharStyle insets are now
called Flex.
2007-08-31 Bo Peng <ben.bob@gmail.com>
* format incremented to 282: lyx files can be zipfiles with
embedded documents.
2007-08-29 Richard Heck <rgheck@comcast.net>
* format incremented to 281: allow modules for layout files
2007-08-17 Martin Vermeer <martin.vermeer@tkk.fi>
* format incremented to 280: the show_label parameter
is depreciated in favour of (Collapsable) status.
2007-08-17 Martin Vermeer <martin.vermeer@tkk.fi>
* format incremented to 279: CharStyle names are now
expected to be of form CharStyle:Name.
2007-08-12 José Matos <jamatos@fc.up.pt>
* format incremented to 278: Close begin_deeper with a
corresponding end_deeper (the only case where it matters is
at the end of the body).
2007-08-12 José Matos <jamatos@fc.up.pt>
* format incremented to 277: lyx is able to create invalid
table where a multicolumn does not have a first cell
(required by the table file format)
2007-07-20 Dov Feldstern <dov@lyx.org>
* format *not* incremented; fixed format 249 conversion, so that it now
correctly deals with encodings in footnotes (part of bug 3613)
2007-06-26 Uwe Stöhr <uwestoehr@web.de> and Dov Feldstern <dov@lyx.org>
* format incremented to 276: switching exsting language 'arabic' to
'arabic_arabtex'; this is to differentiate from the new arabic support
using the arabi package.
2007-05-04 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* format incremented to 275: add graphics params scaleBeforeRotation
(fix bug 1749).
2007-06-13 Dov Feldstern <dov@lyx.org>
* format incremented to 274: applying the conversion done in format 259
to the \lang property, which was forgotten back then... This is
slightly more complicated, because the default language has to be
determined on a per-paragraph basis.
2007-06-13 Bo Peng <ben.bob@gmail.com>
* format incremented to 273: add --Separator-- environment to
separate consecutive environments
2007-06-13 Bo Peng <bpeng@lyx.org>
* format incremented to 272: convert listings to ERT because
earlier versions of lyx can not handle unrecognizable
listings parameters.
2007-05-15 José Matos <jamatos@lyx.org>
* format incremented to 271: extended textclasses accept the
normal font sizes: 10, 11 and 12pt.
2007-05-14 Martin Vermeer <martin.vermeer@tkk.fi>
* format incremented to 270: support beamer \alert, \structure
2007-05-08 Bo Peng <ben.bob@gmail.com>
* format incremented to 269: add listings support
- add preamble flag \listings_params, e.g. \listings_params "language=Python,float"
- add inset listings, with options lstparams and inline, e.g.
\begin_inset listings
lstparams "xleftmargin=50pt,language=Python"
inline false
- add \lstinputlisting Include type. e.g.
\begin_inset Include \lstinputlisting{newfile1.lyx}[firstline=10,lastline=15]
2007-05-06 Uwe Stöhr <uwestoehr@web.de>
* format incremented to 268: add support for the CJK encodings
- all encodings supported by CJK.sty are now in lib/encodings
- lib/encoding has got two new flags:
- encoding package:
"inputenc" for those languages that use the inputenc-package and
"CJK" for the CJK encodings
- "fixed"/"variable" to divide between multi- or single-byte encoding
- lib/languages allows now to set an empty language for babel
in this case babel isn't called.
2007-05-04 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* format incremented to 267: add plain utf8 encoding (for XeTeX).
2007-04-29 Uwe Stöhr <uwestoehr@web.de>
* format incremented to 266:
Support for the Armenian language
2007-04-26 Uwe Stöhr <uwestoehr@web.de>
* format incremented to 265: fix LyX's table border line handling
With the fix (see bug 1746) LyX now takes care if the user has entered
a "|" character in the argument field of tables. Therefore the "|"
character has to be removed when also a table border is set.
2007-04-24 José Matos <jamatos@lyx.org>
* format incremented to 264:
textclass cv is renamed simplecv
2007-02-22 José Matos <jamatos@lyx.org>
* format incremented to 263: changes in the language names (overdue):
brazil -> brazilian
portuges -> portuguese
2007-02-16 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* format incremented to 262: Allow ascii \inputencoding
2007-02-14 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* format incremented to 261: \output_changes is now considered
even if \tracking_changes is false. This allows to output existing
changes even if future changes are not tracked anymore.
The old combination
\tracking_changes false
\output_changes true
is therefore converted to
\tracking_changes false
\output_changes false
on upgrade. Nothing is done on downgrade since the new behaviour is
not supported in older formats.
2007-02-13 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* format incremented to 260: Allow utf8x \inputencoding
2007-02-12 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* format incremented to 259:
Old: Spaces at start or end of font changes were output outside of
the font change, i.e. not 'xx\textbf{ yy }zz', but
'xx \textbf{yy} zz'.
New: Spaces are always output with the font set by the user.
2007-01-31 Uwe Stöhr <uwestoehr@web.de>
* format incremented to 258: new \lyxline definition
Old:
\\newcommand{\\lyxline}[1]{
{#1 \\vspace{1ex} \\hrule width \\columnwidth \\vspace{1ex}}
}
New:
\\newcommand{\\lyxline}[1][1pt]{%
\\par\\noindent%
\\rule[.5ex]{\\linewidth}{#1}\\par}
The new definition is more robust, see bug 1988 and now really takes care of
the fontsize: \lyxline{\Huge} produces now a thicker line than \lyxline{\normalfont}
2007-01-29 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* format incremented to 257: Caption styles have been replaced by
InsetCaption. This is at the same time also a layout file format
change to format 3. layout2layout removes caption layouts from old
styles.
Note that InsetCaption did exist before this format, but was never
used. Old files containing do nevertheless still work.
Of course users can still define a Caption style in layout files,
but the special treatment in LyX is gone (apart from the sensitive
label property).
2006-12-22 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* format incremented to 256: allow some new inputenc settings.
For the complete list, see lib/lyx2lyx/lyx_1_5.py.
2006-11-25 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* format incremented to 255: new insets for \clearpage and
\cleardoublepage. They are written inline to the file, exactly like
\newpage.
2006-11-13 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* format incremented to 254: new header parameter \use_esint.
It can have the same values as \use_amsmath: 0 (off), 1 (auto) and
2 (on).
2006-10-18 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* format incremented to 253: new nomenclature and printnomenclature
insets. These are standard InsetCommand with the following parameters:
\nomenclature[prefix]{symbol}{description}
\printnomenclature[labelwidth]
2006-10-15 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* format incremented to 252: changed command inset syntax
Old:
\begin_inset LatexCommand \cmdname[opt1][opt2]{arg}
preview true
\end_inset
and
\bibitem [opt1]{arg}
New:
\begin_inset LatexCommand cmdname
name1 "opt1"
name2 "opt2"
name3 "arg"
preview true
\end_inset
The order of the parameters and for each parameter the name and
optional/required bit is now stored in InsetCommandParams.
2006-10-03 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* format incremented to 251: save show_label param for charstyles.
On revert, the show_label param is just removed. Nothing to convert.
2006-10-12 Martin Vermeer <martin.vermeer@hut.fi>
* Format incremented to 250: allow optional arg to environments
No material format change. Now optargs for environments are allowed
to be specified in layout files and will be handled properly. When
converted back to older formats, they will be ignored in LaTeX
output.
2006-08-14 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* format incremented to 249: Unicode
LyX documents are now always encoded in utf8. The value of
\inputencoding does now only determine the encoding of the created
LaTeX file.
Up to format 248 the value of \inputencoding did also determine the
encoding of the LyX file:
\inputencoding LyX file encoding
auto as determined by the document and character
languages
default ditto
everything else as determined by \inputencoding
The difference between auto and default is only the LaTeX output:
auto causes loading of the inputenc package, default does not.
2006-07-03 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* format incremented to 248: Basic booktabs support
The <features> tag has a new switch: booktabs="true|false".
An absent switch is equivalent to booktabs="false".
Horizontal lines are set with the booktabs package if this switch
is on.
The <row> tag of tabulars has the following new attributes:
topspace, bottomspace and interlinespace. All take a LyXLength
as value, or the special keyword "default".
2006-06-10 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* format incremented to 247. The Grand Font Interface Rewrite.
(1) Split font selection to rm, sf, tt:
\fontscheme -> \font_roman, \font_sans, \font_typewriter
Change 246->247:
\fontscheme \font_roman \font_sans \font_typewriter
default default default default
ae ae default default
times times default default
palatino palatino default default
helvet default helvet default
avant default avant default
newcent newcent default default
bookman bookman default default
pslatex times (or \usepackage{pslatex})
New 246->247:
\font_roman: cmr (-> \renewcommand{\rmdefault}{cmr}),
lmodern, charter, utopia, ccfonts, chancery, beraserif
(-> \usepackage{<name>})
\font_sans: cmss, lmss, cmbr
(-> \renewcommand{\sfdefault}{<name>})
berasans (-> \usepackage{<name>})
\font_typewriter: cmtt, lmtt, cmtl,
(-> \renewcommand{\sfdefault}{<name>})
courier, luximono, beramono
(-> \usepackage{<name>})
(2) New param \font_default_family (rmdefault, sfdefault, ttdefault)
(3) New param \font_sc (true, false).
(4) New param \font_osf (true, false).
(5) New param \font_sf_scale (float)
(6) New param \font_tt_scale (float)
Support for the following fonts has been added:
bera, ccfonts, chancery, charter, cmbright, computer modern (explicitely),
courier, lmodern, luximono, utopia.
Support for the following font has been removed:
pslatex (it's superseded by mathptmx (times)).
2006-06-03 Martin Vermeer <martin.vermeer@hut.fi>
* format incremented to 246. The framed.sty package is
now supported with note types framed and shaded.
2005-10-12 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* format incremented to 245. The \quotes_times parameter
has been removed.
2005-09-24 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* format incremented to 244. Rename '\InsetSpace \,'
to '\InsetSpace \thinspace{}', because the comma was
not parsed by lyxlex, and '\InsetSpace \space' to
'\InsetSpace \space{}' in favour of consistency.
2005-07-18 José Matos <jamatos@lyx.org>
* format incremented to 243.
* this change only affects the preamble, the paperpackage
option was removed and papersize is changed to default.
2005-06-21 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* format incremented to 242. There is no file format per
se, but the "frenchb" language has been removed from lib/language
and has to be translated to "french" by lyx2lyx.
2005-02-03 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* format incremented to 241.
All following changes apply only to text in ERT insets. The
rationale is that text in ERT is simply ASCII text, and nothing more.
* paragraph breaks are now a single newline in latex and not a
paragraph break anymore (bug 698).
* \newline is not allowed anymore, because it is redundant (see above)
* layouts other than Standard, paragraph parameters and font changes
are not allowed anymore. They never made sense and were ignored for
latex output, but now they can't be read or set anymore (bug 922).
2005-01-23 Jürgen Spitzmüller <j.spitzmüller@gmx.de>
* format incremented to 240.
* new bufferparam:
\output_changes {true|false}
(should the change tracking marks be visible in the output or not?)
* lyx2lyx should just delete the param in 239.
2005-01-06 José Matos <jamatos@lyx.org>
* format incremented to 239.
* the paragraph parameters are displayed in their own line. This
change is consistent with the insets behaviour, and corresponds
to a more uniform treatment of the paragraphs since some of them
had already their own line.
An example of a single paragraph follows:
\begin_layout Standard
\paragraph_spacing single
\align left
Paragraph text.
\end_layout
2004-12-03 José Matos <jamatos@lyx.org>
* format incremented to 238.
* The compatibility code to read old latex accents from 0.12.x in
InsetLatexAccent::checkContents has been removed.
The following translations are done:
"\i \x" -> "\i \x{}"
"\i \xy" -> "\i \x{y}"
"\i \x y" -> "\i \x{y}"
"\i \x\i" -> "\i \x{\i}"
"\i \x\j" -> "\i \x{\j}"
x is a latex accent command, y the base character. \, i and j are
literal.
lyx did these changes already from 0.12.x -> 215, but not lyx2lyx,
so formats 215 - 237 can have both versions.
2004-10-10 José Matos <jamatos@lyx.org>
* format incremented to 237.
* In the header, the following statments use now booleans values,
instead of 0, 1:
- \use_geometry
- \use_bibtopic
- \tracking_changes
2004-08-15 José Matos <jamatos@lyx.org>
* format incremented to 236.
* Added tags:
- \begin_document
- \begin_header
- \begin_body
- \end_body
* The options for \papersize are changed:
Default -> default
Custom -> custom
* All whitespaces are removed at the end of lines, when
not necessary. As an example we have all the lines in the header that
do not belong to the preamble.
2004-07-01 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* format incremented to 235.
* \paperpackage had an off-by-one error. Translation table:
234: a4 a4wide widemarginsa4
235: none a4 a4wide widemarginsa4
The "widemarginsa4" setting of 235 has no equivalent in 234.
2004-05-12 Angus Leeming <leeming@lyx.org>
* format incremented to 234.
* the citation engine is specified explicitly rather than being
deduced from 3 bools.
\use_natbib 1
\use_numerical_citations 0 -> \cite_engine <style>
\use_jurabib 0
where <style> is one of "basic", "natbib_authoryear",
"natbib_numerical" or "jurabib".
2004-04-29 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* format incremented to 233.
* insetgraphics does not allow filenames without extension anymore.
The complete filename has to be given.
2004-03-29 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* format incremented to 232.
* Support for bibtopic (sectioned bibliographies).
- bufferparam \use_bibtopic [1|0]
- the bibtex inset has a second argument for bibtopic's
btPrint{Cited|NotCited|All} command:
< 231:
\begin_inset LatexCommand \bibtex[<style>]{<database>}
now:
\begin_inset LatexCommand \bibtex[<style>][<btPrintX>]{<database>}
Forwards, there's nothing to be done. Backwards, \usepackage[dot]{bibtopic}
has to be inserted to the preamble. Instead of the bibtex inset, the LaTeX
\bibliographystyle{<style>}
\begin{btSect}{<database>}
\<btprintX>
\end{btSect}
has to be inserted.
2004-03-29 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* format incremented to 231.
* Support for sidewaysfigure/sidewaystable (rotating package).
insetfloat has now a param \sideways [true|false] (default is false).
The param should be erased on downwards conversion, if it was true,
the inset should be replaced by
\begin{sidewaysfigure} <content> \end{sidewaysfigure}
resp.
\begin{sidewaystable} <content> \end{sidewaystable}
i.e. ERT.
2004-02-23 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* format incremented to 230.
* Support for a second optional argument in insetcommand.
currently, citation uses this to support natbibs second
optional argument \cite[before][after]{key}.
I think there's nothing to convert upwards. Downwards, the
commands with 2 optional args need to be converted to ERT.
* Support for jurabib (param \use_jurabib [1|0], default is 0).
When converting downwards, \usepackage{jurabib} has to be added
to the preamble and, if babel is used, \usepackage{babel} before
(jurabib fails if babel is called afterwards). If the natbib commands
are used together with jurabib, they have to be converted to ERT too.
2003-12-29 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* format incremented to 229.
* Minipages cannot be read anymore. All minipage insets will
be converted to frameless box insets between 228->229.
2003-12-15 Angus Leeming <leeming@lyx.org>
* format incremented to 228.
* Change the output of all insets derived from InsetCollapsable
except for InsetERT (which has a similar output already), changing lines
"collapsed true" -> "status collapsed"
"collapsed false" -> "status open".
* Change the output of InsetERT, changing lines
"status Collapsed" -> "status collapsed"
"status Open" -> "status open".
"status Inlined" -> "status inlined".
2003-12-10 Angus Leeming <leeming@lyx.org>
* format NOT incremented.
* add a 'draft' option to InsetExternal.
2003-12-10 Angus Leeming <leeming@lyx.org>
* format incremented to 227.
* Change the output of InsetBox:
\begin_inset Boxed -> \begin_inset Box Boxed
\begin_inset Doublebox -> \begin_inset Box Doublebox
\begin_inset Frameless -> \begin_inset Box Frameless
\begin_inset ovalbox -> \begin_inset Box ovalbox
\begin_inset Ovalbox -> \begin_inset Box Ovalbox
\begin_inset Shadowbox -> \begin_inset Box Shadowbox
2003-12-10 Angus Leeming <leeming@lyx.org>
* format incremented to 226.
* Change the output of InsetNote:
\begin_inset Note -> \begin_inset Note Note
\begin_inset Comment -> \begin_inset Note Comment
\begin_inset Greyedout -> \begin_inset Note Greyedout
2003-11-28 André Pönitz
* Remove space_above/space_below from Paragraph.
This is now handled by InsetVSpace.
2003-10-07 Angus Leeming <leeming@lyx.org>
* Add transformations to InsetExternal
boundingBox 0 0 20 20 the dimensions of the B.B..
Output if the B.B. is not empty.
clip clip the image to the B.B.
Output if true.
extra LaTeX "draft" 'extra' data passed to the primary
command for this output format.
(Possible formats LaTeX, PDFLaTeX,
LinuxDoc, DocBook, Ascii.)
The string can contain spaces and so
is wrapped in "...".
rotateAngle 30 Rotation of the data.
Output for non-zero rotation only.
rotateOrigin bottomleft Rotation origin.
Output for non-zero rotation and
non-default origin (center) only.
scale 50
width 2cm Output only if the image is resized.
height 2cm
keepAspectRatio
2003-10-07 Martin Vermeer <martin.vermeer@hut.fi>
* Added box inset. File format:
\begin_inset Ovalbox Boxed/Frameless/ovalbox/Ovalbox
/Shadowbox/Doublebox
position "b" t/c/b
hor_pos "c" l/c/r/s
has_inner_box 1 1/0
inner_pos "b" t/c/b/s
use_parbox 0 1/0
width "100col%" unit+width-string
special "none" none/height/depth
/totalheight/width
height "1in" unit+width-string
height_special "totalheight" none/height/depth
/totalheight/width
collapsed false true/false
\begin_layout Standard
<box contents>
\end_layout
\end_inset
This box (Frameless, has_inner_box=1, use_parbox=0) replaces
the pre-existing Minipage inset. Parameters translate as follows:
position 0/1/2 -> t/c/b
inner_position 0/1/2/3 -> inner_pos c/t/b/s
height same
width same
collapsed same
2003-08-19 Michael Schmitt <michael.schmitt@teststep.org>
* attribute valignment="center" is replaced by valignment="middle"
for tabular columns and cells
2003-08-17 Martin Vermeer <martin.vermeer@hut.fi>
* Added branch inset. File format:
branch definition in the header:
\branch <branchname>
\selected 0 0/1
\color #rrggbb
\end_branch
\begin_inset Branch <branchname>
collapsed false true/false
\begin_layout Standard
<branch contents>
\end_layout
\end_inset
2003-07-28 José Matos <jamatos@lyx.org>
* \the_end is replaced with \end_document
2003-07-28 José Matos <jamatos@lyx.org>
* \layout is replaced with \begin_layout
2003-07-28 José Matos <jamatos@fep.up.pt>
Format bumped to 225
* All layouts finish now with \end_layout
2003-06-04 Angus Leeming <leeming@lyx.org>
Format bumped to 224
* the storage of the external inset has been changed from
\begin_inset External XFig,"file.fig",""
\end_inset
to this
\begin_inset External
template XFig
filename file.fig
display <display_type>
lyxscale <scale>
\end_inset
throwing away the final arg (here "", more generally "<string>") that holds
the parameters variable.
Variables are output if present (filename) or different from the default
values (display, lyxscale).
Moreover, the RasterImage template has been scrapped. All RasterImage
external insets are now converted to Graphics insets.
2003-05-20 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* Added new space insets:
\SpecialChar ~ is now \InsetSpace ~
ERT: "\ " could be converted to InsetSpace \<space>
ERT: "\," could be converted to InsetSpace \,
2003-04-24 André Pönitz <poenitz@gmx.net>
* Added eqref support:
\begin_inset LatexCommand \eqref{label}
2003-03-14 Dekel Tsur
* Format bumped to 223.
2003-03-12 John Levon <levon@movementarian.org>
* Added \\end_header to signify the end of the header in a
more robust fashion.
* use_amsmath is now a tristate {0 = never, 1 = auto, 2 = always}
2003-02-10 John Levon <levon@movementarian.org>
Format bumped to 222
Added \\tracking_changes 0|1 to the header.
Added \\author to the header. This can be present multiple
times, and is of the form :
\\author "Real Name" email@address.com
Added \\change_deleted, \\change_inserted. Each of these does not
span a paragraph, and is delimited by "\\change_unchanged\n". Both are
of the form :
\\change_inserted author time
where author is an integer ID reference into the author list in
the header, and time is time_t.
2002-10-24 Rob Lahaye <lahaye@snu.ac.kr>
* InsetGraphicsParams.h (scale): is now a float, not an unsigned int.
2002-08-22 Rob Lahaye <lahaye@snu.ac.kr>
New graphics dialog. With the removal of buttons in the dialog, also
keywords in the graphics inset went. The following keywords do not
exist anymore:
lyxsize_kind
lyxsize_type
lyxwidth
lyxheight
size_kind
size_type
rotate
Only non-default values are saved to the lyx files. The defaults of the remaining
keywords are;
filename <empty>
lyxscale 100
display default
scale 100
width <empty>
height <empty>
draft <off>
noUnzip <off>
BoundingBox <from file>
clip <off>
rotateAngle 0
rotateOrigin centerBaseline
subcaption <off>
subcaptionText <empty>
special <empty>
The remaining keywords have sufficient overlap with the old ones for a
smooth reading of the 1.2.x inset keywords in most common cases.
Compatibility is certainly broken for the old lyxwidth/lyxheight keywords.
They don't exist anymore and we can't translate them into a scaling value, while
we're reading the graphics inset. The old lyxwidth/lyxheight keyword and its
argument is ignored and lost.
Only few compatibility issues are left for lyx2lyx:
------------------------------------------------------------------------------
old-token new-token remove
------------------------------------------------------------------------------
size_kind original / size_type 0 scale 100 width <val>
height <val>
scale <val>
size_kind width_height / size_type 1 - scale <val>
lyxsize_kind original / lyxsize_type 0 lyxscale 100 lyxscale <val>
------------------------------------------------------------------------------
[replace old-token by new-token, and remove any of subsequent tokens as listed]
If "rotate" is absent, lyx2lyx should ignore "rotateAngle <val>":
if ( "rotateAngle <val>" is there WITHOUT being preceded by the keyword "rotate" )
then
replace "rotateAngle <val>" by "rotateAngle 0"
2002-08-12 Andre' Poenitz <poenitz@gmx.de>
Added \lyxlock for locked math inset when written to .lyx file.
When "downgrading" .lyx files this should simple be deleted but it
does not hurt at all if it stays in. It does not have to be added
when "upgrading".
2002-08-02 Angus Leeming <leeming@lyx.org>
Added a boolean "preview" flag to InsetCommandParams.
Currently it is written only by InsetInclude, because only this
class can generate a preview of its contents.
The LyX file now contains:
\begin_inset Include \input{snapshot_t=40.tex}
+preview true
\end_inset
Earlier versions of LyX just swallow this extra token silently.
2002-08-12 Angus Leeming <leeming@lyx.org>
The 1.2.0 InsetGraphicsParams "size_type" and "lyxsize_type" have been
renamed as "size_kind" and "lyxsize_kind" respectively.
\begin_inset Graphics FormatVersion 1
filename file.eps
display default
- size_kind original
+ size_type original
width 7cm
rotateOrigin center
- lyxsize_kind original
+ lyxsize_type original
lyxwidth 4cm
\end_inset
|