New in Writer2LaTeX 0.3.3a:

  - support for other documentclasses than article
  - support for eurosym.sty
  - support for tipa.sty (incomplete)
  - color.sty is now optional
  - cleaned up configuration of formatting
  - improved export of list formatting (can now create "Writer style" lists)

The new features are available in the configuration:
  
New options to support different \documentclass:
The documentclass to use and the mapping of outline levels in Writer to LaTeX
sections is specified as follows: 
  <option name="documentclass" value="article" />
  <heading-map max-level="5">
    <heading-level-map writer-level="1" name="section" level="1" />
    <heading-level-map writer-level="2" name="subsection" level="2" />
    <heading-level-map writer-level="3" name="subsubsection" level="3" />
    <heading-level-map writer-level="4" name="paragraph" level="4" />
    <heading-level-map writer-level="5" name="subparagraph" level="5" />
  </heading-map>
These are the defaults. For the book class you would use
  <option name="documentclass" value="book" />
  <heading-map max-level="5">
    <heading-level-map writer-level="1" name="chapter" level="0" />
    <heading-level-map writer-level="2" name="section" level="1" />
    <heading-level-map writer-level="3" name="subsection" level="2" />
    <heading-level-map writer-level="4" name="subsubsection" level="3" />
    <heading-level-map writer-level="5" name="paragraph" level="4" />
    <heading-level-map writer-level="6" name="subparagraph" level="5" />
  </heading-map>

Support for eurosym.sty:  
  <option name="use_eurosym" value="false" />
  
Support for tipa.sty (not completed yet):  
  <option name="use_tipa" value="false" />

Using color.sty is now optional:
  <option name="use_color" value="true" />
  
The options to control formatting have been simplified. The options
main_paragraph_style, ignore_unknown_paragraph_styles,
hard_paragraph_formatting, ignore_list_label_styles, ignore_heading_styles and
ignore_page_formatting have been replaced by:

<option name="character_formatting" value="convert_all" />
Values are
  convert_all to convert all character formatting
  ignore_fontsize to ignore hard changing of font size
  ignore_hard to ignore all hard character formatting
  ignore_all to ignore all character formatting

<option name="paragraph_formatting" value="convert_all" />
Values are
  convert_all to convert all paragraph formatting
  ignore_hard to ignore hard paragraph formatting
  ignore_all to ignore all paragraph formatting

<option name="list_formatting" value="convert_all" />
Values are
  convert_all to convert all list formatting
     (do not combine this with paragraph_formatting=ignore_all)
  convert_numbering to use standard lists, but convert labels
  ignore_all to use standard lists with standard labels

<option name="heading_formatting" value="convert_all" />
Values are
  convert_all to convert all formatting of headings
  convert_numbering to use standard headings, but convert numbering
  ignore_all to use standard headings with standard numbering

<option name="page_formatting" value="convert_all" />
Values are
  convert_all to convert all page formatting
  convert_header_footer to convert header and footer only
  ignore_all to ignore page formatting

<option name="ignore_empty_paragraphs" value="false" />
  to ignore empty paragraphs

New option to add debug info to the .tex file:
  <option name="debug" value="true" />
  
Improved style-maps: You can now specify LaTeX code to put before/after a
block of paragraphs. See article.xml for examples.
Also the template LaTeX article is improved to take advatage of the new features.
