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