w2l: Support some new StarMath constructs

git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@137 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
henrikjust 2012-03-05 15:18:21 +00:00
parent 568d0d01f8
commit 97f311367a
2 changed files with 24 additions and 2 deletions

View file

@ -2,6 +2,9 @@ Changelog for Writer2LaTeX version 1.0 -> 1.2
---------- version 1.1.9 ----------
[w2l] Added support for the new StarMath keywords nospace (ignored) and prec, nprec, succ, nsucc, preccurlyeq, succcurlyeq,
precsim, succsim (converted)
[w2x] The minimum year in the date dialog (EPUB export) has been changed from 1900 to 1800
[w2x] Bugfix: Do not create an empty footnotes page if footnotes are exported as endnotes, and the document contains no footnotess

View file

@ -18,7 +18,7 @@
*
* Copyright: 2002-2012 by Henrik Just
*
* Version 1.2 (2012-02-27)
* Version 1.2 (2012-03-05)
*
* All Rights Reserved.
*/
@ -321,6 +321,15 @@ class Token{
public static final Token LDBRACKET=new Token();
public static final Token RDBRACKET=new Token();
public static final Token UNKNOWN=new Token();
public static final Token NOSPACE=new Token();
public static final Token PREC=new Token();
public static final Token NPREC=new Token();
public static final Token SUCC=new Token();
public static final Token NSUCC=new Token();
public static final Token PRECCURLYEQ=new Token();
public static final Token SUCCCURLYEQ=new Token();
public static final Token PRECSIM=new Token();
public static final Token SUCCSIM=new Token();
}
// enumerate Token groups
@ -591,7 +600,17 @@ class SmTokenTable{
new SmTokenTableEntry( "wideslash", Token.WIDESLASH, "", TGroup.PRODUCT, 0 ),
new SmTokenTableEntry( "widevec", Token.WIDEVEC, "\\overrightarrow", TGroup.ATTRIBUT, 5),
new SmTokenTableEntry( "wp" , Token.WP, "\\wp ", TGroup.STANDALONE, 5),
new SmTokenTableEntry( "yellow", Token.YELLOW, "yellow", TGroup.COLOR, 0)};
new SmTokenTableEntry( "yellow", Token.YELLOW, "yellow", TGroup.COLOR, 0),
new SmTokenTableEntry( "nospace", Token.NOSPACE, "", TGroup.ATTRIBUT, 0),
// nospace is flagged as standalone in parse.cxx for some reason, but is really treated like an attribute
new SmTokenTableEntry( "prec", Token.PREC, "\\prec ", TGroup.RELATION, 0),
new SmTokenTableEntry( "nprec", Token.NPREC, "\\nprec ", TGroup.RELATION, 0),
new SmTokenTableEntry( "succ", Token.SUCC, "\\succ ", TGroup.RELATION, 0),
new SmTokenTableEntry( "nsucc", Token.NSUCC, "\\nsucc ", TGroup.RELATION, 0),
new SmTokenTableEntry( "preccurlyeq", Token.PRECCURLYEQ, "\\preccurlyeq ", TGroup.RELATION, 0),
new SmTokenTableEntry( "succcurlyeq", Token.SUCCCURLYEQ, "\\succcurlyeq ", TGroup.RELATION, 0),
new SmTokenTableEntry( "precsim", Token.PRECSIM, "\\precsim ", TGroup.RELATION, 0),
new SmTokenTableEntry( "succsim", Token.SUCCSIM, "\\succsim ", TGroup.RELATION, 0)};
static final SmTokenTableEntry[] symbols=
{new SmTokenTableEntry("ALPHA",Token.SPECIAL,"A",5),