EPUB 3 support

git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@240 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
henrikjust 2015-05-05 08:55:48 +00:00
parent d141619053
commit 9c99999ad1
16 changed files with 154 additions and 64 deletions

View file

@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
* Version 1.6 (2015-04-14)
* Version 1.6 (2015-05-05)
*
*/
@ -33,7 +33,7 @@ public class ConverterFactory {
// Version information
private static final String VERSION = "1.5.2";
private static final String DATE = "2015-04-14";
private static final String DATE = "2015-05-05";
/** Return the Writer2LaTeX version in the form
* (major version).(minor version).(patch level)<br/>

View file

@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
* Copyright: 2002-2010 by Henrik Just
* Copyright: 2002-2015 by Henrik Just
*
* All Rights Reserved.
*
* Version 1.2 (2010-03-28)
* Version 1.6 (2015-05-05)
*
*/
@ -62,4 +62,10 @@ public interface OutputFile {
* @return true if this document is a master document
*/
public boolean isMasterDocument();
/** Test whether this document contains mathematical formulas
*
* @return true if the document contains formulas
*/
public boolean containsMath();
}