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