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