]> git.lyx.org Git - lyx.git/blob - development/FORMAT
src/insets/insettabular (doDispatch, insertAsciiString): fix insertion of \t- and...
[lyx.git] / development / FORMAT
1 LyX file-format changes
2 -----------------------
3
4 2005-10-12  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
5
6         * format incremented to 245. The \quotes_times parameter
7         has been removed.
8
9 2005-09-24  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
10
11         * format incremented to 244. Rename '\InsetSpace \,'
12         to '\InsetSpace \thinspace{}', because the comma was
13         not parsed by lyxlex, and '\InsetSpace \space' to
14         '\InsetSpace \space{}' in favour of consistency.
15
16 2005-07-18  José Matos  <jamatos@lyx.org>
17
18         * format incremented to 243.
19
20         * this change only affects the preamble, the paperpackage
21           option was removed and papersize is changed to default.
22
23 2005-06-21  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
24
25         * format incremented to 242. There is no file format per
26         se, but the "frenchb" language has been removed from lib/language
27         and has to be translated to "french" by lyx2lyx.
28
29 2005-02-03  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
30
31         * format incremented to 241.
32
33         All following changes apply only to text in ERT insets. The
34         rationale is that text in ERT is simply ASCII text, and nothing more.
35
36         * paragraph breaks are now a single newline in latex and not a
37         paragraph break anymore (bug 698).
38         * \newline is not allowed anymore, because it is redundant (see above)
39         * layouts other than Standard, paragraph parameters and font changes
40         are not allowed anymore. They never made sense and were ignored for
41         latex output, but now they can't be read or set anymore (bug 922).
42
43
44 2005-01-23  Jürgen Spitzmüller  <j.spitzmüller@gmx.de>
45
46         * format incremented to 240.
47         * new bufferparam:
48                 \output_changes {true|false}
49         (should the change tracking marks be visible in the output or not?)
50         * lyx2lyx should just delete the param in 239.
51
52 2005-01-06  José Matos  <jamatos@lyx.org>
53
54         * format incremented to 239.
55         * the paragraph parameters are displayed in their own line. This
56         change is consistent with the insets behaviour, and corresponds
57         to a more uniform treatment of the paragraphs since some of them
58         had already their own line.
59
60         An example of a single paragraph follows:
61
62 \begin_layout Standard
63 \paragraph_spacing single
64 \align left
65 Paragraph text.
66 \end_layout
67
68
69 2004-12-03  José Matos  <jamatos@lyx.org>
70
71         * format incremented to 238.
72         * The compatibility code to read old latex accents from 0.12.x in
73         InsetLatexAccent::checkContents has been removed.
74         The following translations are done:
75                 "\i \x"   -> "\i \x{}"
76                 "\i \xy"  -> "\i \x{y}"
77                 "\i \x y" -> "\i \x{y}"
78                 "\i \x\i" -> "\i \x{\i}"
79                 "\i \x\j" -> "\i \x{\j}"
80         x is a latex accent command, y the base character. \, i and j are
81         literal.
82         lyx did these changes already from 0.12.x -> 215, but not lyx2lyx,
83         so formats 215 - 237 can have both versions.
84
85
86 2004-10-10  José Matos  <jamatos@lyx.org>
87
88         * format incremented to 237.
89         * In the header, the following statments use now booleans values,
90         instead of 0, 1:
91                 - \use_geometry
92                 - \use_bibtopic
93                 - \tracking_changes
94
95 2004-08-15  José Matos  <jamatos@lyx.org>
96
97         * format incremented to 236.
98         * Added tags:
99                 - \begin_document
100                 - \begin_header
101                 - \begin_body
102                 - \end_body
103
104         * The options for \papersize are changed:
105                 Default -> default
106                 Custom -> custom
107         * All whitespaces are removed at the end of lines, when
108         not necessary. As an example we have all the lines in the header that
109         do not belong to the preamble.
110
111 2004-07-01  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
112
113         * format incremented to 235.
114         * \paperpackage had an off-by-one error. Translation table:
115
116           234: a4    a4wide  widemarginsa4
117           235: none  a4      a4wide         widemarginsa4
118
119           The "widemarginsa4" setting of 235 has no equivalent in 234.
120
121 2004-05-12  Angus Leeming  <leeming@lyx.org>
122
123         * format incremented to 234.
124         * the citation engine is specified explicitly rather than being
125         deduced from 3 bools.
126
127         \use_natbib 1
128         \use_numerical_citations 0   ->   \cite_engine <style>
129         \use_jurabib 0
130
131         where <style> is one of "basic", "natbib_authoryear",
132         "natbib_numerical" or "jurabib".
133
134 2004-04-29  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
135
136         * format incremented to 233.
137         * insetgraphics does not allow filenames without extension anymore.
138         The complete filename has to be given.
139
140 2004-03-29  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
141
142         * format incremented to 232.
143
144         * Support for bibtopic (sectioned bibliographies).
145           - bufferparam \use_bibtopic [1|0]
146           - the bibtex inset has a second argument for bibtopic's
147             btPrint{Cited|NotCited|All} command:
148             < 231:
149             \begin_inset LatexCommand \bibtex[<style>]{<database>}
150             now:
151             \begin_inset LatexCommand \bibtex[<style>][<btPrintX>]{<database>}
152           Forwards, there's nothing to be done. Backwards, \usepackage[dot]{bibtopic}
153           has to be inserted to the preamble. Instead of the bibtex inset, the LaTeX
154           \bibliographystyle{<style>}
155           \begin{btSect}{<database>}
156           \<btprintX>
157           \end{btSect}
158           has to be inserted.
159
160 2004-03-29  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
161
162         * format incremented to 231.
163
164         * Support for sidewaysfigure/sidewaystable (rotating package).
165         insetfloat has now a param \sideways [true|false] (default is false).
166         The param should be erased on downwards conversion, if it was true,
167         the inset should be replaced by
168         \begin{sidewaysfigure} <content> \end{sidewaysfigure}
169         resp.
170         \begin{sidewaystable} <content> \end{sidewaystable}
171         i.e. ERT.
172
173 2004-02-23  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
174
175         * format incremented to 230.
176
177         * Support for a second optional argument in insetcommand.
178         currently, citation uses this to support natbibs second
179         optional argument \cite[before][after]{key}.
180         I think there's nothing to convert upwards. Downwards, the
181         commands with 2 optional args need to be converted to ERT.
182
183         * Support for jurabib (param \use_jurabib [1|0], default is 0).
184         When converting downwards, \usepackage{jurabib} has to be added
185         to the preamble and, if babel is used, \usepackage{babel} before
186         (jurabib fails if babel is called afterwards). If the natbib commands
187         are used together with jurabib, they have to be converted to ERT too.
188
189 2003-12-29  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
190
191         * format incremented to 229.
192         * Minipages cannot be read anymore. All minipage insets will
193         be converted to frameless box insets between 228->229.
194
195 2003-12-15  Angus Leeming  <leeming@lyx.org>
196
197         * format incremented to 228.
198         * Change the output of all insets derived from InsetCollapsable
199         except for InsetERT (which has a similar output already), changing lines
200         "collapsed true" -> "status collapsed"
201         "collapsed false" -> "status open".
202         * Change the output of InsetERT, changing lines
203         "status Collapsed" -> "status collapsed"
204         "status Open" -> "status open".
205         "status Inlined" -> "status inlined".
206
207 2003-12-10  Angus Leeming  <leeming@lyx.org>
208
209         * format NOT incremented.
210         * add a 'draft' option to InsetExternal.
211
212 2003-12-10  Angus Leeming  <leeming@lyx.org>
213
214         * format incremented to 227.
215         * Change the output of InsetBox:
216         \begin_inset Boxed -> \begin_inset Box Boxed
217         \begin_inset Doublebox -> \begin_inset Box Doublebox
218         \begin_inset Frameless -> \begin_inset Box Frameless
219         \begin_inset ovalbox -> \begin_inset Box ovalbox
220         \begin_inset Ovalbox -> \begin_inset Box Ovalbox
221         \begin_inset Shadowbox -> \begin_inset Box Shadowbox
222
223 2003-12-10  Angus Leeming  <leeming@lyx.org>
224
225         * format incremented to 226.
226         * Change the output of InsetNote:
227         \begin_inset Note -> \begin_inset Note Note
228         \begin_inset Comment -> \begin_inset Note Comment
229         \begin_inset Greyedout -> \begin_inset Note Greyedout
230
231 2003-11-28  André Pönitz
232
233         * Remove space_above/space_below from Paragraph.
234     This is now handled by InsetVSpace.
235
236 2003-10-07  Angus Leeming  <leeming@lyx.org>
237
238         * Add transformations to InsetExternal
239
240         boundingBox 0 0 20 20           the dimensions of the B.B..
241                                         Output if the B.B. is not empty.
242         clip                            clip the image to the B.B.
243                                         Output if true.
244         extra LaTeX "draft"             'extra' data passed to the primary
245                                         command for this output format.
246                                         (Possible formats LaTeX, PDFLaTeX,
247                                          LinuxDoc, DocBook, Ascii.)
248                                         The string can contain spaces and so
249                                         is wrapped in "...".
250         rotateAngle 30                  Rotation of the data.
251                                         Output for non-zero rotation only.
252         rotateOrigin bottomleft         Rotation origin.
253                                         Output for non-zero rotation and
254                                         non-default origin (center) only.
255         scale 50
256         width 2cm                       Output only if the image is resized.
257         height 2cm
258         keepAspectRatio
259
260 2003-10-07  Martin Vermeer  <martin.vermeer@hut.fi>
261
262         * Added box inset. File format:
263
264         \begin_inset Ovalbox            Boxed/Frameless/ovalbox/Ovalbox
265                                             /Shadowbox/Doublebox
266         position "b"                    t/c/b
267         hor_pos "c"                     l/c/r/s
268         has_inner_box 1                 1/0
269         inner_pos "b"                   t/c/b/s
270         use_parbox 0                    1/0
271         width "100col%"                 unit+width-string
272         special "none"                  none/height/depth
273                                             /totalheight/width
274         height "1in"                    unit+width-string
275         height_special "totalheight"    none/height/depth
276                                             /totalheight/width
277         collapsed false                 true/false
278
279         \begin_layout Standard
280
281         <box contents>
282         \end_layout
283
284         \end_inset
285
286         This box (Frameless, has_inner_box=1, use_parbox=0) replaces
287         the pre-existing Minipage inset. Parameters translate as follows:
288         position                        0/1/2   -> t/c/b
289         inner_position                  0/1/2/3 -> inner_pos c/t/b/s
290         height                          same
291         width                           same
292         collapsed                       same
293
294 2003-08-19  Michael Schmitt  <michael.schmitt@teststep.org>
295
296         * attribute valignment="center" is replaced by valignment="middle"
297         for tabular columns and cells
298
299 2003-08-17  Martin Vermeer  <martin.vermeer@hut.fi>
300
301         * Added branch inset. File format:
302
303         branch definition in the header:
304         \branch <branchname>
305         \selected 0                    0/1
306         \color #rrggbb
307         \end_branch
308
309         \begin_inset Branch <branchname>
310         collapsed false                 true/false
311
312         \begin_layout Standard
313
314         <branch contents>
315         \end_layout
316
317         \end_inset
318
319 2003-07-28  José Matos  <jamatos@lyx.org>
320
321         * \the_end is replaced with \end_document
322
323 2003-07-28  José Matos  <jamatos@lyx.org>
324
325         * \layout is replaced with \begin_layout
326
327 2003-07-28  José Matos  <jamatos@fep.up.pt>
328
329         Format bumped to 225
330
331         * All layouts finish now with \end_layout
332
333 2003-06-04  Angus Leeming  <leeming@lyx.org>
334
335         Format bumped to 224
336
337         * the storage of the external inset has been changed from
338
339                 \begin_inset External XFig,"file.fig",""
340
341                 \end_inset
342
343         to this
344
345                 \begin_inset External
346                         template XFig
347                         filename file.fig
348                         display <display_type>
349                         lyxscale <scale>
350
351                 \end_inset
352
353         throwing away the final arg (here "", more generally "<string>") that holds
354         the parameters variable.
355         Variables are output if present (filename) or different from the default
356         values (display, lyxscale).
357
358         Moreover, the RasterImage template has been scrapped. All RasterImage
359         external insets are now converted to Graphics insets.
360
361 2003-05-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
362
363         * Added new space insets:
364                 \SpecialChar ~ is now \InsetSpace ~
365                 ERT: "\ " could be converted to InsetSpace \<space>
366                 ERT: "\," could be converted to InsetSpace \,
367
368 2003-04-24  André Pönitz <poenitz@gmx.net>
369
370         * Added eqref support:
371         \begin_inset LatexCommand \eqref{label}
372
373 2003-03-14  Dekel Tsur
374
375         * Format bumped to 223.
376
377 2003-03-12  John Levon  <levon@movementarian.org>
378
379         * Added \\end_header to signify the end of the header in a
380           more robust fashion.
381
382         * use_amsmath is now a tristate {0 = never, 1 = auto, 2 = always}
383
384 2003-02-10  John Levon  <levon@movementarian.org>
385
386         Format bumped to 222
387
388         Added \\tracking_changes 0|1 to the header.
389
390         Added \\author to the header. This can be present multiple
391         times, and is of the form :
392
393         \\author "Real Name" email@address.com
394
395         Added \\change_deleted, \\change_inserted. Each of these does not
396         span a paragraph, and is delimited by "\\change_unchanged\n". Both are
397         of the form :
398
399         \\change_inserted author time
400
401         where author is an integer ID reference into the author list in
402         the header, and time is time_t.
403
404 2002-10-24  Rob Lahaye  <lahaye@snu.ac.kr>
405
406         * insetgraphicsParams.h (scale): is now a float, not an unsigned int.
407
408 2002-08-22  Rob Lahaye <lahaye@snu.ac.kr>
409
410 New graphics dialog. With the removal of buttons in the dialog, also
411 keywords in the graphics inset went. The following keywords do not
412 exist anymore:
413         lyxsize_kind
414         lyxsize_type
415         lyxwidth
416         lyxheight
417         size_kind
418         size_type
419         rotate
420
421 Only non-default values are saved to the lyx files. The defaults of the remaining
422 keywords are;
423         filename <empty>
424         lyxscale 100
425         display default
426         scale 100
427         width <empty>
428         height <empty>
429         draft <off>
430         noUnzip <off>
431         BoundingBox <from file>
432         clip <off>
433         rotateAngle 0
434         rotateOrigin centerBaseline
435         subcaption <off>
436         subcaptionText <empty>
437         special <empty>
438
439 The remaining keywords have sufficient overlap with the old ones for a
440 smooth reading of the 1.2.x inset keywords in most common cases.
441
442 Compatibility is certainly broken for the old lyxwidth/lyxheight keywords.
443 They don't exist anymore and we can't translate them into a scaling value, while
444 we're reading the graphics inset. The old lyxwidth/lyxheight keyword and its
445 argument is ignored and lost.
446
447 Only few compatibility issues are left for lyx2lyx:
448
449 ------------------------------------------------------------------------------
450 old-token                                   new-token         remove
451 ------------------------------------------------------------------------------
452 size_kind original / size_type 0            scale 100         width <val>
453                                                               height <val>
454                                                               scale <val>
455
456 size_kind width_height / size_type 1            -             scale <val>
457
458 lyxsize_kind original / lyxsize_type 0      lyxscale 100      lyxscale <val>
459 ------------------------------------------------------------------------------
460 [replace old-token by new-token, and remove any of subsequent tokens as listed]
461
462 If "rotate" is absent, lyx2lyx should ignore "rotateAngle <val>":
463    if ( "rotateAngle <val>" is there WITHOUT being preceded by the keyword "rotate" )
464    then
465         replace "rotateAngle <val>" by "rotateAngle 0"
466
467
468 2002-08-12  Andre' Poenitz <poenitz@gmx.de>
469
470 Added \lyxlock for locked math inset when written to .lyx file.
471 When "downgrading" .lyx files this should simple be deleted but it
472 does not hurt at all if it stays in. It does not have to be added
473 when "upgrading".
474
475
476 2002-08-02  Angus Leeming  <leeming@lyx.org>
477
478 Added a boolean "preview" flag to InsetCommandParams.
479 Currently it is written only by InsetInclude, because only this
480 class can generate a preview of its contents.
481
482 The LyX file now contains:
483
484  \begin_inset Include \input{snapshot_t=40.tex}
485 +preview true
486
487  \end_inset
488
489 Earlier versions of LyX just swallow this extra token silently.
490
491 2002-08-12  Angus Leeming  <leeming@lyx.org>
492
493 The 1.2.0 InsetGraphicsParams "size_type" and "lyxsize_type" have been
494 renamed as "size_kind" and "lyxsize_kind" respectively.
495
496  \begin_inset Graphics FormatVersion 1
497         filename file.eps
498         display default
499 -       size_kind original
500 +       size_type original
501         width 7cm
502         rotateOrigin center
503 -       lyxsize_kind original
504 +       lyxsize_type original
505         lyxwidth 4cm
506
507  \end_inset
508