]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/ChangeLog
handle natbib and jurabib packages and citation commands
[lyx.git] / src / tex2lyx / ChangeLog
1 2004-08-10  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
2
3         * preamble.C (split_options): new, split package options into vector
4         * preamble.C (add_package): new, add a package with options to
5         used_packages
6         * preamble.C, tex2lyx.h (used_packages): new map of used packages
7         and options
8         * preamble.C (handle_package): handle natbib and jurabib package
9         * preamble.C (handle_package): output a message for unhandled options
10         * preamble.C (parse_preamble): handle \jurabibsetup
11         * text.C (known_natbib_commands): new list of known natbib ccommands
12         * text.C (known_jurabib_commands): new list of known jurabib ccommands
13         * text.C (getCiteArguments): new, parse cite command arguments
14         * text.C (parse_text): handle natbib and jurabib citation commands
15
16 2004-07-29  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
17
18         * preamble.C (end_preamble): change file format from 228 to 235
19         * preamble.C (end_preamble): add use_bibtopic flag
20         * preamble.C (end_preamble): replace use_natbib with cite_engine
21         * preamble.C: change the paperpackage default from "default" to
22         "none". The old setting only worked by accident.
23         * tex2lyx.[Ch] (getMasterFilePath): new, needed for included graphics
24         * text.C (parse_environment): add sideways flag for float insets
25         * text.C (parse_text): add graphics file extension if necessary
26         * text.C (find_file): new helper function
27
28 2004-07-23  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
29
30         * math.C (parse_math): change tex "\\cr" line ending to "\\\\"
31         * table.C (parse_table): recognize tex "\\cr" line ending
32
33 2004-06-28  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
34
35         * math.C, preamble.C, tex2lyx.[Ch], text.C: const fixes
36         * context.[Ch]: new Font struct, and add it to Context
37         * text.C (parse_text): reset size after size change
38         * text.C: handle declaration form of font attribute changes (new
39         and old style)
40         * text.C (parse_text): handle \textmd, \textup and \textnormal
41         * text.C (parse_text_attributes): new
42
43 2004-06-23  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
44
45         * text.C (output_command_layout, parse_environment): fix bug 1446
46         by passing parent_context.deeper_paragraph to the child context
47
48 2004-06-18  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
49
50         * preamble.C, text.C: s/wether/whether/g
51         * text.C (eat_whitespace): new method
52         * texparser.C (getArg): use always curr_token().asInput()
53         * texparser.[Ch] (isParagraph): new method
54         * texparser.C (skip_spaces): handle "\n +\n" correctly
55         * texparser.[Ch] (asMode): remove, since it is unused
56
57 2004-05-27  Lars Gullik Bjonnes  <larsbj@gullik.net>
58
59         * Makefile.am (BUILT_SOURCES): move lengthcommon.C from here...
60         (tex2lyx_SOURCES): ... to here
61
62         * lengthcommon.C: new file
63
64 2004-04-30  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
65
66         * preamble.C: recognize \lyxdot
67         * text.C (parse_text): translate \lyxdot in graphics file names
68         * text.C (handle_ert): translate '\n' (fixes %-newline combinations
69         in \def commands)
70
71 2004-03-26  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
72
73         * text.C (parse_text): handle vspaces like '1cm' correctly
74
75 2004-02-01  Lars Gullik Bjonnes  <larsbj@gullik.net>
76
77         * text.C (parse_box): "\\" -> '\\' in calls to contains.
78
79 2004-01-07  Lars Gullik Bjonnes  <larsbj@gullik.net>
80
81         * text.C: reorder the using statements.
82         (translate_len): remove usage of a uninitialized variable.
83         (isLayout): make it adaptable and constify operator()
84         (findLayout): reformat slightly and dont use the same var for
85         different things.
86
87 2004-01-06  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
88
89         * text.C: fix status tag output for ERT inset
90
91 2003-12-17  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
92
93         * preamble.C: Change file format from 225 to 228
94         * text.C: Convert minipages and parboxes to box insets
95         * text.C: Changes for format 228 (see ../../development/FORMAT)
96         * text.C: Add lyxgreyedout environment
97         * context.[Ch]: New function Context::add_extra_stuff()
98
99 2003-12-08  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
100
101         * text.C: Use the new VSpace inset (fixes a bug with added_space top)
102         * text.C: Fix \= in tabbing env again
103         * text.C: Fix invocation of parse_command()
104
105 2003-11-18  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
106
107         * tex2lyx.C:
108         * tex2lyx.h:
109         * text.C: Read a list of commands and their arguments from a reLyX
110         compatible syntax file in order to parse optional argumnts correctly.
111         * preamble.C:
112         * table.C:
113         * text.C:
114         * tex2lyx.C:
115         * texparser.C
116         * math.C: change size() to !empty() where it was used as bool
117
118 2003-11-03  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
119
120         * math.C:
121         * table.C:
122         * text.C:
123         * context.[Ch]: New functions Context::set_item(),
124         Context::new_paragraph(ostream & os) and Context::atParagraphStart()
125         to make Context usage more explicit
126         * texparser.[Ch]: Rework Parser::tokenize (see comment in texparser.h)
127         * table.C:
128         * math.C:
129         * texparser.C: Don't silently drop comments
130         * texparser.C: Token::asInput() does not append a space anymore
131         * texparser.[Ch]: Renamed Parser::prev_token() to Parser::curr_token().
132         New function Parser::prev_token() returns now really the previous token
133         * Context.[Ch]:
134         * text.C: Convert known vspaces at paragraph start to \\added_space_top
135         * preamble.C: Don't put out newlines twice.
136         * text.C: Fix minipage position bug
137         * text.C: Fix \labelwidthstring bug
138         * text.C: Recognize alignment environments
139         * text.C: Fix a few cases of incorrect context usage, resulting
140         in missing or superflous \begin_layout / \end_laout lines.
141
142 2003-10-23  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
143
144         * math.C:
145         * preamble.C:
146         * table.C:
147         * tex2lyx.C:
148         * tex2lyx.h:
149         * texparser.C:
150         * texparser.h:
151         * text.C:
152         - add \text{}, \intertext{} and \fbox{} support in mathmode.
153         - add support for some math environments like displaymath
154         - allow parsing of partial documents (for inclusion with \input).
155         - steal commandline switches -c and -f from reLyX to support the
156                      previous point
157         - add support for lengths with comma (4,5cm instead of 4.5cm) to
158                      minipage environments. Handle \textwidth etc. without factor
159         - rearrange active_environments.[push,pop]back() so that they are always
160                called in pairs
161         - write an error message if layout file could not be found.
162         - convert \begin{comment}...\end{comment} to comment inset
163         - handle \= correctly inside tabbing environments
164         - fix multicolumn vertical rule bug in tables
165         - add missing \includegraphics options
166         - output minipages with latex lengths as ERT, since lyx cannot handle them
167         - recognize \textsl{}
168         - remove duplicate \ldots
169         - recognize \bibliographystyle and \bibliography
170         - handle \psfrag{ps-text}[ps-pos][tex-pos]{tex-text} correctly
171         - handle environments in table cells correctly
172         - add missing -userdir and -sysdir commandline switches
173         - recognize start of appendix
174         - handle optional arg to \item as ERT in itemize environment, since LyX
175                      does not support it directly
176
177 2003-10-18  Lars Gullik Bjønnes  <larsbj@gullik.net>
178
179         * Makefile.am (BUILT_SOURCES): use this instead of "linked_files"
180         and the link_files target. make the BUILT_SOURCES dependency
181         automatically link the needed files.
182
183 2003-10-14  Angus Leeming  <leeming@lyx.org>
184
185         * Makefile.am: move boost.C from the linked_files section
186         to the tex2lyx_SOURCES section.
187
188         * boost.C: new file. Simpler than the version in the main lyx source.
189         No reference to the emergencyCleanup stuff.
190
191         * tex2lyx.C: remove emergencyCleanup() stuff.
192
193 2003-10-08  Angus Leeming  <leeming@lyx.org>
194
195         Fix doxygen warnings.
196
197         * Spacing.h: \file Spacing.h -> \file tex2lyx/Spacing.h
198         * gettext.C: \file gettext.C -> \file tex2lyx/gettext.C
199         * gettext.h: \file gettext.h -> \file tex2lyx/gettext.h
200         * lyxfont.C: \file lyxfont.C -> \file tex2lyx/lyxfont.C
201         * lyxfont.h: \file lyxfont.h -> \file tex2lyx/lyxfont.h
202         * text.C:    \file text.C    -> \file tex2lyx/text.C
203
204 2003-09-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
205
206         * tex2lyx.C: adjust for new debugstream.
207
208 2003-09-08  Angus Leeming  <leeming@lyx.org>
209
210         * math.C:
211         * preamble.C:
212         * table.C:
213         * tex2lyx.C:
214         * texparser.C: remove redundant using directives.
215
216 2003-08-19  Angus Leeming  <leeming@lyx.org>
217
218         * most files: add 'standard conformant' header blurb.
219         Also add Jean-Marc as an author where appropriate.
220
221 2003-08-08  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
222
223         * Makefile.am (EXTRA_DIST):
224         * test-insets.tex: new file. Describes the insets and special
225         characters that tex2lyx handles.
226
227         * text.C (parse_text): support \vref, \vpageref (only one optional
228         argument), \prettyref; add support for include inset; when \\ has
229         optional arguments, use ERT; support also \listoffigures,
230         \listoftables, and \listof{xxx} for existing float types;
231         translate lenghts properly for graphics inset.
232         (parse_environment): add support for minipages
233
234         * text.C (translate_len): A simple function to translate a latex
235         length to something lyx can understand. Not perfect, but rather
236         best-effort.
237
238 2003-08-07  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
239
240         * text.C (parse_text): special handling for \item and \bibitem
241         macros
242
243         * context.C (begin_layout, end_layout, begin_deeper, end_deeper):
244         tiny helper functions
245         (check_layout):
246         (check_end_deeper): add special handling for the case of a normal
247         paragraph inside a list-like environment.
248
249         * test-structure.tex: add more stuff there
250
251 2003-08-05  Alfredo Braunstein  <abraunst@libero.it>
252
253         * context.h: compile fix
254
255 2003-08-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
256
257         * text.C: some tweaks to make nesting work. What still does not
258         work is nesting a standard paragraph in a list.
259
260         * test-structure.tex: update a bit
261
262         * context.C (check_deeper, check_end_deeper): new methods to
263         handle the *_deeper stuff
264
265         * preamble.C (end_preamble): small tweaks
266
267 2003-08-03  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
268
269         * text.C: update to use Context struct, and more notably:
270         (cap, check_layout, check_end_layout): remove
271         (parse_text_snippet): new thin wrapper around parse_text, used for
272         things like \textrm{...}
273         (parse_environment): remove existing depth handling code, which is
274         handled transparently by the Context struct; make unknown
275         environments work (again?) through ERT
276
277         * test-structure.tex: new test file, used to try out various
278         layouts combinations
279
280         * tex2lyx.C:
281         * tex2lyx.h:
282         * table.C: update to use Context struct
283
284         * context.[Ch]: new helper struct which is passed to parse_*
285         functions and handles *_layout and *_deeper tags output
286
287         * Makefile.am (EXTRA_DIST): new file test-structure.tex
288         (tex2lyx_SOURCES): add context.[Ch]
289
290 2003-07-30  Angus Leeming  <leeming@lyx.org>
291
292         * Makefile.am: Hide the fact that we re-generate those symbolic links
293         brainlessly.
294
295 2003-07-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
296
297         * text.C (check_layout): \layout -> \begin_layout
298         (parse_text_in_inset): convenience function
299
300         * tex2lyx.C (main): \the_end -> \end_document
301
302         * preamble.C (end_preamble): update version number to 225
303
304         * text.C (parse_text): replace test on "lyxcode" with test on
305         LyXLayout::freespacing.
306         (check_end_layout): new function, used to check whether we need to
307         add an \end_layout
308
309 2003-07-28  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
310
311         * tex2lyx.C (clean_layouts): remove
312
313         * text.C: output lazily the \layout commands using the
314         check_layout function. Remove all explicit \layout tags.
315         (parse_text): pass an optional parameter 'layout'
316         (handle_par): remove
317
318         * text.C (output_command_layout): renamed from output_layout
319         (parse_environment): new method containing a part of parse_text
320
321         * tex2lyx.C:
322         * preamble.C:
323         * table.C: \begin_layout -> \layout. We are not quite ready for
324         that yet
325
326 2003-07-28  José Matos  <jamatos@lyx.org>
327
328         * text.C:
329         * tex2lyx.C:
330         * preamble.C:
331         * table.C: \layout -> \begin_layout.
332
333 2003-07-28  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
334
335         * text.C (parse_text): read environment from layout file too. Now,
336         all layout entries are supported (but many hacks remain); note
337         that the nesting support is broken and will have to be completely
338         redone
339         (parse_text): basic support for english double quotes
340
341         * table.C (handle_tabular): make the output more similar to LyX
342         and fix a little
343
344         * text.C (output_layout): fix handling of optional argument
345         (parse_text): small tweaks to make output format closer to lyx
346         format; support \tableofcontents; fix/improve support for various
347         special characters
348
349 2003-07-27  Angus Leeming  <leeming@lyx.org>
350
351         * Makefile.am: remove unused graphics_link_files cruft.
352         Thanks, Kayvan!
353
354 2003-07-27  Angus Leeming  <leeming@lyx.org>
355
356         * tex2lyx.C: add Debug::ANY hack.
357
358         * text.C: remove hardcoded command layouts.
359
360 2003-07-26  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
361
362         * text.C (parse_text): fix handling of \LaTeXe macro
363
364 2003-07-26  Angus Leeming  <leeming@lyx.org>
365
366         * Spacing.h:
367         * lyxfont.[Ch]:
368         * gettext.[Ch]: minimal (near empty) analogues of the real LyX
369         files; enough to get LyXTextClass and LyXLayout to compile without
370         needing to store any real information about Spacing or Font.
371
372         * Makefile.am: add these files above and also include a minimal
373         chunk of the main lyx source tree as soft links in order to add in
374         LyXTextClass and LyXLayout.
375
376         * .cvsignore: add all these soft links.
377
378         * preamble.C (end_preamble): passed a LyXTextClass arg.
379         (parse_preamble): returns the document LyXTextClass.
380
381         * tabular.C (handle_tabular): passed a LyXTextClass arg. In turn
382         pass it to parse_text.
383
384         * tex2lyx.C: add some global vars, build_lyxdir et al. For now,
385         give them some horrible hard-coded value.
386         (main): receive a LyXTextClass var from parse_preamble and pass it
387         on to parse_text.
388
389         * text.C (parse_text): receives a LyXTextClass arg. Use it to
390         remove the hard-coded handling of floats and instead check the
391         textclass for its existence. Also handle wide floats naturally.
392
393         * tex2lyx.h: associated changes to function declarations.
394
395 2003-07-18  Lars Gullik Bjønnes  <larsbj@gullik.net>
396
397         * texparser.C (catInit): same warning avoidance as in math_parser.C
398         (setCatCode): cast to safe type
399         (getCatCode): ditto
400
401 2003-05-17  Joao Luis M. Assirati  <assirati@fma.if.usp.br>
402
403         * texparser.C: fix paragraph parsing after comment
404
405 2003-04-29  André Pönitz  <poenitz@gmx.net>
406
407         * Makefile.am:
408           texparser.h: whitespace
409
410 2003-04-20  Kayvan A. Sylvan  <kayvan@sylvan.com>
411
412         * table.C: use string::erase(), not string::clear() to enable older
413         versions of gcc to compile the code.
414
415 2003-04-17  André Pönitz  <poenitz@gmx.net>
416
417         * math.C:
418           preamble.C:
419           table.C:
420     text.C: new files
421
422         * table.C: better table handling
423
424         * tex2lyx.C: lots of small changes
425
426 2003-02-25  Angus Leeming  <leeming@lyx.org>
427
428         * .cvsignore: ignore *.lo and libtexparser.la.
429
430 2003-02-20  Angus Leeming  <leeming@lyx.org>
431
432         * tex2lyx.C: swap <sstream> for "Lsstream.h".
433
434 2003-02-11  Angus Leeming  <leeming@lyx.org>
435
436         * tex2lyx.C (handle_opt): prevent infinite loop if opts is empty.
437         (handle_package): new function, factoring code out of Parser::parse.
438         (trim): copied across from support/lstrings.C
439         (Parser::parse): handle '\usepackage{foo, bar}'.
440
441 2003-02-11  André Pönitz  <poenitz@gmx.net>
442
443         * tex2lyx.C: first shot at real code
444
445 2003-02-11  Angus Leeming  <leeming@lyx.org>
446
447         * .cvsignore: new file.
448
449 2003-02-10  Angus Leeming  <leeming@lyx.org>
450
451         * Makefile.am: empty, dummy file so that autogen.sh and configure
452         are happy.