diff --git a/src/main/java/org/openoffice/da/comp/writer2latex/ApplicationsDialog.java b/src/main/java/org/openoffice/da/comp/writer2latex/ApplicationsDialog.java
deleted file mode 100644
index 21be29b..0000000
--- a/src/main/java/org/openoffice/da/comp/writer2latex/ApplicationsDialog.java
+++ /dev/null
@@ -1,480 +0,0 @@
-/************************************************************************
- *
- * ApplicationsDialog.java
- *
- * Copyright: 2002-2015 by Henrik Just
- *
- * This file is part of Writer2LaTeX.
- *
- * Writer2LaTeX is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Writer2LaTeX is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Writer2LaTeX. If not, see
- * @return returns true if the operation succeeded
- * @param regKey the registryKey
- * @see com.sun.star.comp.loader.JavaLoader
- */
- public static boolean __writeRegistryServiceInfo(XRegistryKey regKey) {
- return
- FactoryHelper.writeRegistryServiceInfo(W2LExportFilter.__implementationName,
- W2LExportFilter.__serviceName, regKey) &
- FactoryHelper.writeRegistryServiceInfo(LaTeXOptionsDialog.__implementationName,
- LaTeXOptionsDialog.__serviceName, regKey) &
- FactoryHelper.writeRegistryServiceInfo(W2LStarMathConverter.__implementationName,
- W2LStarMathConverter.__serviceName, regKey) &
- FactoryHelper.writeRegistryServiceInfo(ConfigurationDialog.__implementationName,
- ConfigurationDialog.__serviceName, regKey) &
- FactoryHelper.writeRegistryServiceInfo(Writer2LaTeX.__implementationName,
- Writer2LaTeX.__serviceName, regKey) &
- FactoryHelper.writeRegistryServiceInfo(TeXImportFilter.__implementationName,
- TeXImportFilter.__serviceName, regKey) &
- FactoryHelper.writeRegistryServiceInfo(TeXDetectService.__implementationName,
- TeXDetectService.__serviceName, regKey) &
- FactoryHelper.writeRegistryServiceInfo(ApplicationsDialog.__implementationName,
- ApplicationsDialog.__serviceName, regKey) &
- FactoryHelper.writeRegistryServiceInfo(BibliographyDialog.__implementationName,
- BibliographyDialog.__serviceName, regKey) &
- FactoryHelper.writeRegistryServiceInfo(LogViewerDialog.__implementationName,
- LogViewerDialog.__serviceName, regKey) &
- FactoryHelper.writeRegistryServiceInfo(BibTeXDialog.__implementationName,
- BibTeXDialog.__serviceName, regKey);
- }
-}
diff --git a/src/main/java/org/openoffice/da/comp/writer2latex/W2LStarMathConverter.java b/src/main/java/org/openoffice/da/comp/writer2latex/W2LStarMathConverter.java
deleted file mode 100644
index 2df66b8..0000000
--- a/src/main/java/org/openoffice/da/comp/writer2latex/W2LStarMathConverter.java
+++ /dev/null
@@ -1,124 +0,0 @@
-/************************************************************************
- *
- * W2LStarMathConverter.java
- *
- * Copyright: 2002-2008 by Henrik Just
- *
- * This file is part of Writer2LaTeX.
- *
- * Writer2LaTeX is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Writer2LaTeX is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Writer2LaTeX. If not, see BibMark
objects
- */
-public class BibTeXReader {
-
- private File file;
- private String sEncoding;
- private MapBibTeXReader
based on a file
- *
- * @param file the file to read
- * @param sEncoding the character encoding of the file
- * @throws IOException if any error occurs reading the file
- * @throws ParseException if any error occurs interpreting the contents of the file
- */
- public BibTeXReader(File file, String sEncoding) throws IOException, ParseException {
- this.file = file;
- this.sEncoding = sEncoding;
- reload();
- }
-
- /** Parse the contents of the file, replacing any previous entries in this BibTeXReader
- */
- public void reload() throws IOException, ParseException {
- entries = new HashMapBibTeXReader
- *
- * @return the file
- */
- public File getFile() {
- return file;
- }
-
- /** Get the entries of this BibTeX file
- *
- * @return the entries
- */
- public MapConfigurationDialog
*/
- public ConfigurationDialog(XComponentContext xContext) {
- super(xContext);
-
- pageHandlers.put("Documentclass", new DocumentclassHandler());
- pageHandlers.put("Headings", new HeadingsHandler());
- pageHandlers.put("Styles", new StylesHandler());
- pageHandlers.put("Characters", new CharactersHandler());
- pageHandlers.put("Fonts", new FontsHandler());
- pageHandlers.put("Pages", new PagesHandler());
- pageHandlers.put("Tables", new TablesHandler());
- pageHandlers.put("Figures", new FiguresHandler());
- pageHandlers.put("TextAndMath", new TextAndMathHandler());
- }
-
- // Implement remaining method from XContainerWindowEventHandler
- public String[] getSupportedMethodNames() {
- String[] sNames = {
- "NoPreambleChange", // Documentclass
- "MaxLevelChange", "WriterLevelChange", "NoIndexChange", // Headings
- "StyleFamilyChange", "StyleNameChange", "NewStyleClick", "DeleteStyleClick", "AddNextClick",
- "RemoveNextClick", "LoadDefaultsClick", // Styles
- "UseSoulChange", "FormattingAttributeChange", "CustomAttributeChange", // Characters
- "ExportGeometryChange", "ExportHeaderAndFooterChange", // Pages
- "NoTablesChange", "UseSupertabularChange", "UseLongtableChange", // Tables
- "NoImagesChange", // Figures
- "MathSymbolNameChange", "NewSymbolClick", "DeleteSymbolClick",
- "TextInputChange", "NewTextClick", "DeleteTextClick" // Text and Math
- };
- return sNames;
- }
-
- // The page "Documentclass"
- // This page handles the options no_preamble, documentclass, global_options and the custom-preamble
- private class DocumentclassHandler extends PageHandler {
- @Override protected void setControls(DialogAccess dlg) {
- checkBoxFromConfig(dlg,"NoPreamble","no_preamble");
- textFieldFromConfig(dlg,"Documentclass","documentclass");
- textFieldFromConfig(dlg,"GlobalOptions","global_options");
- textFieldFromConfig(dlg,"CustomPreamble","custom-preamble");
- noPreambleChange(dlg);
- }
-
- @Override protected void getControls(DialogAccess dlg) {
- checkBoxToConfig(dlg,"NoPreamble", "no_preamble");
- textFieldToConfig(dlg,"Documentclass","documentclass");
- textFieldToConfig(dlg,"GlobalOptions","global_options");
- textFieldToConfig(dlg,"CustomPreamble","custom-preamble");
- }
-
- @Override protected boolean handleEvent(DialogAccess dlg, String sMethod) {
- if (sMethod.equals("NoPreambleChange")) {
- noPreambleChange(dlg);
- return true;
- }
- return false;
- }
-
- private void noPreambleChange(DialogAccess dlg) {
- boolean bPreamble = !dlg.getCheckBoxStateAsBoolean("NoPreamble");
- dlg.setControlEnabled("DocumentclassLabel",bPreamble);
- dlg.setControlEnabled("Documentclass",bPreamble);
- dlg.setControlEnabled("GlobalOptionsLabel",bPreamble);
- dlg.setControlEnabled("GlobalOptions",bPreamble);
- dlg.setControlEnabled("CustomPreambleLabel",bPreamble);
- dlg.setControlEnabled("CustomPreamble",bPreamble);
- }
- }
-
- // The page "Headings"
- // This page handles the heading map as well as the options no_index, use_titlesec and use_titletoc
- private class HeadingsHandler extends PageHandler {
- ComplexOption headingMap = new ComplexOption(); // Cached heading map
- short nCurrentWriterLevel = -1; // Currently displayed level
-
- @Override protected void setControls(DialogAccess dlg) {
- // Load heading map from config
- headingMap.clear();
- headingMap.copyAll(config.getComplexOption("heading-map"));
- nCurrentWriterLevel = -1;
-
- // Determine and set the max level (from 0 to 10)
- short nMaxLevel = 0;
- while(nMaxLevel<10 && headingMap.containsKey(Integer.toString(nMaxLevel+1))) {
- nMaxLevel++;
- }
- dlg.setListBoxSelectedItem("MaxLevel", nMaxLevel);
-
- maxLevelChange(dlg);
-
- // Get other controls from config
- checkBoxFromConfig(dlg,"UseTitlesec","use_titlesec");
-
- checkBoxFromConfig(dlg,"NoIndex","no_index");
- checkBoxFromConfig(dlg,"UseTitletoc","use_titletoc");
-
- noIndexChange(dlg);
- }
-
- @Override protected void getControls(DialogAccess dlg) {
- updateHeadingMap(dlg);
-
- // Save heading map to config
- config.getComplexOption("heading-map").clear();
- int nMaxLevel = dlg.getListBoxSelectedItem("MaxLevel");
- for (int i=1; i<=nMaxLevel; i++) {
- String sLevel = Integer.toString(i);
- config.getComplexOption("heading-map").copy(sLevel,headingMap.get(sLevel));
- }
-
- // Save other controls to config
- checkBoxToConfig(dlg,"UseTitlesec","use_titlesec");
- checkBoxToConfig(dlg,"NoIndex","no_index");
- checkBoxToConfig(dlg,"UseTitletoc","use_titletoc");
- }
-
- @Override protected boolean handleEvent(DialogAccess dlg, String sMethod) {
- if (sMethod.equals("MaxLevelChange")) {
- maxLevelChange(dlg);
- return true;
- }
- else if (sMethod.equals("WriterLevelChange")) {
- writerLevelChange(dlg);
- return true;
- }
- else if (sMethod.equals("NoIndexChange")) {
- noIndexChange(dlg);
- return true;
- }
- return false;
- }
-
- private void maxLevelChange(DialogAccess dlg) {
- // Remember current writer level and clear it
- short nPreviousWriterLevel = nCurrentWriterLevel;
- dlg.setListBoxSelectedItem("WriterLevel", (short) -1);
-
- // Adjust the presented writer levels to the max level
- short nMaxLevel = dlg.getListBoxSelectedItem("MaxLevel");
- String[] sWriterLevels = new String[nMaxLevel];
- for (int i=0; iCustomSymbolNameProvider
- *
- * @param xContext the component context providing access to the api
- */
- public CustomSymbolNameProvider(XComponentContext xContext) {
- names = new HashSetTeXDetectService
- *
- * @param xContext The Component Context
- */
- public TeXDetectService( XComponentContext xContext ) {
- m_xContext = xContext;
- }
-
- // Implement com.sun.star.lang.XServiceInfo:
- public String getImplementationName() {
- return __implementationName;
- }
-
- public boolean supportsService( String sService ) {
- int len = m_serviceNames.length;
-
- for(int i=0; i < len; i++) {
- if (sService.equals(m_serviceNames[i]))
- return true;
- }
- return false;
- }
-
- public String[] getSupportedServiceNames() {
- return m_serviceNames;
- }
-
- // Implement XExtendedFilterDetection
- public String detect(PropertyValue[][] mediaDescriptor) {
- // Read the media properties
- String sURL = null;
- String sTypeName = null;
- if (mediaDescriptor.length>0) {
- int nLength = mediaDescriptor[0].length;
- for (int i=0; iTeXImportFilter
- *
- * @param xContext The Component Context
- */
- public TeXImportFilter( XComponentContext xContext ) {
- m_xContext = xContext;
- m_sFilterName = "";
- m_xTargetDoc = null;
- m_nState = FILTERPROC_STOPPED;
- }
-
- // Implement com.sun.star.lang.XServiceInfo:
- public String getImplementationName() {
- return __implementationName;
- }
-
- public boolean supportsService( String sService ) {
- int len = m_serviceNames.length;
-
- for(int i=0; i < len; i++) {
- if (sService.equals(m_serviceNames[i]))
- return true;
- }
- return false;
- }
-
- public String[] getSupportedServiceNames() {
- return m_serviceNames;
- }
-
- // The following methods may be called from multiple threads (e.g. if someone wants to cancel the filtering),
- // thus all access to class members must be synchronized
-
- // Implement XInitialization:
- public void initialize( Object[] arguments ) throws com.sun.star.uno.Exception {
- if (arguments.length>0) {
- // The first argument contains configuration data, from which we extract the filter name for further reference
- // We need this to know which flavour of TeX we're supposed to handle
- PropertyValue[] config = (PropertyValue[]) arguments[0];
- int nLen = config.length;
- for (int i=0; iJavaLoader
- *
- * @return returns a XSingleServiceFactory
for creating the
- * component
- *
- * @param implName the name of the implementation for which a
- * service is desired
- * @param multiFactory the service manager to be used if needed
- * @param regKey the registryKey
- *
- * @see com.sun.star.comp.loader.JavaLoader
- */
- public static XSingleServiceFactory __getServiceFactory(String implName,
- XMultiServiceFactory multiFactory, XRegistryKey regKey) {
- xMultiServiceFactory = multiFactory;
- XSingleServiceFactory xSingleServiceFactory = null;
- if (implName.equals(W2LExportFilter.class.getName()) ) {
- xSingleServiceFactory = FactoryHelper.getServiceFactory(W2LExportFilter.class,
- W2LExportFilter.__serviceName,
- multiFactory,
- regKey);
- }
- else if (implName.equals(LaTeXOptionsDialog.__implementationName)) {
- xSingleServiceFactory = FactoryHelper.getServiceFactory(LaTeXOptionsDialog.class,
- LaTeXOptionsDialog.__serviceName,
- multiFactory,
- regKey);
- }
- else if (implName.equals(W2LStarMathConverter.__implementationName)) {
- xSingleServiceFactory = FactoryHelper.getServiceFactory(W2LStarMathConverter.class,
- W2LStarMathConverter.__serviceName,
- multiFactory,
- regKey);
- }
- else if (implName.equals(ConfigurationDialog.__implementationName)) {
- xSingleServiceFactory = FactoryHelper.getServiceFactory(ConfigurationDialog.class,
- ConfigurationDialog.__serviceName,
- multiFactory,
- regKey);
- }
- else if (implName.equals(Writer2LaTeX.__implementationName) ) {
- xSingleServiceFactory = FactoryHelper.getServiceFactory(Writer2LaTeX.class,
- Writer2LaTeX.__serviceName,
- multiFactory,
- regKey);
- }
- else if (implName.equals(TeXImportFilter.__implementationName) ) {
- xSingleServiceFactory = FactoryHelper.getServiceFactory(TeXImportFilter.class,
- TeXImportFilter.__serviceName,
- multiFactory,
- regKey);
- }
- else if (implName.equals(TeXDetectService.__implementationName) ) {
- xSingleServiceFactory = FactoryHelper.getServiceFactory(TeXDetectService.class,
- TeXDetectService.__serviceName,
- multiFactory,
- regKey);
- }
- else if (implName.equals(ApplicationsDialog.__implementationName) ) {
- xSingleServiceFactory = FactoryHelper.getServiceFactory(ApplicationsDialog.class,
- ApplicationsDialog.__serviceName,
- multiFactory,
- regKey);
- }
- else if (implName.equals(BibliographyDialog.__implementationName) ) {
- xSingleServiceFactory = FactoryHelper.getServiceFactory(BibliographyDialog.class,
- BibliographyDialog.__serviceName,
- multiFactory,
- regKey);
- }
- else if (implName.equals(LogViewerDialog.__implementationName) ) {
- xSingleServiceFactory = FactoryHelper.getServiceFactory(LogViewerDialog.class,
- LogViewerDialog.__serviceName,
- multiFactory,
- regKey);
- }
- else if (implName.equals(BibTeXDialog.__implementationName) ) {
- xSingleServiceFactory = FactoryHelper.getServiceFactory(BibTeXDialog.class,
- BibTeXDialog.__serviceName,
- multiFactory,
- regKey);
- }
-
- return xSingleServiceFactory;
- }
-
- /**
- * Writes the service information into the given registry key.
- * This method is called by the JavaLoader
- * UNOPublisher
,
- * LaTeXImporter
and the dialogs
- */
-public final class Writer2LaTeX extends WeakBase
- implements com.sun.star.lang.XServiceInfo,
- com.sun.star.frame.XDispatchProvider,
- com.sun.star.lang.XInitialization,
- com.sun.star.frame.XDispatch {
-
- private static final String PROTOCOL = "org.openoffice.da.writer2latex:"; //$NON-NLS-1$
-
- // From constructor+initialization
- private final XComponentContext m_xContext;
- private XFrame m_xFrame;
- private LaTeXUNOPublisher unoPublisher = null;
-
- public static final String __implementationName = Writer2LaTeX.class.getName();
- public static final String __serviceName = "com.sun.star.frame.ProtocolHandler"; //$NON-NLS-1$
- private static final String[] m_serviceNames = { __serviceName };
-
- public Writer2LaTeX( XComponentContext xContext ) {
- m_xContext = xContext;
- }
-
- // com.sun.star.lang.XInitialization:
- public void initialize( Object[] object )
- throws com.sun.star.uno.Exception {
- if ( object.length > 0 ) {
- // The first item is the current frame
- m_xFrame = (com.sun.star.frame.XFrame) UnoRuntime.queryInterface(
- com.sun.star.frame.XFrame.class, object[0]);
- }
- }
-
- // com.sun.star.lang.XServiceInfo:
- public String getImplementationName() {
- return __implementationName;
- }
-
- public boolean supportsService( String sService ) {
- int len = m_serviceNames.length;
-
- for( int i=0; i < len; i++) {
- if (sService.equals(m_serviceNames[i]))
- return true;
- }
- return false;
- }
-
- public String[] getSupportedServiceNames() {
- return m_serviceNames;
- }
-
-
- // com.sun.star.frame.XDispatchProvider:
- public com.sun.star.frame.XDispatch queryDispatch( com.sun.star.util.URL aURL,
- String sTargetFrameName, int iSearchFlags ) {
- if ( aURL.Protocol.compareTo(PROTOCOL) == 0 ) {
- if ( aURL.Path.compareTo("ProcessDocument") == 0 ) //$NON-NLS-1$
- return this;
- else if ( aURL.Path.compareTo("ViewLog") == 0 ) //$NON-NLS-1$
- return this;
- else if ( aURL.Path.compareTo("InsertBibTeX") == 0 ) //$NON-NLS-1$
- return this;
- }
- return null;
- }
-
- public com.sun.star.frame.XDispatch[] queryDispatches(
- com.sun.star.frame.DispatchDescriptor[] seqDescriptors ) {
- int nCount = seqDescriptors.length;
- com.sun.star.frame.XDispatch[] seqDispatcher =
- new com.sun.star.frame.XDispatch[seqDescriptors.length];
-
- for( int i=0; i < nCount; ++i ) {
- seqDispatcher[i] = queryDispatch(seqDescriptors[i].FeatureURL,
- seqDescriptors[i].FrameName,
- seqDescriptors[i].SearchFlags );
- }
- return seqDispatcher;
- }
-
-
- // com.sun.star.frame.XDispatch:
- public void dispatch( com.sun.star.util.URL aURL,
- com.sun.star.beans.PropertyValue[] aArguments ) {
- if ( aURL.Protocol.compareTo(PROTOCOL) == 0 ) {
- if ( aURL.Path.compareTo("ProcessDocument") == 0 ) { //$NON-NLS-1$
- process();
- return;
- }
- else if ( aURL.Path.compareTo("ViewLog") == 0 ) { //$NON-NLS-1$
- viewLog();
- return;
- }
- else if ( aURL.Path.compareTo("InsertBibTeX") == 0 ) { //$NON-NLS-1$
- insertBibTeX();
- return;
- }
- }
- }
-
- public void addStatusListener( com.sun.star.frame.XStatusListener xControl,
- com.sun.star.util.URL aURL ) {
- }
-
- public void removeStatusListener( com.sun.star.frame.XStatusListener xControl,
- com.sun.star.util.URL aURL ) {
- }
-
- // The actual commands...
-
- private void process() {
- createUNOPublisher();
- unoPublisher.publish(TargetFormat.latex);
- }
-
- private void viewLog() {
- createUNOPublisher();
- if (unoPublisher.documentSaved()) {
- // Execute the log viewer dialog
- try {
- Object[] args = new Object[1];
- args[0] = unoPublisher.getTargetPath()+unoPublisher.getTargetFileName();
- Object dialog = m_xContext.getServiceManager()
- .createInstanceWithArgumentsAndContext(
- "org.openoffice.da.writer2latex.LogViewerDialog", args, m_xContext); //$NON-NLS-1$
- XExecutableDialog xDialog = (XExecutableDialog)
- UnoRuntime.queryInterface(XExecutableDialog.class, dialog);
- if (xDialog.execute()==ExecutableDialogResults.OK) {
- // Closed with the close button
- }
- }
- catch (com.sun.star.uno.Exception e) {
- }
- }
- }
-
- private void insertBibTeX() {
- if (useExternalBibTeXFiles()) {
- createUNOPublisher();
- if (unoPublisher.documentSaved()) {
- // Execute the BibTeX dialog
- try {
- // The dialog needs the current frame and the path to the BibTeX directory
- Object[] args = new Object[2];
- args[0] = m_xFrame;
- args[1] = unoPublisher.getBibTeXDirectory().getPath();
- Object dialog = m_xContext.getServiceManager()
- .createInstanceWithArgumentsAndContext(
- "org.openoffice.da.writer2latex.BibTeXDialog", args, m_xContext); //$NON-NLS-1$
- XExecutableDialog xDialog = (XExecutableDialog)
- UnoRuntime.queryInterface(XExecutableDialog.class, dialog);
- if (xDialog.execute()==ExecutableDialogResults.OK) {
- // Closed with the close button
- }
- }
- catch (com.sun.star.uno.Exception e) {
- }
- }
- }
- else {
- MessageBox msgBox = new MessageBox(m_xContext, m_xFrame);
- msgBox.showMessage("Writer2LaTeX",Messages.getString("Writer2LaTeX.bibtexnotenabled")); //$NON-NLS-1$
- }
- }
-
- private boolean useExternalBibTeXFiles() {
- // Get the BibTeX settings from the registry
- RegistryHelper registry = new RegistryHelper(m_xContext);
- Object view;
- try {
- view = registry.getRegistryView(BibliographyDialog.REGISTRY_PATH, false);
- } catch (Exception e) {
- // Failed to get registry settings
- return false;
- }
- XPropertySet xProps = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class,view);
- return XPropertySetHelper.getPropertyValueAsBoolean(xProps, "UseExternalBibTeXFiles"); //$NON-NLS-1$
- }
-
- private void createUNOPublisher() {
- if (unoPublisher==null) {
- unoPublisher = new LaTeXUNOPublisher(m_xContext,m_xFrame,"Writer2LaTeX"); //$NON-NLS-1$
- }
- }
-
-}
\ No newline at end of file
diff --git a/src/main/java/org/openoffice/da/comp/writer2latex/messages.properties b/src/main/java/org/openoffice/da/comp/writer2latex/messages.properties
deleted file mode 100644
index 9d2bf78..0000000
--- a/src/main/java/org/openoffice/da/comp/writer2latex/messages.properties
+++ /dev/null
@@ -1,34 +0,0 @@
-ApplicationsDialog.configresults=Results of configuration
-ApplicationsDialog.failedtofind=Failed to find
-ApplicationsDialog.failedtofindmiktex=Failed to find MikTeX
-ApplicationsDialog.found=Found
-ApplicationsDialog.foundgsview=Found gsview
-ApplicationsDialog.foundmiktex=Found MikTeX
-ApplicationsDialog.miktexdefaultconfig=Writer2LaTeX has been configured to work if MikTeX is added to your path
-ApplicationsDialog.ok=OK
-ApplicationsDialog.pdfdefaultviewer=Using default application for PDF
-ApplicationsDialog.psdefaultviewer=Using default application for PostScript
-ApplicationsDialog.systemident=Your system identifies itself as
-ApplicationsDialog.usingdefaultapp=Using default application as
-ApplicationsDialog.version=version
-BibliographyDialog.nobibtexfiles=Warning: The selected directory does not contain any BibTeX files
-BibTeXDialog.allbibfieldsupdated=All bibliography fields were updated
-BibTeXDialog.alreadyexists=already exists
-BibTeXDialog.bibfieldsnotupdated=The following bibliography fields were not updated
-BibTeXDialog.errorreadingfile=There was an error reading this file
-BibTeXDialog.failedbibtexeditor=Error: Failed to open file with BibTeX editor
-BibTeXDialog.filenameempty=The file name is empty
-BibTeXDialog.nobibtexeditor=Error: No BibTeX editor was found
-BibTeXDialog.nobibtexfiles=No BibTeX files were found
-BibTeXDialog.noentries=This file does not contain any entries
-BibTeXDialog.noinformation=No information
-BibTeXDialog.thefile=The file
-ExternalApps.dviviewer=DVI Viewer
-ExternalApps.pdfviewer=PDF Viewer
-ExternalApps.psviewer=PostScript Viewer
-LaTeXUNOPublisher.error=Error
-LaTeXUNOPublisher.failedlatex=Failed to execute LaTeX - see log for details
-TeXify.dviviewerror=Error executing DVI viewer
-TeXify.pdfviewerror=Error executing PDF viewer
-TeXify.psviewerror=Error executing PostScript viewer
-Writer2LaTeX.bibtexnotenabled=Writer2LaTeX is not configured to use external BibTeX files for citations
diff --git a/src/main/java/org/openoffice/da/comp/writer2latex/messages_da.properties b/src/main/java/org/openoffice/da/comp/writer2latex/messages_da.properties
deleted file mode 100644
index aac8e96..0000000
--- a/src/main/java/org/openoffice/da/comp/writer2latex/messages_da.properties
+++ /dev/null
@@ -1,34 +0,0 @@
-ApplicationsDialog.configresults=Resultat af konfigurationen
-ApplicationsDialog.failedtofind=Fandt ikke
-ApplicationsDialog.failedtofindmiktex=Fandt ikke MikTeX
-ApplicationsDialog.found=Fandt
-ApplicationsDialog.foundgsview=Fandt gsview
-ApplicationsDialog.foundmiktex=Fandt MikTeX
-ApplicationsDialog.miktexdefaultconfig=Writer2LaTeX er blevet konfigureret så det virker hvis MikTeX tilføjes til din PATH
-ApplicationsDialog.ok=o.k.
-ApplicationsDialog.pdfdefaultviewer=Bruger standardprogram til PDF
-ApplicationsDialog.psdefaultviewer=Bruger standardprogram til PostScript
-ApplicationsDialog.systemident=Dit system identificerer sig som
-ApplicationsDialog.usingdefaultapp=Bruger standardprogram som
-ApplicationsDialog.version=version
-BibliographyDialog.nobibtexfiles=Advarsel: Den valgte mappe indeholder ingen BibTeX filer
-BibTeXDialog.allbibfieldsupdated=Alle litteraturlisteelementer blev opdateret
-BibTeXDialog.alreadyexists=findes allerede
-BibTeXDialog.bibfieldsnotupdated=Følgende litteraturlisteelementer blev ikke opdateret
-BibTeXDialog.errorreadingfile=Der skete en fejl ved læsning af denne fil
-BibTeXDialog.failedbibtexeditor=Fejl: Kunne ikke åbne filen med BibTeX-redigeringsprogrammet
-BibTeXDialog.filenameempty=Filnavnet er tomt
-BibTeXDialog.nobibtexeditor=Fejl: Kunne ikke finde et BibTeX-redigeringsprogram
-BibTeXDialog.nobibtexfiles=Fandt ingen BibTeX filer
-BibTeXDialog.noentries=Filen indeholder ingen elementer
-BibTeXDialog.noinformation=Ingen information
-BibTeXDialog.thefile=Filen
-ExternalApps.dviviewer=DVI-fremviser
-ExternalApps.pdfviewer=PDF-fremviser
-ExternalApps.psviewer=PostScript-fremviser
-LaTeXUNOPublisher.error=Fejl
-LaTeXUNOPublisher.failedlatex=Kunne ikke køre LaTeX - se loggen for detaljer
-TeXify.dviviewerror=Fejl ved åbning af DVI-fremviser
-TeXify.pdfviewerror=Fejl ved åbning af PDF-fremviser
-TeXify.psviewerror=Fejl ved åbning af PostScript-fremviser
-Writer2LaTeX.bibtexnotenabled=Writer2LaTeX er ikke sat op til at bruge eksterne BibTeX-filer til litteraturhenvisninger
diff --git a/src/main/java/writer2latex/bibtex/BibTeXDocument.java b/src/main/java/writer2latex/bibtex/BibTeXDocument.java
deleted file mode 100644
index ed98820..0000000
--- a/src/main/java/writer2latex/bibtex/BibTeXDocument.java
+++ /dev/null
@@ -1,167 +0,0 @@
-/************************************************************************
- *
- * BibTeXDocument.java
- *
- * Copyright: 2002-2015 by Henrik Just
- *
- * This file is part of Writer2LaTeX.
- *
- * Writer2LaTeX is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Writer2LaTeX is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Writer2LaTeX. If not, see use_index
: If false, the bibliography will be omitteduse_bibtex
true and external_bibtex_files
- * empty: The citations will be exported to a BibTeX file, which will be used
- * for the bibliographyuse_bibtex
true and external_bibtex_files
- * non-empty: The citations will be not be exported to a BibTeX file, the
- * files referred to by the option will be used insteaduse_bibtex
false: The bibliography will be exported as
- * a thebibliography environment
- * bibtex_style
If BibTeX is used, this style will be applied
- *
- * The citations will always be exported as \cite commands.
- */
-class BibConverter extends ConverterHelper {
-
- private BibTeXDocument bibDoc = null;
- private boolean bUseBibTeX;
- private String sBibTeXEncoding = null;
- private String sDocumentEncoding = null;
-
- /** Construct a new BibConverter.
- *
- * @param config the configuration to use
- * @param palette the ConverterPalette to use
- */
- BibConverter(OfficeReader ofr,LaTeXConfig config, ConverterPalette palette) {
- super(ofr,config,palette);
-
- // We need to create a BibTeX document except if we are using external BibTeX files
- if (!(config.useBibtex() && config.externalBibtexFiles().length()>0)) {
- bibDoc = new BibTeXDocument(palette.getOutFileName(),false,ofr);
- }
-
- // We need to use a different encoding for the BibTeX files
- if (config.externalBibtexFiles().length()>0) {
- int nBibTeXEncoding = config.getBibtexEncoding();
- int nDocumentEncoding = config.getInputencoding();
- if (config.getBackend()!=LaTeXConfig.XETEX && nBibTeXEncoding>-1 && nBibTeXEncoding!=nDocumentEncoding) {
- sBibTeXEncoding = ClassicI18n.writeInputenc(nBibTeXEncoding);
- sDocumentEncoding = ClassicI18n.writeInputenc(nDocumentEncoding);
- }
- }
-
- // We need to export it
- bUseBibTeX = config.useBibtex();
- }
-
- /** Export the bibliography directly as a thebibliography environment (as an alternative to using BibTeX)
- */
- private class ThebibliographyGenerator extends BibliographyGenerator {
- // The bibliography is the be inserted in this LaTeX document portion with that context
- private LaTeXDocumentPortion ldp;
- private Context context;
-
- // The current bibliography item is to formatted with this before/after pair with that context
- private BeforeAfter itemBa = null;
- private Context itemContext = null;
-
- ThebibliographyGenerator(OfficeReader ofr) {
- super(ofr,true);
- }
-
- void handleBibliography(Element bibliography, LaTeXDocumentPortion ldp, Context context) {
- this.ldp = ldp;
- this.context = context;
-
- String sWidestLabel = "";
- CollectionBibConverter
to the preamble.
- *
- * @param pack the LaTeXDocumentPortion to which declarations of packages (\\usepackage) should be added.
- * @param decl the LaTeXDocumentPortion to which other declarations should be added.
- */
- void appendDeclarations(LaTeXDocumentPortion pack, LaTeXDocumentPortion decl) {
- // Currently nothing
- }
-
- /** Process a bibliography
- *
- * @param node A text:bibliography element
- * @param ldp the LaTeXDocumentPortion to which LaTeX code should be added
- * @param oc the current context
- */
- void handleBibliography(Element node, LaTeXDocumentPortion ldp, Context oc) {
- if (!config.noIndex()) {
- if (config.useBibtex()) { // Export using BibTeX
- handleBibliographyAsBibTeX(ldp);
- }
- else { // Export as thebibliography environment
- ThebibliographyGenerator bibCv = new ThebibliographyGenerator(ofr);
- Element source = Misc.getChildByTagName(node,XMLString.TEXT_BIBLIOGRAPHY_SOURCE);
- bibCv.handleBibliography(source, ldp, oc);
- }
- }
- }
-
- private void handleBibliographyAsBibTeX(LaTeXDocumentPortion ldp) {
- // Use the style given in the configuration
- ldp.append("\\bibliographystyle{")
- .append(config.bibtexStyle())
- .append("}").nl();
-
- // Use BibTeX file from configuration, or exported BibTeX file
- // TODO: For XeTeX, probably use \XeTeXdefaultencoding?
- if (config.externalBibtexFiles().length()>0) {
- if (sBibTeXEncoding!=null) {
- ldp.append("\\inputencoding{").append(sBibTeXEncoding).append("}").nl();
- }
- ldp.append("\\bibliography{")
- .append(config.externalBibtexFiles())
- .append("}").nl();
- if (sBibTeXEncoding!=null) {
- ldp.append("\\inputencoding{").append(sDocumentEncoding).append("}").nl();
- }
- }
- else {
- ldp.append("\\bibliography{")
- .append(bibDoc.getName())
- .append("}").nl();
- }
- }
-
- /** Process a Bibliography Mark
- * @param node a text:bibliography-mark element
- * @param ldp the LaTeXDocumentPortion to which LaTeX code should be added
- * @param oc the current context
- */
- void handleBibliographyMark(Element node, LaTeXDocumentPortion ldp, Context oc) {
- String sIdentifier = node.getAttribute(XMLString.TEXT_IDENTIFIER);
- if (sIdentifier!=null) {
- // Use original citation if using external files; stripped if exporting BibTeX
- ldp.append("\\cite{")
- .append(config.externalBibtexFiles().length()==0 ? bibDoc.getExportName(sIdentifier) : sIdentifier)
- .append("}");
- }
- }
-
- /** Get the BibTeX document, if any (that is if the document contains bibliographic data and
- * the configuration does not specify external BibTeX files)
- *
- * @return the BiBTeXDocument, or null if no BibTeX file is needed
- */
- BibTeXDocument getBibTeXDocument() {
- if (bUseBibTeX && bibDoc!=null && !bibDoc.isEmpty()) {
- return bibDoc;
- }
- return null;
- }
-
-}
\ No newline at end of file
diff --git a/src/main/java/writer2latex/latex/BlockConverter.java b/src/main/java/writer2latex/latex/BlockConverter.java
deleted file mode 100644
index be0f924..0000000
--- a/src/main/java/writer2latex/latex/BlockConverter.java
+++ /dev/null
@@ -1,229 +0,0 @@
-/************************************************************************
- *
- * BlockConverter.java
- *
- * Copyright: 2002-2015 by Henrik Just
- *
- * This file is part of Writer2LaTeX.
- *
- * Writer2LaTeX is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Writer2LaTeX is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Writer2LaTeX. If not, see
Traverse block text (eg. content of body, section, list item). - * This is traversed in logical order and dedicated handlers take care of - * each block element.
- *(Note: As a rule, all handling of block level elements should add a - * newline to the LaTeX document at the end of the block)
- * @param node The element containing the block text - * @param ldp theLaTeXDocumentPortion
to which
- * LaTeX code should be added
- * @param oc the current context
- */
- public void traverseBlockText(Element node, LaTeXDocumentPortion ldp, Context oc) {
- Context ic = (Context) oc.clone();
-
- // The current paragraph block:
- StyleMap blockMap = config.getParBlockStyleMap();
- String sBlockName = null;
-
- if (node.hasChildNodes()) {
- NodeList list = node.getChildNodes();
- int nLen = list.getLength();
-
- for (int i = 0; i < nLen; i++) {
- Node childNode = list.item(i);
-
- if (childNode.getNodeType() == Node.ELEMENT_NODE) {
- Element child = (Element)childNode;
- String sTagName = child.getTagName();
-
- // Start/End a paragraph block (not in tables)
- if (!ic.isInTable()) {
- if (sTagName.equals(XMLString.TEXT_P)) {
- String sStyleName = ofr.getParStyles().getDisplayName(child.getAttribute(XMLString.TEXT_STYLE_NAME));
- if (sBlockName!=null && !blockMap.isNext(sBlockName,sStyleName)) {
- // end current block
- String sAfter = blockMap.getAfter(sBlockName);
- if (sAfter.length()>0) ldp.append(sAfter).nl();
- sBlockName = null;
- ic.setVerbatim(false);
- }
- if (sBlockName==null && blockMap.contains(sStyleName)) {
- // start a new block
- sBlockName = sStyleName;
- String sBefore = blockMap.getBefore(sBlockName);
- if (sBefore.length()>0) ldp.append(sBefore).nl();
- ic.setVerbatim(blockMap.getVerbatim(sStyleName));
- }
- }
- else if (sBlockName!=null) {
- // non-paragraph: end current block
- String sAfter = blockMap.getAfter(sBlockName);
- if (sAfter.length()>0) ldp.append(sAfter).nl();
- sBlockName = null;
- ic.setVerbatim(false);
- }
- }
-
- palette.getFieldCv().flushReferenceMarks(ldp,ic);
- palette.getIndexCv().flushIndexMarks(ldp,ic);
-
- palette.getInfo().addDebugInfo(child,ldp);
-
- // Basic block content; handle by this class
- if (sTagName.equals(XMLString.TEXT_P)) {
- // is this a caption?
- String sSequence = ofr.getSequenceName(child);
- if (ofr.isFigureSequenceName(sSequence)) {
- palette.getDrawCv().handleCaption(child,ldp,ic);
- }
- else if (ofr.isTableSequenceName(sSequence)) {
- // Next node *should* be a table
- if (i+1This class converts captions (for figures and tables) to LaTeX.
- *Packages: - *
Options: - *
TODO: Implement formatting of captions using the features of caption.sty - * (only if formatting>=CONVERT_BASIC) - */ -public class CaptionConverter extends ConverterHelper { - - private boolean bNeedCaptionOf = false; - - private Element seqField = null; // the sequence field within the current caption - - public CaptionConverter(OfficeReader ofr, LaTeXConfig config, ConverterPalette palette) { - super(ofr,config,palette); - } - - public void appendDeclarations(LaTeXDocumentPortion pack, LaTeXDocumentPortion decl) { - if (bNeedCaptionOf) { - if (config.useCaption()) { - pack.append("\\usepackage{caption}").nl(); - } - else { // use definition borrowed from capt-of.sty - decl.append("% Non-floating captions").nl() - .append("\\makeatletter").nl() - .append("\\newcommand\\captionof[1]{\\def\\@captype{#1}\\caption}").nl() - .append("\\makeatother").nl(); - } - } - } - - /** - *
Process content of a text:p tag as a caption body (inluding label)
- * @param node The text:p element node containing the caption - * @param ldp TheLaTeXDocumentPortion
to add LaTeX code to
- * @param oc The current context
- * @param bIsCaptionOf true if this is caption uses captionof
- */
- public void handleCaptionBody(Element node,LaTeXDocumentPortion ldp, Context oc, boolean bIsCaptionOf) {
- bNeedCaptionOf|=bIsCaptionOf;
-
- // Get rid of the caption label before converting
- removeCaptionLabel(node,0);
- Element label = seqField;
- seqField = null;
-
- // Get the stylename of the paragraph and push the font used
- String sStyleName = node.getAttribute(XMLString.TEXT_STYLE_NAME);
- palette.getI18n().pushSpecialTable(palette.getCharSc().getFontName(ofr.getParStyle(sStyleName)));
-
- if (palette.getHeadingCv().containsElements(node)) {
- ldp.append("[");
- palette.getInlineCv().traversePlainInlineText(node,ldp,oc);
- ldp.append("]");
- }
- // Update context before traversing text
- Context ic = (Context) oc.clone();
- ldp.append("{");
- palette.getInlineCv().traverseInlineText(node,ldp,ic);
- ldp.append("}").nl();
-
- // Insert label
- palette.getFieldCv().handleSequence(label,ldp,oc);
-
- // Flush any index marks
- palette.getIndexCv().flushIndexMarks(ldp,oc);
-
- // pop the font name
- palette.getI18n().popSpecialTable();
-
- }
-
- // In OpenDocument a caption is an ordinary paragraph with a text:seqence
- // element. For example
- // Table writer2latex.latex.ColorConverter
and
- writer2latex.latex.style.I18n
- */
-public class CharStyleConverter extends StyleConverter {
-
- // Cache of converted font declarations
- private HashtableConstructs a new CharStyleConverter
.
Use a text style in LaTeX.
- * @param sName the name of the text style - * @param ba aBeforeAfter
to put code into
- */
- public void applyTextStyle(String sName, BeforeAfter ba, Context context) {
- if (sName==null) { return; }
- String sDisplayName = ofr.getTextStyles().getDisplayName(sName);
-
- if (bIgnoreAll) {
- // Even if all is ignored, we still apply style maps from config..
- StyleMap sm = config.getTextStyleMap();
- if (sm.contains(sDisplayName)) {
- ba.add(sm.getBefore(sDisplayName),sm.getAfter(sDisplayName));
- context.setVerbatim(sm.getVerbatim(sDisplayName));
- context.setNoLineBreaks(sm.getVerbatim(sDisplayName));
- }
- return;
- }
-
- // Style already converted?
- if (styleMap.contains(sName)) {
- ba.add(styleMap.getBefore(sName),styleMap.getAfter(sName));
- context.updateFormattingFromStyle(ofr.getTextStyle(sName));
- // it's verbatim if specified as such in the configuration
- StyleMap sm = config.getTextStyleMap();
- boolean bIsVerbatim = sm.contains(sDisplayName) && sm.getVerbatim(sDisplayName);
- context.setVerbatim(bIsVerbatim);
- context.setNoLineBreaks(bIsVerbatim);
- return;
- }
-
- // The style may already be declared in the configuration:
- StyleMap sm = config.getTextStyleMap();
- if (sm.contains(sDisplayName)) {
- styleMap.put(sName,sm.getBefore(sDisplayName),sm.getAfter(sDisplayName));
- applyTextStyle(sName,ba,context);
- return;
- }
-
- // Get the style, if it exists:
- StyleWithProperties style = ofr.getTextStyle(sName);
- if (style==null) {
- styleMap.put(sName,"","");
- applyTextStyle(sName,ba,context);
- return;
- }
-
- // Convert automatic style
- if (style.isAutomatic()) {
- palette.getI18n().applyLanguage(style,false,true,ba);
- applyFont(style,false,true,ba,context);
- applyFontEffects(style,true,ba);
- context.updateFormattingFromStyle(ofr.getTextStyle(sName));
- return;
- }
-
- // Convert soft style:
- // This must be converted relative to a blank context!
- BeforeAfter baText = new BeforeAfter();
- palette.getI18n().applyLanguage(style,false,true,baText);
- applyFont(style,false,true,baText,new Context());
- applyFontEffects(style,true,baText);
- // declare the text style (\newcommand)
- String sTeXName = styleNames.addToExport(ofr.getTextStyles().getDisplayName(sName));
- styleMap.put(sName,"\\textstyle"+sTeXName+"{","}");
- declarations.append("\\newcommand\\textstyle")
- .append(sTeXName).append("[1]{")
- .append(baText.getBefore()).append("#1").append(baText.getAfter())
- .append("}").nl();
- applyTextStyle(sName,ba,context);
- }
-
- public String getFontName(StyleWithProperties style) {
- if (style!=null) {
- String sName = style.getProperty(XMLString.STYLE_FONT_NAME);
- if (sName!=null) {
- FontDeclaration fd = ofr.getFontDeclaration(sName);
- if (fd!=null) {
- return fd.getFontFamily();
- }
- }
- }
- return null;
- }
-
- // Get the font name from a char style
- public String getFontName(String sStyleName) {
- return getFontName(ofr.getTextStyle(sStyleName));
- }
-
- /** Apply hard character formatting (no inheritance).
- *This is used in sections and {foot|end}notes
- * @param style the style to use - * @param ba theBeforeAfter
to add LaTeX code to
- */
- public void applyHardCharFormatting(StyleWithProperties style, BeforeAfter ba) {
- palette.getI18n().applyLanguage(style,true,false,ba);
- applyFont(style,true,false,ba,new Context());
- if (!ba.isEmpty()) { ba.add(" ",""); }
- }
-
- /** Apply all font attributes (family, series, shape, size and color).
- * @param style the OOo style to read attributesfrom - * @param bDecl true if declaration form is required - * @param bInherit true if inherited properties should be used - * @param ba theBeforeAfter
to add LaTeX code to.
- */
- public void applyFont(StyleWithProperties style, boolean bDecl, boolean bInherit, BeforeAfter ba, Context context) {
- // Note: if bDecl is true, nothing will be put in the "after" part of ba.
- if (style==null) { return; }
- applyNfssSize(style,bDecl,bInherit,ba,context);
- applyNfssFamily(style,bDecl,bInherit,ba,context);
- applyNfssSeries(style,bDecl,bInherit,ba,context);
- applyNfssShape(style,bDecl,bInherit,ba,context);
- palette.getColorCv().applyColor(style,bDecl,bInherit,ba,context);
- }
-
- /** Reset to normal font, size and color.
- * @param ba theBeforeAfter
to add LaTeX code to.
- */
- public void applyNormalFont(BeforeAfter ba) {
- ba.add("\\normalfont\\normalsize","");
- palette.getColorCv().applyNormalColor(ba);
- }
-
- /** Apply default font attributes (family, series, shape, size and color).
- * @param style the OOo style to read attributesfrom - * @param ldp theLaTeXDocumentPortion
to add LaTeX code to.
- */
- public void applyDefaultFont(StyleWithProperties style, LaTeXDocumentPortion ldp) {
- if (style==null) { return; }
-
- String s = convertFontDeclaration(style.getProperty(XMLString.STYLE_FONT_NAME));
- if (s!=null){
- ldp.append("\\renewcommand\\familydefault{\\")
- .append(s).append("default}").nl();
- } // TODO: Else read props directly from the style
-
- s = nfssSeries(style.getProperty(XMLString.FO_FONT_WEIGHT));
- if (s!=null) {
- ldp.append("\\renewcommand\\seriesdefault{\\")
- .append(s).append("default}").nl();
- }
-
- s = nfssShape(style.getProperty(XMLString.FO_FONT_VARIANT),
- style.getProperty(XMLString.FO_FONT_STYLE));
- if (s!=null) {
- ldp.append("\\renewcommand\\shapedefault{\\")
- .append(s).append("default}").nl();
- }
-
- palette.getColorCv().setNormalColor(style.getProperty(XMLString.FO_COLOR),ldp);
- }
-
- /** Apply font effects (position, underline, crossout, change case.
- * @param style the OOo style to read attributesfrom - * @param bInherit true if inherited properties should be used - * @param ba theBeforeAfter
to add LaTeX code to.
- */
- public void applyFontEffects(StyleWithProperties style, boolean bInherit, BeforeAfter ba) {
- if (style==null) { return; }
- applyTextPosition(style, bInherit, ba);
- applyUnderline(style, bInherit, ba);
- applyCrossout(style, bInherit, ba);
- applyChangeCase(style, bInherit, ba);
- }
-
- // Remaining methods are private
-
- /** Apply font family.
- * @param style the OOo style to read attributesfrom - * @param bDecl true if declaration form is required - * @param bInherit true if inherited properties should be used - * @param ba theBeforeAfter
to add LaTeX code to.
- */
- private void applyNfssFamily(StyleWithProperties style, boolean bDecl, boolean bInherit, BeforeAfter ba, Context context) {
- // Note: if bDecl is true, nothing will be put in the "after" part of ba.
- if (style==null || bIgnoreFont) { return; }
- String sFontName=style.getProperty(XMLString.STYLE_FONT_NAME,bInherit);
- if (sFontName!=null){
- String sFamily = convertFontDeclaration(sFontName);
- if (sFamily==null) { return; }
- if (sFamily.equals(convertFontDeclaration(context.getFontName()))) { return; }
- if (bDecl) { ba.add("\\"+sFamily+"family",""); }
- else { ba.add("\\text"+sFamily+"{","}"); }
- } // TODO: Else read props directly from the style
- }
-
- /** Apply font series.
- * @param style the OOo style to read attributesfrom - * @param bDecl true if declaration form is required - * @param bInherit true if inherited properties should be used - * @param ba theBeforeAfter
to add LaTeX code to.
- */
- private void applyNfssSeries(StyleWithProperties style, boolean bDecl, boolean bInherit, BeforeAfter ba, Context context) {
- // Note: if bDecl is true, nothing will be put in the "after" part of ba.
- if (style!=null && !bIgnoreAll) {
- String sSeries = nfssSeries(style.getProperty(XMLString.FO_FONT_WEIGHT,bInherit));
- if (sSeries!=null) {
- // Temporary: Support text-attribute style maps for this particular case
- // TODO: Reimplement the CharStyleConverter to properly support this...
- if (!bDecl && "bf".equals(sSeries) && config.getTextAttributeStyleMap().contains("bold")) {
- ba.add(config.getTextAttributeStyleMap().getBefore("bold"),
- config.getTextAttributeStyleMap().getAfter("bold"));
- }
- else {
- if (style.isAutomatic()) { // optimize hard formatting
- if (sSeries.equals(nfssSeries(context.getFontWeight()))) { return; }
- if (context.getFontWeight()==null && sSeries.equals("md")) { return; }
- }
- if (bDecl) { ba.add("\\"+sSeries+"series",""); }
- else { ba.add("\\text"+sSeries+"{","}"); }
- }
- }
- }
- }
-
- /** Apply font shape.
- * @param style the OOo style to read attributesfrom - * @param bDecl true if declaration form is required - * @param bInherit true if inherited properties should be used - * @param ba theBeforeAfter
to add LaTeX code to.
- */
- private void applyNfssShape(StyleWithProperties style, boolean bDecl, boolean bInherit, BeforeAfter ba, Context context) {
- // Note: if bDecl is true, nothing will be put in the "after" part of ba.
- if (style!=null && !bIgnoreAll) {
- String sVariant = style.getProperty(XMLString.FO_FONT_VARIANT, bInherit);
- String sStyle = style.getProperty(XMLString.FO_FONT_STYLE, bInherit);
- String sShape = nfssShape(sVariant,sStyle);
- if (sShape!=null) {
- // Temporary: Support text-attribute style maps for this particular case
- // TODO: Reimplement the CharStyleConverter to properly support this...
- if (!bDecl && "sc".equals(sShape) && config.getTextAttributeStyleMap().contains("small-caps")) {
- ba.add(config.getTextAttributeStyleMap().getBefore("small-caps"),
- config.getTextAttributeStyleMap().getAfter("small-caps"));
- }
- else if (!bDecl && "it".equals(sShape) && config.getTextAttributeStyleMap().contains("italic")) {
- ba.add(config.getTextAttributeStyleMap().getBefore("italic"),
- config.getTextAttributeStyleMap().getAfter("italic"));
- }
- else {
- if (style.isAutomatic()) { // optimize hard formatting
- if (sShape.equals(nfssShape(context.getFontVariant(),context.getFontStyle()))) return;
- if (context.getFontVariant()==null && context.getFontStyle()==null && sShape.equals("up")) return;
- }
- if (bDecl) ba.add("\\"+sShape+"shape","");
- else ba.add("\\text"+sShape+"{","}");
- }
- }
- }
- }
-
- /** Apply font size.
- * @param style the OOo style to read attributesfrom - * @param bDecl true if declaration form is required - * @param bInherit true if inherited properties should be used - * @param ba theBeforeAfter
to add LaTeX code to.
- */
- private void applyNfssSize(StyleWithProperties style, boolean bDecl, boolean bInherit, BeforeAfter ba, Context context) {
- // Note: if bDecl is true, nothing will be put in the "after" part of ba.
- if (style==null|| bIgnoreFontsize || (bIgnoreHardFontsize && style.isAutomatic())) { return; }
- if (style.getProperty(XMLString.FO_FONT_SIZE, bInherit)==null) { return; }
- String sSize = nfssSize(style.getAbsoluteProperty(XMLString.FO_FONT_SIZE));
- if (sSize==null) { return; }
- if (sSize.equals(nfssSize(context.getFontSize()))) { return; }
- if (bDecl) { ba.add(sSize,""); }
- else { ba.add("{"+sSize+" ","}"); }
- }
-
- // Remaining methods are not context-sensitive
-
- /** Apply text position.
- * @param style the OOo style to read attributesfrom - * @param bInherit true if inherited properties should be used - * @param ba theBeforeAfter
to add LaTeX code to.
- */
- private void applyTextPosition(StyleWithProperties style, boolean bInherit, BeforeAfter ba) {
- if (style!=null && !bIgnoreAll) {
- String s = textPosition(style.getProperty(XMLString.STYLE_TEXT_POSITION, bInherit));
- // Temporary: Support text-attribute style maps for this particular case
- // TODO: Reimplement the CharStyleConverter to properly support this...
- if (config.getTextAttributeStyleMap().contains("superscript") && "\\textsuperscript".equals(s)) {
- ba.add(config.getTextAttributeStyleMap().getBefore("superscript"),
- config.getTextAttributeStyleMap().getAfter("superscript"));
- }
- else if (config.getTextAttributeStyleMap().contains("subscript") && "\\textsubscript".equals(s)) {
- ba.add(config.getTextAttributeStyleMap().getBefore("subscript"),
- config.getTextAttributeStyleMap().getAfter("subscript"));
- }
- else if (s!=null) {
- ba.add(s+"{","}");
- }
- }
- }
-
- /** Apply text underline.
- * @param style the OOo style to read attributesfrom - * @param bInherit true if inherited properties should be used - * @param ba theBeforeAfter
to add LaTeX code to.
- */
- private void applyUnderline(StyleWithProperties style, boolean bInherit, BeforeAfter ba) {
- if (style==null || !bUseUlem) { return; }
- if (bIgnoreAll) { return; }
- String sTag = ofr.isOpenDocument() ?
- XMLString.STYLE_TEXT_UNDERLINE_STYLE :
- XMLString.STYLE_TEXT_UNDERLINE;
- String s = underline(style.getProperty(sTag, bInherit));
- if (s!=null) { bNeedUlem = true; ba.add(s+"{","}"); }
- }
-
- /** Apply text crossout.
- * @param style the OOo style to read attributesfrom - * @param bInherit true if inherited properties should be used - * @param ba theBeforeAfter
to add LaTeX code to.
- */
- private void applyCrossout(StyleWithProperties style, boolean bInherit, BeforeAfter ba) {
- if (style==null || !bUseUlem) { return; }
- if (bIgnoreAll) { return; }
- String sTag = ofr.isOpenDocument() ?
- XMLString.STYLE_TEXT_LINE_THROUGH_STYLE :
- XMLString.STYLE_TEXT_CROSSING_OUT;
- String s = crossout(style.getProperty(sTag, bInherit));
- if (s!=null) { bNeedUlem = true; ba.add(s+"{","}"); }
- }
-
- /** Apply change case.
- * @param style the OOo style to read attributesfrom - * @param bInherit true if inherited properties should be used - * @param ba theBeforeAfter
to add LaTeX code to.
- */
- private void applyChangeCase(StyleWithProperties style, boolean bInherit, BeforeAfter ba) {
- if (style==null) { return; }
- if (bIgnoreAll) { return; }
- String s = changeCase(style.getProperty(XMLString.FO_TEXT_TRANSFORM));
- if (s!=null) { ba.add(s+"{","}"); }
- }
-
- /** Convert font declarations to LaTeX.
- *It returns a generic LaTeX font family (rm, tt, sf).
- *It returns null if the font declaration doesn't exist.
- * @param sName the name of the font declaration - * @returnString
with a LaTeX generic fontfamily
- */
- private String convertFontDeclaration(String sName) {
- FontDeclaration fd = ofr.getFontDeclaration(sName);
- if (fd==null) { return null; }
- if (!fontDecls.containsKey(sName)) {
- String sFontFamily = fd.getFontFamily();
- String sFontPitch = fd.getFontPitch();
- String sFontFamilyGeneric = fd.getFontFamilyGeneric();
- fontDecls.put(sName,nfssFamily(sFontFamily,sFontFamilyGeneric,sFontPitch));
- }
- return fontDecls.get(sName);
- }
-
- // The remaining methods are static helpers to convert single style properties
-
- // Font change. These methods return the declaration form if the paramater
- // bDecl is true, and otherwise the command form
-
- private static final String nfssFamily(String sFontFamily, String sFontFamilyGeneric,
- String sFontPitch){
- // Note: Defaults to rm
- // TODO: What about decorative, script, system?
- if ("fixed".equals(sFontPitch)) return "tt";
- else if ("modern".equals(sFontFamilyGeneric)) return "tt";
- else if ("swiss".equals(sFontFamilyGeneric)) return "sf";
- else return "rm";
- }
-
- private static final String nfssSeries(String sFontWeight){
- if (sFontWeight==null) return null;
- if ("bold".equals(sFontWeight)) return "bf";
- else return "md";
- }
-
- private static final String nfssShape(String sFontVariant, String sFontStyle){
- if (sFontVariant==null && sFontStyle==null) return null;
- if ("small-caps".equals(sFontVariant)) return "sc";
- else if ("italic".equals(sFontStyle)) return "it";
- else if ("oblique".equals(sFontStyle)) return "sl";
- else return "up";
- }
-
- private static final String nfssSize(String sFontSize){
- if (sFontSize==null) return null;
- return "\\fontsize{"+sFontSize+"}{"+Calc.multiply("120%",sFontSize)+"}\\selectfont";
- }
-
- // other character formatting
-
- private final String textPosition(String sTextPosition){
- if (sTextPosition==null) return null;
- if (sTextPosition.startsWith("super")) return "\\textsuperscript";
- if (sTextPosition.startsWith("sub") || sTextPosition.startsWith("-")) {
- bNeedSubscript = true;
- return "\\textsubscript";
- }
- if (sTextPosition.startsWith("0%")) return null;
- return "\\textsuperscript";
- }
-
- private static final String underline(String sUnderline) {
- if (sUnderline==null) { return null; }
- if (sUnderline.equals("none")) { return null; }
- if (sUnderline.indexOf("wave")>=0) { return "\\uwave"; }
- return "\\uline";
- }
-
- private static final String crossout(String sCrossout) {
- if (sCrossout==null) { return null; }
- if (sCrossout.equals("X")) { return "\\xout"; }
- if (sCrossout.equals("slash")) { return "\\xout"; }
- return "\\sout";
- }
-
- private static final String changeCase(String sTextTransform){
- if ("lowercase".equals(sTextTransform)) return "\\MakeLowercase";
- if ("uppercase".equals(sTextTransform)) return "\\MakeUppercase";
- return null;
- }
-
-}
diff --git a/src/main/java/writer2latex/latex/ColorConverter.java b/src/main/java/writer2latex/latex/ColorConverter.java
deleted file mode 100644
index e817743..0000000
--- a/src/main/java/writer2latex/latex/ColorConverter.java
+++ /dev/null
@@ -1,201 +0,0 @@
-/************************************************************************
- *
- * ColorConverter.java
- *
- * Copyright: 2002-2008 by Henrik Just
- *
- * This file is part of Writer2LaTeX.
- *
- * Writer2LaTeX is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Writer2LaTeX is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Writer2LaTeX. If not, see Constructs a new CharStyleConverter
.
Apply foreground color.
- * @param style the OOo style to read attributesfrom - * @param bDecl true if declaration form is required - * @param bInherit true if inherited properties should be used - * @param ba theBeforeAfter
to add LaTeX code to.
- * @param context the current context
- */
- public void applyColor(StyleWithProperties style, boolean bDecl, boolean bInherit, BeforeAfter ba, Context context) {
- // Note: if bDecl is true, nothing will be put in the "after" part of ba.
- if (bUseColor && style!=null) {
- String sColor = style.getProperty(XMLString.FO_COLOR,bInherit);
- if (sColor!=null) {
- if (!sColor.equals(context.getFontColor())) {
- // Convert color if it differs from the current font color
- context.setFontColor(sColor);
- applyColor(sColor, bDecl, ba, context);
- }
- }
- else {
- // No color; maybe automatic color?
- String sAutomatic = style.getProperty(XMLString.STYLE_USE_WINDOW_FONT_COLOR,bInherit);
- if (sAutomatic==null && bInherit) {
- // We may need to inherit this property from the default style
- StyleWithProperties defaultStyle = ofr.getDefaultParStyle();
- if (defaultStyle!=null) {
- sAutomatic = defaultStyle.getProperty(XMLString.STYLE_USE_WINDOW_FONT_COLOR,bInherit);
- }
- }
- if ("true".equals(sAutomatic)) {
- // Automatic color based on background
- if (context.getBgColor()!=null) { applyAutomaticColor(ba,bDecl,context); }
- }
- }
- }
- }
-
- /** Apply a specific foreground color.
- * @param sColor the rgb color to use - * @param bDecl true if declaration form is required - * @param ba theBeforeAfter
to add LaTeX code to.
- */
- public void applyColor(String sColor, boolean bDecl, BeforeAfter ba, Context context) {
- // Note: if bDecl is true, nothing will be put in the "after" part of ba.
- if (bUseColor && sColor!=null) {
- // If there's a background color, allow all colors
- String s = context.getBgColor()!=null ? fullcolor(sColor) : color(sColor);
- if (s!=null) {
- if (bDecl) { ba.add("\\color"+s,""); }
- else { ba.add("\\textcolor"+s+"{","}"); }
- }
- }
- }
-
- public void applyBgColor(String sCommand, String sColor, BeforeAfter ba, Context context) {
- // Note: Will only fill "before" part of ba
- if (sColor!=null && !"transparent".equals(sColor)) {
- String s = fullcolor(sColor);
- if (bUseColor && s!=null) {
- context.setBgColor(sColor);
- ba.add(sCommand+s,"");
- }
- }
- }
-
- public void applyAutomaticColor(BeforeAfter ba, boolean bDecl, Context context) {
- String s = automaticcolor(context.getBgColor());
- if (s!=null) {
- if (bDecl) { ba.add("\\color"+s,""); }
- else { ba.add("\\textcolor"+s+"{","}"); }
- }
- }
-
- private static final String automaticcolor(String sBgColor) {
- if (sBgColor!=null && sBgColor.length()==7) {
- float[] rgb = getRgb(sBgColor);
- if (rgb[RED]+rgb[GREEN]+rgb[BLUE]<0.6) {
- // Dark background
- return "{white}";
- }
- }
- return "{black}";
- }
-
- private static final String color(String sColor){
- if ("#000000".equalsIgnoreCase(sColor)) { return "{black}"; }
- else if ("#ff0000".equalsIgnoreCase(sColor)) { return "{red}"; }
- else if ("#00ff00".equalsIgnoreCase(sColor)) { return "{green}"; }
- else if ("#0000ff".equalsIgnoreCase(sColor)) { return "{blue}"; }
- else if ("#ffff00".equalsIgnoreCase(sColor)) { return "{yellow}"; }
- else if ("#ff00ff".equalsIgnoreCase(sColor)) { return "{magenta}"; }
- else if ("#00ffff".equalsIgnoreCase(sColor)) { return "{cyan}"; }
- //no white, since we don't have background colors:
- //else if ("#ffffff".equalsIgnoreCase(sColor)) { return "{white}"; }
- else {
- if (sColor==null || sColor.length()!=7) return null;
- float[] rgb = getRgb(sColor);
- // avoid very bright colors (since we don't have background colors):
- if (rgb[RED]+rgb[GREEN]+rgb[BLUE]>2.7) { return "{black}"; }
- else { return "[rgb]{"+rgb[RED]+","+rgb[GREEN]+","+rgb[BLUE]+"}"; }
- }
- }
-
- private static final String fullcolor(String sColor){
- if ("#000000".equalsIgnoreCase(sColor)) { return "{black}"; }
- else if ("#ff0000".equalsIgnoreCase(sColor)) { return "{red}"; }
- else if ("#00ff00".equalsIgnoreCase(sColor)) { return "{green}"; }
- else if ("#0000ff".equalsIgnoreCase(sColor)) { return "{blue}"; }
- else if ("#ffff00".equalsIgnoreCase(sColor)) { return "{yellow}"; }
- else if ("#ff00ff".equalsIgnoreCase(sColor)) { return "{magenta}"; }
- else if ("#00ffff".equalsIgnoreCase(sColor)) { return "{cyan}"; }
- else if ("#ffffff".equalsIgnoreCase(sColor)) { return "{white}"; }
- else {
- // This could mean transparent:
- if (sColor==null || sColor.length()!=7) return null;
- float[] rgb = getRgb(sColor);
- return "[rgb]{"+rgb[RED]+","+rgb[GREEN]+","+rgb[BLUE]+"}";
- }
- }
-
- private static final float[] getRgb(String sColor) {
- float[] rgb = new float[3];
- rgb[RED] = (float)Misc.getIntegerFromHex(sColor.substring(1,3),0)/255;
- rgb[GREEN] = (float)Misc.getIntegerFromHex(sColor.substring(3,5),0)/255;
- rgb[BLUE] = (float)Misc.getIntegerFromHex(sColor.substring(5,7),0)/255;
- return rgb;
- }
-
-
-}
diff --git a/src/main/java/writer2latex/latex/ContentHandlingOption.java b/src/main/java/writer2latex/latex/ContentHandlingOption.java
deleted file mode 100644
index 605de9b..0000000
--- a/src/main/java/writer2latex/latex/ContentHandlingOption.java
+++ /dev/null
@@ -1,42 +0,0 @@
-/************************************************************************
- *
- * ContentHandlingOption.java
- *
- * Copyright: 2002-2008 by Henrik Just
- *
- * This file is part of Writer2LaTeX.
- *
- * Writer2LaTeX is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Writer2LaTeX is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Writer2LaTeX. If not, see This is an abstract superclass for converter helpers.
- */ -abstract class ConverterHelper { - - OfficeReader ofr; - LaTeXConfig config; - ConverterPalette palette; - - ConverterHelper(OfficeReader ofr, LaTeXConfig config, ConverterPalette palette) { - this.ofr = ofr; - this.config = config; - this.palette = palette; - } - - abstract void appendDeclarations(LaTeXDocumentPortion pack, LaTeXDocumentPortion decl); - -} \ No newline at end of file diff --git a/src/main/java/writer2latex/latex/ConverterPalette.java b/src/main/java/writer2latex/latex/ConverterPalette.java deleted file mode 100644 index a26a65f..0000000 --- a/src/main/java/writer2latex/latex/ConverterPalette.java +++ /dev/null @@ -1,298 +0,0 @@ -/************************************************************************ - * - * ConverterPalette.java - * - * Copyright: 2002-2015 by Henrik Just - * - * This file is part of Writer2LaTeX. - * - * Writer2LaTeX is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * Writer2LaTeX is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with Writer2LaTeX. If not, seeThis class handles draw elements.
- */ -public class DrawConverter extends ConverterHelper { - - private boolean bNeedGraphicx = false; - - // Keep track of floating frames (images, text boxes...) - private StackAppend declarations needed by the FieldConverter
to
- * the preamble.
LaTeXDocumentPortion
to which
- * declarations of packages should be added (\\usepackage
).
- * @param decl the LaTeXDocumentPortion
to which
- * other declarations should be added.
- */
- public void appendDeclarations(LaTeXDocumentPortion pack, LaTeXDocumentPortion decl) {
- // Use natbib
- if (config.useBibtex() && config.useNatbib()) {
- pack.append("\\usepackage");
- if (config.getNatbibOptions().length()>0) {
- pack.append("[").append(config.getNatbibOptions()).append("]");
- }
- pack.append("{natbib}").nl();
- }
- // use lastpage.sty
- if (bUsesPageCount) {
- pack.append("\\usepackage{lastpage}").nl();
- }
-
- // use titleref.sty
- if (bUsesTitleref) {
- pack.append("\\usepackage{titleref}").nl();
- }
-
- // use hyperref.sty
- if (bUseHyperref){
- pack.append("\\usepackage{hyperref}").nl();
- pack.append("\\hypersetup{");
- if (config.getBackend()==LaTeXConfig.PDFTEX) pack.append("pdftex, ");
- else if (config.getBackend()==LaTeXConfig.DVIPS) pack.append("dvips, ");
- //else pack.append("hypertex");
- pack.append("colorlinks=true, linkcolor=blue, citecolor=blue, filecolor=blue, urlcolor=blue");
- if (config.getBackend()==LaTeXConfig.PDFTEX) {
- pack.append(createPdfMeta("pdftitle",palette.getMetaData().getTitle()));
- if (config.metadata()) {
- pack.append(createPdfMeta("pdfauthor",palette.getMetaData().getCreator()))
- .append(createPdfMeta("pdfsubject",palette.getMetaData().getSubject()))
- .append(createPdfMeta("pdfkeywords",palette.getMetaData().getKeywords()));
- }
- }
- pack.append("}").nl();
- }
-
- // Export sequence declarations
- // The number format is fetched from the first occurence of the
- // sequence in the text, while the outline level and the separation
- // character are fetched from the declaration
- EnumerationProcess sequence declarations
- * @param node the text:sequence-decls node - */ - public void handleSequenceDecls(Element node) { - Node child = node.getFirstChild(); - while (child!=null) { - if (Misc.isElement(child,XMLString.TEXT_SEQUENCE_DECL)) { - // Don't process the declaration, but store a reference - seqDecl.put(((Element)child).getAttribute(XMLString.TEXT_NAME),child); - } - child = child.getNextSibling(); - } - } - - /**Process a sequence field (text:sequence tag)
- * @param node The element containing the sequence field - * @param ldp theLaTeXDocumentPortion
to which
- * LaTeX code should be added
- * @param oc the current context
- */
- public void handleSequence(Element node, LaTeXDocumentPortion ldp, Context oc) {
- String sName = Misc.getAttribute(node,XMLString.TEXT_NAME);
- String sRefName = Misc.getAttribute(node,XMLString.TEXT_REF_NAME);
- String sFormula = Misc.getAttribute(node,XMLString.TEXT_FORMULA);
- if (sFormula==null) {
- // If there's no formula, we must use the content as formula
- // The parser below requires a namespace, so we add that..
- sFormula = "ooow:"+Misc.getPCDATA(node);
- }
- if (sName!=null) {
- if (ofr.isFigureSequenceName(sName) || ofr.isTableSequenceName(sName)) {
- // Export \label only, assuming the number is generated by \caption
- if (sRefName!=null && ofr.hasSequenceRefTo(sRefName)) {
- ldp.append("\\label{seq:")
- .append(seqrefnames.addToExport(sRefName))
- .append("}");
- }
- }
- else {
- // General purpose sequence -> export as counter
- if (!seqFirst.containsKey(sName)) {
- // Save first occurence -> used to determine number format
- seqFirst.put(sName,node);
- }
- if (sRefName!=null && ofr.hasSequenceRefTo(sRefName)) {
- // Export as {\refstepcounter{name}\thename\label{refname}}
- ldp.append("{").append(changeCounter(sName,sFormula,true))
- .append("\\the").append(seqnames.addToExport(sName))
- .append("\\label{seq:")
- .append(seqrefnames.addToExport(sRefName))
- .append("}}");
- }
- else {
- // Export as \stepcounter{name}{\thename}
- ldp.append(changeCounter(sName,sFormula,false))
- .append("{\\the")
- .append(seqnames.addToExport(sName))
- .append("}");
- }
- }
- }
- }
-
- /** Create label for a sequence field (text:sequence tag)
- * @param node The element containing the sequence field - * @param ldp theLaTeXDocumentPortion
to which
- * LaTeX code should be added
- */
- public void handleSequenceLabel(Element node, LaTeXDocumentPortion ldp) {
- String sRefName = Misc.getAttribute(node,XMLString.TEXT_REF_NAME);
- if (sRefName!=null && ofr.hasSequenceRefTo(sRefName)) {
- ldp.append("\\label{seq:")
- .append(seqrefnames.addToExport(sRefName))
- .append("}");
- }
- }
-
- // According to the spec for OpenDocument, the formula is application
- // specific, prefixed with a namespace. OOo uses the namespace ooow, and
- // we accept the formulas ooow:Process a sequence reference (text:sequence-ref tag)
- * @param node The element containing the sequence reference - * @param ldp theLaTeXDocumentPortion
to which
- * LaTeX code should be added
- * @param oc the current context
- */
- public void handleSequenceRef(Element node, LaTeXDocumentPortion ldp, Context oc) {
- String sRefName = Misc.getAttribute(node,XMLString.TEXT_REF_NAME);
- String sFormat = Misc.getAttribute(node,XMLString.TEXT_REFERENCE_FORMAT);
- String sName = ofr.getSequenceFromRef(sRefName);
- if (sRefName!=null) {
- if (sFormat==null || "page".equals(sFormat)) {
- ldp.append("\\pageref{seq:")
- .append(seqrefnames.addToExport(sRefName))
- .append("}");
- }
- else if ("value".equals(sFormat)) {
- ldp.append("\\ref{seq:")
- .append(seqrefnames.addToExport(sRefName))
- .append("}");
- }
- else if ("category-and-value".equals(sFormat)) {
- // Export as Name~\\ref{refname}
- if (sName!=null) {
- if (ofr.isFigureSequenceName(sName)) {
- ldp.append("\\figurename~");
- }
- else if (ofr.isTableSequenceName(sName)) {
- ldp.append("\\tablename~");
- }
- else {
- ldp.append(sName).append("~");
- }
- }
- ldp.append("\\ref{seq:")
- .append(seqrefnames.addToExport(sRefName))
- .append("}");
- }
- else if ("caption".equals(sFormat) && config.useTitleref() &&
- (ofr.isFigureSequenceName(sName) || ofr.isTableSequenceName(sName))) {
- ldp.append("\\titleref{seq:")
- .append(seqrefnames.addToExport(sRefName))
- .append("}");
- bUsesTitleref = true;
- }
- else if ("text".equals(sFormat) && config.useTitleref() &&
- (ofr.isFigureSequenceName(sName) || ofr.isTableSequenceName(sName))) {
- // This is a combination of "category-and-value" and "caption"
- // Export as \\figurename~\ref{refname}:~\titleref{refname}
- if (ofr.isFigureSequenceName(sName)) {
- ldp.append("\\figurename");
- }
- else if (ofr.isTableSequenceName(sName)) {
- ldp.append("\\tablename");
- }
- ldp.append("~\\ref{seq:")
- .append(seqrefnames.addToExport(sRefName))
- .append("}:~\\titleref{")
- .append(seqrefnames.addToExport(sRefName))
- .append("}");
- bUsesTitleref = true;
- }
- else { // use current value
- palette.getInlineCv().traversePCDATA(node,ldp,oc);
- }
- }
- }
-
- // Try to handle this reference name as a Zotero reference, return true on success
- private boolean handleZoteroReferenceName(String sName, LaTeXDocumentPortion ldp, Context oc) {
- // First parse the reference name:
- // A Zotero reference name has the form ZOTERO_ITEM Process a reference mark end (text:reference-mark-end tag)
- * @param node The element containing the reference mark - * @param ldp theLaTeXDocumentPortion
to which
- * LaTeX code should be added
- * @param oc the current context
- */
- public void handleReferenceMarkEnd(Element node, LaTeXDocumentPortion ldp, Context oc) {
- // Nothing to do, except to mark that this ends any Zotero/JabRef citation
- oc.setInZoteroJabRefText(false);
- if (bIncludeOriginalCitations) { // Protect space after comment
- ldp.append("{}");
- }
- }
-
- /** Process a reference mark (text:reference-mark or text:reference-mark-start tag)
- * @param node The element containing the reference mark - * @param ldp theLaTeXDocumentPortion
to which
- * LaTeX code should be added
- * @param oc the current context
- */
- public void handleReferenceMark(Element node, LaTeXDocumentPortion ldp, Context oc) {
- if (!oc.isInSection() && !oc.isInCaption() && !oc.isVerbatim()) {
- String sName = node.getAttribute(XMLString.TEXT_NAME);
- // Zotero and JabRef (mis)uses reference marks to store citations, so check this first
- if (sName!=null && (!bConvertZotero || !handleZoteroReferenceName(sName, ldp, oc))
- && (!bConvertJabRef || !handleJabRefReferenceName(sName, ldp, oc))) {
- // Plain reference mark
- // Note: Always include \label here, even when it's not used
- ldp.append("\\label{ref:"+refnames.addToExport(shortenRefname(sName))+"}");
- }
- }
- else {
- // Reference marks should not appear within \section or \caption
- postponedReferenceMarks.add(node);
- }
- }
-
- /** Process a reference (text:reference-ref tag)
- * @param node The element containing the reference - * @param ldp theLaTeXDocumentPortion
to which
- * LaTeX code should be added
- * @param oc the current context
- */
- public void handleReferenceRef(Element node, LaTeXDocumentPortion ldp, Context oc) {
- String sFormat = node.getAttribute(XMLString.TEXT_REFERENCE_FORMAT);
- String sName = node.getAttribute(XMLString.TEXT_REF_NAME);
- if (("page".equals(sFormat) || "".equals(sFormat)) && sName!=null) {
- ldp.append("\\pageref{ref:"+refnames.addToExport(shortenRefname(sName))+"}");
- }
- else if ("chapter".equals(sFormat) && ofr.referenceMarkInHeading(sName)) {
- // This is safe if the reference mark is contained in a heading
- ldp.append("\\ref{ref:"+refnames.addToExport(shortenRefname(sName))+"}");
- }
- else { // use current value
- palette.getInlineCv().traversePCDATA(node,ldp,oc);
- }
- }
-
- /** Process a bookmark (text:bookmark tag)
- *A bookmark may be the target for either a hyperlink or a reference,
- * so this will generate a \\hyperref
and/or a \\label
LaTeXDocumentPortion
to which
- * LaTeX code should be added
- * @param oc the current context
- */
- public void handleBookmark(Element node, LaTeXDocumentPortion ldp, Context oc) {
- if (!oc.isInSection() && !oc.isInCaption() && !oc.isVerbatim()) {
- String sName = node.getAttribute(XMLString.TEXT_NAME);
- if (sName!=null) {
- // A bookmark may be used as a target for a hyperlink as well as
- // for a reference. We export whatever is actually used:
- addTarget(node,"",ldp);
- if (ofr.hasBookmarkRefTo(sName)) {
- ldp.append("\\label{bkm:"+bookmarknames.addToExport(sName)+"}");
- }
- }
- }
- else {
- // Bookmarks should not appear within \section or \caption
- postponedBookmarks.add(node);
- }
- }
-
- /** Process a bookmark reference (text:bookmark-ref tag).
- * @param node The element containing the bookmark reference - * @param ldp theLaTeXDocumentPortion
to which
- * LaTeX code should be added
- * @param oc the current context
- */
- public void handleBookmarkRef(Element node, LaTeXDocumentPortion ldp, Context oc) {
- String sFormat = node.getAttribute(XMLString.TEXT_REFERENCE_FORMAT);
- String sName = node.getAttribute(XMLString.TEXT_REF_NAME);
- if (("page".equals(sFormat) || "".equals(sFormat)) && sName!=null) {
- ldp.append("\\pageref{bkm:"+bookmarknames.addToExport(sName)+"}");
- }
- else if ("chapter".equals(sFormat) && ofr.bookmarkInHeading(sName)) {
- // This is safe if the bookmark is contained in a heading
- ldp.append("\\ref{bkm:"+bookmarknames.addToExport(sName)+"}");
- }
- else if (("number".equals(sFormat) || "number-no-superior".equals(sFormat) || "number-all-superior".equals(sFormat)) &&
- (ofr.bookmarkInHeading(sName) || ofr.bookmarkInList(sName))) {
- ListStyle style=null;
- int nLevel = 0;
- String sPrefix=null;
- String sSuffix=null;
- // Only convert the prefix and suffix if it is converted at the reference target
- if (ofr.bookmarkInHeading(sName)) {
- if (config.formatting()>=LaTeXConfig.CONVERT_MOST) {
- style = ofr.getOutlineStyle();
- }
- nLevel = ofr.getBookmarkHeadingLevel(sName);
- }
- else {
- if (config.formatting()>=LaTeXConfig.CONVERT_BASIC) {
- style = ofr.getListStyle(ofr.getBookmarkListStyle(sName));
- }
- nLevel = ofr.getBookmarkListLevel(sName);
- }
- if (style!=null) {
- sPrefix = style.getLevelProperty(nLevel, XMLString.STYLE_NUM_PREFIX);
- sSuffix = style.getLevelProperty(nLevel, XMLString.STYLE_NUM_SUFFIX);
- }
- if (sPrefix!=null) ldp.append(palette.getI18n().convert(sPrefix,false,oc.getLang()));
- ldp.append("\\ref{bkm:").append(bookmarknames.addToExport(sName)).append("}");
- if (sSuffix!=null) ldp.append(palette.getI18n().convert(sSuffix,false,oc.getLang()));
- }
- else { // use current value
- palette.getInlineCv().traversePCDATA(node,ldp,oc);
- }
- }
-
- /** Do we have any pending reference marks or bookmarks, that may be inserted in this context?
- *
- * @param oc the context to verify against
- * @return true if there are pending marks
- */
- public boolean hasPendingReferenceMarks(Context oc) {
- return !oc.isInSection() && !oc.isInCaption() && !oc.isVerbatim() &&
- postponedReferenceMarks.size()+postponedBookmarks.size()>0;
- }
-
- /** Process pending reference marks and bookmarks (which may have been - * postponed within sections, captions or verbatim text.
- * @param ldp theLaTeXDocumentPortion
to which
- * LaTeX code should be added
- * @param oc the current context
- */
- public void flushReferenceMarks(LaTeXDocumentPortion ldp, Context oc) {
- // We may still be in a context with no reference marks
- if (!oc.isInSection() && !oc.isInCaption() && !oc.isVerbatim()) {
- // Type out all postponed reference marks
- int n = postponedReferenceMarks.size();
- for (int i=0; iLaTeXDocumentPortion
to which
- * LaTeX code should be added
- * @param oc the current context
- */
- public void handleAnchor(Element node, LaTeXDocumentPortion ldp, Context oc) {
- String sHref = node.getAttribute(XMLString.XLINK_HREF);
- if (sHref!=null) {
- if (sHref.startsWith("#")) {
- // TODO: hyperlinks to headings (?) and objects
- if (bUseHyperref) {
- ldp.append("\\hyperlink{")
- .append(targets.addToExport(Misc.urlDecode(sHref.substring(1))))
- .append("}{");
- // ignore text style (let hyperref.sty handle the decoration):
- palette.getInlineCv().traverseInlineText(node,ldp,oc);
- ldp.append("}");
- }
- else { // user don't want to include hyperlinks
- palette.getInlineCv().handleTextSpan(node,ldp,oc);
- }
- }
- else {
- if (bUseHyperref) {
- if (OfficeReader.getTextContent(node).trim().equals(sHref)) {
- // The link text equals the url
- ldp.append("\\url{")
- .append(escapeHref(sHref,oc.isInFootnote()))
- .append("}");
- }
- else {
- ldp.append("\\href{")
- .append(escapeHref(sHref,oc.isInFootnote()))
- .append("}{");
- // ignore text style (let hyperref.sty handle the decoration):
- palette.getInlineCv().traverseInlineText(node,ldp,oc);
- ldp.append("}");
- }
- }
- else { // user don't want to include hyperlinks
- palette.getInlineCv().handleTextSpan(node,ldp,oc);
- }
- }
- }
- else {
- palette.getInlineCv().handleTextSpan(node,ldp,oc);
- }
- }
-
- /** Add a \\hypertarget
LaTeXDocumentPortion
to which
- * LaTeX code should be added
- */
- public void addTarget(Element node, String sSuffix, LaTeXDocumentPortion ldp) {
- // TODO: Remove this and use addTarget by name only
- String sName = node.getAttribute(XMLString.TEXT_NAME);
- if (sName == null) { sName = node.getAttribute(XMLString.TABLE_NAME); }
- if (sName == null || !bUseHyperref) { return; }
- if (!ofr.hasLinkTo(sName+sSuffix)) { return; }
- ldp.append("\\hypertarget{")
- .append(targets.addToExport(sName+sSuffix))
- .append("}{}");
- }
-
- /** Add a \\hypertarget
LaTeXDocumentPortion
to which
- * LaTeX code should be added
- */
- public void addTarget(String sName, String sSuffix, LaTeXDocumentPortion ldp) {
- if (sName!=null && bUseHyperref && ofr.hasLinkTo(sName+sSuffix)) {
- ldp.append("\\hypertarget{")
- .append(targets.addToExport(sName+sSuffix))
- .append("}{}");
- }
- }
-
- /** Process a page number field (text:page-number tag)
- * @param node The element containing the page number field - * @param ldp theLaTeXDocumentPortion
to which
- * LaTeX code should be added
- * @param oc the current context
- */
- public void handlePageNumber(Element node, LaTeXDocumentPortion ldp, Context oc) {
- // TODO: Obey attributes!
- ldp.append("\\thepage{}");
- }
-
- /** Process a page count field (text:page-count tag)
- * @param node The element containing the page count field - * @param ldp theLaTeXDocumentPortion
to which
- * LaTeX code should be added
- * @param oc the current context
- */
- public void handlePageCount(Element node, LaTeXDocumentPortion ldp, Context oc) {
- // TODO: Obey attributes!
- // Note: Actually LastPage refers to the page number of the last page, not the number of pages
- if (config.useLastpage()) {
- bUsesPageCount = true;
- ldp.append("\\pageref{LastPage}");
- }
- else {
- ldp.append("?");
- }
- }
-
- // Helpers:
-
- private String createPdfMeta(String sName, String sValue) {
- if (sValue==null) { return ""; }
- // Replace commas with semicolons (the keyval package doesn't like commas):
- sValue = sValue.replace(',', ';');
- // Meta data is assumed to be in the default language:
- return ", "+sName+"="+palette.getI18n().convert(sValue,false,palette.getMainContext().getLang());
- }
-
- // For the argument to a href, we have to escape or encode certain characters
- private String escapeHref(String s, boolean bInFootnote) {
- StringBuilder buf = new StringBuilder();
- for (int i=0; itext:h
) and
- * paragraph styles/formatting into LaTeX
- * Export of formatting depends on the option "formatting":
- * ignore_all
- * ignore_most
- * convert_basic
- * convert_most
- * convert_all
- * HeadingConverter
.
- */
- public HeadingConverter(OfficeReader ofr, LaTeXConfig config, ConverterPalette palette) {
- super(ofr,config,palette);
- this.bDisplayHiddenText = config.displayHiddenText();
- }
-
- public void appendDeclarations(LaTeXDocumentPortion pack, LaTeXDocumentPortion decl) {
- appendHeadingStyles(decl);
- }
-
- /** Process a heading
- * @param node The text:h element node containing the heading
- * @param ldp The LaTeXDocumentPortion to add LaTeX code to
- * @param oc The current context
- */
- public void handleHeading(Element node, LaTeXDocumentPortion ldp, Context oc) {
- // Get the style
- String sStyleName = node.getAttribute(XMLString.TEXT_STYLE_NAME);
- StyleWithProperties style = ofr.getParStyle(sStyleName);
-
- // Check for hidden text
- if (!bDisplayHiddenText && style!=null && "none".equals(style.getProperty(XMLString.TEXT_DISPLAY))) {
- return;
- }
-
- // Get the level
- int nLevel = ofr.isOpenDocument() ?
- Misc.getPosInteger(Misc.getAttribute(node, XMLString.TEXT_OUTLINE_LEVEL),1) :
- Misc.getPosInteger(Misc.getAttribute(node, XMLString.TEXT_LEVEL),1);
- boolean bUnNumbered = "true".equals(Misc.getAttribute(node,XMLString.TEXT_IS_LIST_HEADER));
-
- // Get the heading map
- HeadingMap hm = config.getHeadingMap();
-
- if (nLevel<=hm.getMaxLevel()) {
- // Always push the font used
- palette.getI18n().pushSpecialTable(palette.getCharSc().getFontName(style));
-
- Context ic = (Context) oc.clone();
- ic.setInSection(true);
- // Footnotes with more than one paragraph are not allowed within
- // sections. To be safe, we disallow all footnotes
- ic.setNoFootnotes(true);
-
- // Apply style
- BeforeAfter baHardPage = new BeforeAfter();
- BeforeAfter baHardChar = new BeforeAfter();
- applyHardHeadingStyle(nLevel, sStyleName,
- baHardPage, baHardChar, ic);
-
- // Export the heading
- ldp.append(baHardPage.getBefore());
- ldp.append("\\"+hm.getName(nLevel));
- if (bUnNumbered) {
- ldp.append("*");
- }
- else if (baHardChar.getBefore().length()>0 || containsElements(node)) {
- // If this heading contains formatting, add optional argument:
- ldp.append("[");
- palette.getInlineCv().traversePlainInlineText(node,ldp,ic);
- ldp.append("]");
- }
- ldp.append("{").append(baHardChar.getBefore());
- palette.getInlineCv().traverseInlineText(node,ldp,ic);
- ldp.append(baHardChar.getAfter()).append("}").nl();
- ldp.append(baHardPage.getAfter());
-
- // Include pending index marks, labels, footnotes & floating frames
- palette.getFieldCv().flushReferenceMarks(ldp,oc);
- palette.getIndexCv().flushIndexMarks(ldp,oc);
- palette.getNoteCv().flushFootnotes(ldp,oc);
- palette.getDrawCv().flushFloatingFrames(ldp,ic);
-
- // Pop the font name
- palette.getI18n().popSpecialTable();
- }
- else { // beyond supported headings - export as ordinary paragraph
- palette.getParCv().handleParagraph(node,ldp,oc,false);
- }
- }
-
- /** Use a paragraph style on a heading. If hard paragraph formatting
- * is applied to a heading, page break and font is converted - other
- * hard formatting is ignored.
- * This method also collects name of heading style
- * @param nLevel
The level of this heading
- * @param sStyleName
the name of the paragraph style to use
- * @param baPage
a BeforeAfter
to put page break code into
- * @param baText
a BeforeAfter
to put character formatting code into
- * @param context
the current context. This method will use and update the formatting context
- */
- private void applyHardHeadingStyle(int nLevel, String sStyleName,
- BeforeAfter baPage, BeforeAfter baText, Context context) {
-
- // Get the style
- StyleWithProperties style = ofr.getParStyle(sStyleName);
- if (style==null) { return; }
-
- // Register heading style
- if (sHeadingStyles[nLevel]==null) {
- sHeadingStyles[nLevel] = style.isAutomatic() ? style.getParentName() : sStyleName;
- }
-
- // Do conversion
- if (style.isAutomatic()) {
- palette.getPageSc().applyPageBreak(style,false,baPage);
- palette.getCharSc().applyHardCharFormatting(style,baText);
- }
-
- // Update context
- context.updateFormattingFromStyle(style);
- }
-
-
- /** Convert heading styles and outline numbering to LaTeX.
- * An array of stylenames to use is required: The OOo writer file format
- * allows different paragraph styles to be applied to individual headings,
- * so this is not included in the styles.
- * LaTeX (and OOo Writer!) usually uses the same format for all headings.
- * @param ldp the LaTeXDocumentPortion to add definitions to.
- */
- // TODO: use method from ListStyleConverter to create labels
- private void appendHeadingStyles(LaTeXDocumentPortion ldp) {
- // The user may not want to convert the formatting of headings
- if (config.formatting()<=LaTeXConfig.IGNORE_MOST) { return; }
-
- HeadingMap hm = config.getHeadingMap();
-
- // OK, we are going to convert. First find the max level for headings
- int nMaxLevel = 0;
- for (int i=1; i<=5; i++) { if (sHeadingStyles[i]!=null) { nMaxLevel=i; } }
- if (nMaxLevel==0) { return; } // no headings, nothing to do!
- if (nMaxLevel>hm.getMaxLevel()) { nMaxLevel = hm.getMaxLevel(); }
-
- boolean bOnlyNum = config.formatting()==LaTeXConfig.CONVERT_BASIC;
- if (bOnlyNum) {
- ldp.append("% Outline numbering").nl();
- }
- else {
- ldp.append("% Headings and outline numbering").nl()
- .append("\\makeatletter").nl();
- }
-
- // Paragraph style for headings:
- if (!bOnlyNum) {
- for (int i=1; i<=nMaxLevel; i++) {
- if (sHeadingStyles[i]!=null) {
- StyleWithProperties style = ofr.getParStyle(sHeadingStyles[i]);
- if (style!=null) {
- BeforeAfter decl = new BeforeAfter();
- BeforeAfter comm = new BeforeAfter();
-
- palette.getPageSc().applyPageBreak(style,true,decl);
-
- palette.getCharSc().applyNormalFont(decl);
- palette.getCharSc().applyFont(style,true,true,decl,new Context());
- palette.getParCv().applyAlignment(style,false,true,decl);
-
- palette.getI18n().applyLanguage(style,false,true,comm);
- palette.getCharSc().applyFontEffects(style,true,comm);
-
- // Get margin parameters (using first line indent as left margin)
- String sMarginTop = style.getAbsoluteLength(XMLString.FO_MARGIN_TOP);
- String sMarginBottom = style.getAbsoluteLength(XMLString.FO_MARGIN_BOTTOM);
- String sMarginLeft = style.getAbsoluteLength(XMLString.FO_MARGIN_LEFT);
- String sTextIndent = style.getAbsoluteLength(XMLString.FO_TEXT_INDENT);
-
- // Seems that we should *not* override the paragraph style
- /*ListStyle outline = ofr.getOutlineStyle();
- if (outline.isNewType(i)) {
- String sNumFormat = ListStyleConverter.numFormat(outline.getLevelProperty(i,XMLString.STYLE_NUM_FORMAT));
- if (sNumFormat!=null && !"".equals(sNumFormat)) {
- // It there's a numbering, override left margins with the value from the outline
- sMarginLeft = outline.getLevelStyleProperty(i, XMLString.FO_MARGIN_LEFT);
- if (sMarginLeft==null) { sMarginLeft = "0cm"; }
- sTextIndent = outline.getLevelStyleProperty(i, XMLString.FO_TEXT_INDENT);
- if (sTextIndent==null) { sTextIndent = "0cm"; }
- }
- }*/
-
- String sSecName = hm.getName(i);
- if (!comm.isEmpty()) { // have to create a cs for this heading
- ldp.append("\\newcommand\\cs").append(sSecName).append("[1]{")
- .append(comm.getBefore()).append("#1").append(comm.getAfter())
- .append("}").nl();
- }
- // Note: Use first line as left indent (cannot have separate first line indent)
- ldp.append("\\renewcommand\\").append(sSecName)
- .append("{\\@startsection{").append(sSecName).append("}{"+hm.getLevel(i))
- .append("}{"+Calc.add(sMarginLeft,sTextIndent)+"}{");
- // Suppress indentation after heading? currently not..
- // ldp.append("-");
- ldp.append(sMarginTop)
- .append("}{")
- .append(Calc.isZero(sMarginBottom) ? "0.1mm" : sMarginBottom)
- .append("}{");
- // Note: decl.getAfter() may include a page break after, which we ignore
- ldp.append(decl.getBefore());
- if (!comm.isEmpty()) {
- ldp.append("\\cs").append(sSecName);
- }
- ldp.append("}}").nl();
- }
- }
- }
- }
-
- // redefine formatting of section counters
- // simplified if the user wants to ignore formatting
- if (!bOnlyNum) {
- ldp.append("\\renewcommand\\@seccntformat[1]{")
- .append("\\csname @textstyle#1\\endcsname{\\csname the#1\\endcsname}")
- .append("\\csname @distance#1\\endcsname}").nl();
- }
-
- // Collect numbering styles and set secnumdepth
- int nSecnumdepth = nMaxLevel;
- ListStyle outline = ofr.getOutlineStyle();
- String[] sNumFormat = new String[6];
- for (int i=nMaxLevel; i>=1; i--) {
- sNumFormat[i] = ListConverter.numFormat(outline.getLevelProperty(i,
- XMLString.STYLE_NUM_FORMAT));
- if (sNumFormat[i]==null || "".equals(sNumFormat[i])) {
- nSecnumdepth = i-1;
- }
- }
- ldp.append("\\setcounter{secnumdepth}{"+nSecnumdepth+"}").nl();
-
- for (int i=1; i<=nMaxLevel; i++) {
- if (sNumFormat[i]==null || "".equals(sNumFormat[i])) {
- // no numbering at this level
- if (!bOnlyNum) {
- ldp.append("\\newcommand\\@distance")
- .append(hm.getName(i)).append("{}").nl()
- .append("\\newcommand\\@textstyle")
- .append(hm.getName(i)).append("[1]{#1}").nl();
- }
- }
- else {
- if (!bOnlyNum) {
- // Distance between label and text:
- String sSpaceChar="";
- String sDistance=null;
- if (outline.isNewType(i)) {
- String sFormat = outline.getLevelStyleProperty(i, XMLString.TEXT_LABEL_FOLLOWED_BY);
- if ("listtab".equals(sFormat)) {
- String sMarginLeft="0cm";
- String sTextIndent="0cm";
- if (sHeadingStyles[i]!=null) {
- StyleWithProperties style = ofr.getParStyle(sHeadingStyles[i]);
- if (style!=null) {
- sMarginLeft = style.getAbsoluteLength(XMLString.FO_MARGIN_LEFT);
- sTextIndent = style.getAbsoluteLength(XMLString.FO_TEXT_INDENT);
- }
- }
- // Seems that we should *not* override the paragraph style
- /*String sMarginLeft = outline.getLevelStyleProperty(i, XMLString.FO_MARGIN_LEFT);
- if (sMarginLeft==null) { sMarginLeft = "0cm"; }
- String sTextIndent = outline.getLevelStyleProperty(i, XMLString.FO_TEXT_INDENT);
- if (sTextIndent==null) { sTextIndent = "0cm"; }*/
- String sTabPos = outline.getLevelStyleProperty(i, XMLString.TEXT_LIST_TAB_STOP_POSITION);
- if (sTabPos==null) { sTabPos = "0cm"; }
- sDistance = Calc.sub(sTabPos, Calc.add(sMarginLeft, sTextIndent));
- }
- else if ("space".equals(sFormat)) {
- sSpaceChar="\\ ";
- }
- }
- else {
- sDistance = outline.getLevelStyleProperty(i,XMLString.TEXT_MIN_LABEL_DISTANCE);
- }
- ldp.append("\\newcommand\\@distance")
- .append(hm.getName(i)).append("{");
- if (sDistance!=null) {
- ldp.append("\\hspace{").append(sDistance).append("}");
- }
- ldp.append("}").nl();
-
- // Label width and alignment
- String sTextAlign = outline.getLevelStyleProperty(i,XMLString.FO_TEXT_ALIGN);
- String sAlignmentChar = "l"; // start (or left) is default
- if (sTextAlign!=null) {
- if ("end".equals(sTextAlign)) { sAlignmentChar="r"; }
- else if ("right".equals(sTextAlign)) { sAlignmentChar="r"; }
- else if ("center".equals(sTextAlign)) { sAlignmentChar="c"; }
- }
- String sLabelWidth = null;
- if (outline.isNewType(i)) {
- String sFormat = outline.getLevelStyleProperty(i, XMLString.TEXT_LABEL_FOLLOWED_BY);
- if ("listtab".equals(sFormat) || sAlignmentChar=="r") {
- sLabelWidth="0cm";
- }
- }
- else {
- sLabelWidth = outline.getLevelStyleProperty(i,XMLString.TEXT_MIN_LABEL_WIDTH);
- }
- // Textstyle to use for label:
- String sStyleName = outline.getLevelProperty(i,XMLString.TEXT_STYLE_NAME);
- // Prefix and suffix text to decorate the label
- String sPrefix = outline.getLevelProperty(i,XMLString.STYLE_NUM_PREFIX);
- String sSuffix = outline.getLevelProperty(i,XMLString.STYLE_NUM_SUFFIX);
- // TODO is this correct?? todo: space-before??? start value???
- BeforeAfter baText = new BeforeAfter();
- if (!bOnlyNum) {palette.getCharSc().applyTextStyle(sStyleName,baText,new Context()); }
- ldp.append("\\newcommand\\@textstyle")
- .append(hm.getName(i)).append("[1]{");
- if (!bOnlyNum && sLabelWidth!=null) {
- ldp.append("\\protect\\makebox[").append(sLabelWidth).append("][").append(sAlignmentChar).append("]{");
- }
- ldp.append(baText.getBefore())
- .append(sPrefix!=null ? palette.getI18n().convert(sPrefix,false,"en") : "")
- .append("#1")
- .append(sSuffix!=null ? palette.getI18n().convert(sSuffix,false,"en") : "")
- .append(sSpaceChar)
- .append(baText.getAfter());
- if (!bOnlyNum && sLabelWidth!=null) {
- ldp.append("}");
- }
- ldp.append("}").nl();
- }
-
- // The label:
- int nLevels = Misc.getPosInteger(outline.getLevelProperty(i,
- XMLString.TEXT_DISPLAY_LEVELS),1);
- ldp.append("\\renewcommand\\the")
- .append(hm.getName(i))
- .append("{");
- for (int j=i-nLevels+1; j.
- *
- * Version 1.4 (2014-09-18)
- *
- */
-
-package writer2latex.latex;
-
-import java.util.Vector;
-
-import org.w3c.dom.Element;
-//import org.w3c.dom.Node;
-
-import writer2latex.util.Misc;
-
-import writer2latex.office.IndexMark;
-import writer2latex.office.OfficeReader;
-import writer2latex.office.XMLString;
-
-import writer2latex.latex.util.Context;
-
-/**
- * This class handles indexes (table of contents, list of tables, list of - * illustrations, object index, user index, alphabetical index) - * as well as their associated index marks.
- */ -public class IndexConverter extends ConverterHelper { - - private boolean bContainsAlphabeticalIndex = false; - - private VectorConstruct a new IndexConverter
.
- * @param config the configuration to use
- * @param palette the ConverterPalette
to link to
- * if such a document is created by the IndexConverter
- */
- public IndexConverter(OfficeReader ofr,LaTeXConfig config, ConverterPalette palette) {
- super(ofr,config,palette);
- }
-
- /**
Append declarations needed by the IndexConverter
to
- * the preamble.
- * @param pack the LaTeXDocumentPortion
to which
- * declarations of packages should be added (\\usepackage
).
- * @param decl the LaTeXDocumentPortion
to which
- * other declarations should be added.
- */
- public void appendDeclarations(LaTeXDocumentPortion pack, LaTeXDocumentPortion decl) {
- if (bContainsAlphabeticalIndex) {
- pack.append("\\usepackage{makeidx}").nl();
- decl.append("\\makeindex").nl();
- }
- }
-
- /** Process Table of Contents (text:table-of-content tag)
- * @param node The element containing the Table of Contents
- * @param ldp the LaTeXDocumentPortion
to which
- * LaTeX code should be added
- * @param oc the current context
- */
- public void handleTOC (Element node, LaTeXDocumentPortion ldp, Context oc) {
- if (config.noIndex()) { return; }
- /* TODO: Apply more formatting by modfification of \l@section etc.
- Something like this:
- \newcommand\l@section[2]{\@dottedtocline{1}{1.5em}{2.3em}{\textbf{#1}}{\textit{#2}}
- Textformatting is trivial; see article.cls for examples of more complicated
- formatting. Note: The section number can't be formatted indivdually.*/
-
- Element source = Misc.getChildByTagName(node,XMLString.TEXT_TABLE_OF_CONTENT_SOURCE);
- if (source!=null) {
- if ("chapter".equals(source.getAttribute(XMLString.TEXT_INDEX_SOURCE))) {
- ldp.append("[Warning: Table of content (for this chapter) ignored!]").nl().nl();
- }
- else {
- int nLevel = Misc.getPosInteger(source.getAttribute(XMLString.TEXT_OUTLINE_LEVEL),1);
- ldp.append("\\setcounter{tocdepth}{"+nLevel+"}").nl();
- Element title = Misc.getChildByTagName(source,XMLString.TEXT_INDEX_TITLE_TEMPLATE);
- if (title!=null) {
- ldp.append("\\renewcommand\\contentsname{");
- palette.getInlineCv().traversePCDATA(title,ldp,oc);
- ldp.append("}").nl();
- }
- }
- }
- ldp.append("\\tableofcontents").nl();
- }
-
- /** Process List of Illustrations (text:list-of-illustrations tag)
- * @param node The element containing the List of Illustrations
- * @param ldp the LaTeXDocumentPortion
to which
- * LaTeX code should be added
- * @param oc the current context
- */
- public void handleLOF (Element node, LaTeXDocumentPortion ldp, Context oc) {
- if (config.noIndex()) { return; }
- ldp.append("\\listoffigures").nl();
- }
-
- /** Process List of Tables (text:list-of-tables tag)
- * @param node The element containing the List of Tables
- * @param ldp the LaTeXDocumentPortion
to which
- * LaTeX code should be added
- * @param oc the current context
- */
- public void handleLOT (Element node, LaTeXDocumentPortion ldp, Context oc) {
- if (config.noIndex()) { return; }
- ldp.append("\\listoftables").nl();
- }
-
- /** Process Object Index (text:object index tag)
- * @param node The element containing the Object Index
- * @param ldp the LaTeXDocumentPortion
to which
- * LaTeX code should be added
- * @param oc the current context
- */
- public void handleObjectIndex (Element node, LaTeXDocumentPortion ldp, Context oc) {
- if (config.noIndex()) { return; }
- ldp.append("[Warning: Object index ignored]").nl().nl();
- }
-
- /** Process User Index (text:user-index tag)
- * @param node The element containing the User Index
- * @param ldp the LaTeXDocumentPortion
to which
- * LaTeX code should be added
- * @param oc the current context
- */
- public void handleUserIndex (Element node, LaTeXDocumentPortion ldp, Context oc) {
- if (config.noIndex()) { return; }
- ldp.append("[Warning: User index ignored]").nl().nl();
- }
-
-
- /** Process Alphabetical Index (text:alphabetical-index tag)
- * @param node The element containing the Alphabetical Index
- * @param ldp the LaTeXDocumentPortion
to which
- * LaTeX code should be added
- * @param oc the current context
- */
- public void handleAlphabeticalIndex (Element node, LaTeXDocumentPortion ldp, Context oc) {
- if (config.noIndex()) { return; }
- ldp.append("\\printindex").nl();
- bContainsAlphabeticalIndex = true;
- }
-
-
- /** Process an Alphabetical Index Mark (text:alphabetical-index-mark{-start} tag)
- * @param node The element containing the Mark
- * @param ldp the LaTeXDocumentPortion
to which
- * LaTeX code should be added
- * @param oc the current context
- */
- public void handleAlphabeticalIndexMark(Element node, LaTeXDocumentPortion ldp, Context oc) {
- if (!oc.isInSection() && !oc.isInCaption() && !oc.isVerbatim()) {
- String sValue = IndexMark.getIndexValue(node);
- if (sValue!=null) {
- ldp.append("\\index{");
- String sKey1 = IndexMark.getKey1(node);
- if (sKey1!=null) {
- writeIndexText(sKey1.trim(),ldp,oc);
- ldp.append("!");
- }
- String sKey2 = IndexMark.getKey2(node);
- if (sKey2!=null) {
- writeIndexText(sKey2.trim(),ldp,oc);
- ldp.append("!");
- }
- writeIndexText(sValue.trim(),ldp,oc);
- ldp.append("}");
- }
- }
- else {
- // Index marks should not appear within \section or \caption
- postponedIndexMarks.add(node);
- }
- }
-
- /** Do we have any pending index marks, that may be inserted in this context?
- *
- * @param oc the context to verify against
- * @return true if there are pending index marks
- */
- public boolean hasPendingIndexMarks(Context oc) {
- return !oc.isInSection() && !oc.isInCaption() && !oc.isVerbatim() &&
- postponedIndexMarks.size()>0;
- }
-
- public void flushIndexMarks(LaTeXDocumentPortion ldp, Context oc) {
- // We may still be in a context with no index marks
- if (!oc.isInSection() && !oc.isInCaption() && !oc.isVerbatim()) {
- // Type out all postponed index marks
- int n = postponedIndexMarks.size();
- for (int i=0; i
This class handles basic inline text.
- */ -public class InlineConverter extends ConverterHelper { - - // Display hidden text? - private boolean bDisplayHiddenText = false; - - private boolean bIncludeOriginalCitations = false; - private String sTabstop = "\\ \\ "; - private boolean bHasPdfannotation = false; - - public InlineConverter(OfficeReader ofr, LaTeXConfig config, ConverterPalette palette) { - super(ofr,config,palette); - bIncludeOriginalCitations = config.includeOriginalCitations(); - // Get custom code for tab stops - if (config.getTabstop().length()>0) { - sTabstop = config.getTabstop(); - } - this.bDisplayHiddenText = config.displayHiddenText(); - } - - public void appendDeclarations(LaTeXDocumentPortion pack, LaTeXDocumentPortion decl) { - if (bHasPdfannotation) { - decl.append("\\newcommand\\pdfannotation[1]") - .append("{\\ifx\\pdfoutput\\undefined\\marginpar{#1}\\else") - .append("\\pdfstringdef\\tempstring{#1}\\marginpar{") - .append("\\pdfannot width 5cm height 12pt depth 4cm ") - .append("{ /Subtype /Text /Open false /Contents(\\tempstring) /Color [1 0 0]}") - .append("}\\fi}").nl(); - } - } - - /** Handle several text:span elements - * - */ - private void handleTextSpans(Element[] nodes, LaTeXDocumentPortion ldp, Context oc) { - if (oc.isMathMode()) { - for (Element node : nodes) { - handleTextSpanMath(node, ldp, oc); - } - } - else { - handleTextSpanText(ldp, oc, nodes); - } - } - - /** Handle a text:span element - */ - public void handleTextSpan(Element node, LaTeXDocumentPortion ldp, Context oc) { - if (oc.isMathMode()) { handleTextSpanMath(node, ldp, oc); } - else { handleTextSpanText(ldp, oc, node); } - } - - private void handleTextSpanMath(Element node, LaTeXDocumentPortion ldp, Context oc) { - // TODO: Handle a selection of formatting attributes: color, superscript... - String sStyleName = node.getAttribute(XMLString.TEXT_STYLE_NAME); - StyleWithProperties style = ofr.getTextStyle(sStyleName); - - // Check for hidden text - if (!bDisplayHiddenText && style!=null && "none".equals(style.getProperty(XMLString.TEXT_DISPLAY))) { - return; - } - - // Always push the font used - palette.getI18n().pushSpecialTable(palette.getCharSc().getFontName(style)); - - // Convert formatting - BeforeAfter ba = new BeforeAfter(); - if (style!=null) { - String sPos = style.getProperty(XMLString.STYLE_TEXT_POSITION, true); - if (sPos!=null) { - if (sPos.startsWith("sub") || sPos.startsWith("-")) { - ba.add("_{", "}"); - } - else if (sPos.startsWith("super") || !sPos.startsWith("0%")) { - ba.add("^{", "}"); - } - } - } - - ldp.append(ba.getBefore()); - traverseInlineMath(node, ldp, oc); - ldp.append(ba.getAfter()); - - // finally pop the font table - palette.getI18n().popSpecialTable(); - } - - // Handle several spans. - // If the converted formatting happens to be identical (e.g. \textbf{...}), the spans will be merged. - private void handleTextSpanText(LaTeXDocumentPortion ldp, Context oc, Element... nodes) { - // The current formatting - BeforeAfter baCurrent = new BeforeAfter(); - for (Element node : nodes) { - String sStyleName = node.getAttribute(XMLString.TEXT_STYLE_NAME); - StyleWithProperties style = ofr.getTextStyle(sStyleName); - - // First check for hidden text - if (bDisplayHiddenText || style==null || !"none".equals(style.getProperty(XMLString.TEXT_DISPLAY))) { - // Then check for strict handling of styles - String sDisplayName = ofr.getTextStyles().getDisplayName(sStyleName); - if (config.otherStyles()!=LaTeXConfig.ACCEPT && !config.getTextStyleMap().contains(sDisplayName)) { - if (config.otherStyles()==LaTeXConfig.WARNING) { - System.err.println("Warning: Text with style "+sDisplayName+" was ignored"); - } - else if (config.otherStyles()==LaTeXConfig.ERROR) { - ldp.append("% Error in source document: Text with style ") - .append(palette.getI18n().convert(sDisplayName,false,oc.getLang())) - .append(" was ignored").nl(); - } - } - else { - // We do want to convert this span :-) - - // Always push the font used - palette.getI18n().pushSpecialTable(palette.getCharSc().getFontName(ofr.getTextStyle(sStyleName))); - - // Apply the style - BeforeAfter ba = new BeforeAfter(); - Context ic = (Context) oc.clone(); - // Don't style it if - // - we're already within a verbatim environment - // - a {foot|end}note is the only content - // - there is no content - // - this is an automatic style in header/footer (name clash problem, only in package format) - if (!oc.isVerbatim() && !onlyNote(node) && OfficeReader.getCharacterCount(node)>0 - && !(ofr.isPackageFormat() && (style!=null && style.isAutomatic()) && oc.isInHeaderFooter())) { - palette.getCharSc().applyTextStyle(sStyleName,ba,ic); - } - - // Footnote problems: - // No footnotes in sub/superscript (will disappear) - // No multiparagraph footnotes embedded in text command (eg. \textbf{..}) - // Simple solution: styled text element is forbidden area for footnotes - if ((ba.getBefore().length()>0 || ba.getAfter().length()>0) && !ic.isInFootnote()) { - ic.setNoFootnotes(true); - } - - // Merge spans? If the formatting of this span differs from the previous span, we will close the - // previous span and start a new one - if (!ba.getBefore().equals(baCurrent.getBefore()) || !ba.getAfter().equals(baCurrent.getAfter())) { - ldp.append(baCurrent.getAfter()); - ldp.append(ba.getBefore()); - baCurrent = ba; - } - - traverseInlineText(node,ldp,ic); - - // In the special case of pending footnotes, index marks and reference marks, we will close the span now. - // Otherwise we will wait and see - if (palette.getNoteCv().hasPendingFootnotes(oc) - || palette.getIndexCv().hasPendingIndexMarks(oc) - || palette.getFieldCv().hasPendingReferenceMarks(oc)) { - ldp.append(baCurrent.getAfter()); - baCurrent = new BeforeAfter(); - } - - // Flush any pending footnotes, index marks and reference marks - if (!ic.isInFootnote()) { palette.getNoteCv().flushFootnotes(ldp,oc); } - palette.getFieldCv().flushReferenceMarks(ldp,oc); - palette.getIndexCv().flushIndexMarks(ldp,oc); - - // finally pop the special table - palette.getI18n().popSpecialTable(); - } - } - } - ldp.append(baCurrent.getAfter()); - } - - public void traverseInlineText(Element node, LaTeXDocumentPortion ldp, Context oc) { - if (oc.isVerbatim()) { - traverseVerbatimInlineText(node,ldp,oc); - } - else if (oc.isMathMode()) { - traverseInlineMath(node,ldp,oc); - } - else { - traverseOrdinaryInlineText(node,ldp,oc); - } - } - - // Traverse ordinary inline text in text mode (temporarily changing to math - // mode for a sequence of text:span with style "OOoLaTeX") - private void traverseOrdinaryInlineText(Element node,LaTeXDocumentPortion ldp, Context oc) { - Node childNode = node.getFirstChild(); - while (childNode!=null) { - short nodeType = childNode.getNodeType(); - - switch (nodeType) { - case Node.TEXT_NODE: - String s = childNode.getNodeValue(); - if (s.length() > 0) { - if (oc.isInZoteroJabRefText()) { - if (bIncludeOriginalCitations) { // Include original citation as a comment - ldp.append("%") - .append(palette.getI18n().convert(s, false, oc.getLang())) - .nl(); - } - } - else { // Normal text - ldp.append(palette.getI18n().convert(s, false, oc.getLang())); - } - } - break; - - case Node.ELEMENT_NODE: - Element child = (Element)childNode; - String sName = child.getTagName(); - if (sName.equals(XMLString.TEXT_SPAN)) { - String sStyleName = child.getAttribute(XMLString.TEXT_STYLE_NAME); - boolean bIsMathSpan = "OOoLaTeX".equals(ofr.getTextStyles().getDisplayName(sStyleName)); - if (bIsMathSpan) { - // Temporarily change to math mode - Context ic = (Context) oc.clone(); - ic.setMathMode(true); - - ldp.append("$"); - - Node remember; - boolean bContinue = false; - - do { - handleTextSpanMath((Element)childNode, ldp, ic); - remember = childNode; - childNode = childNode.getNextSibling(); - bContinue = false; - if (childNode!=null && childNode.getNodeType()==Node.ELEMENT_NODE && - childNode.getNodeName().equals(XMLString.TEXT_SPAN)) { - sStyleName = Misc.getAttribute(childNode,XMLString.TEXT_STYLE_NAME); - if ("OOoLaTeX".equals(ofr.getTextStyles().getDisplayName(sStyleName))) - //child = (Element) childNode; - bContinue = true; - } - } while(bContinue); - childNode = remember; - - ldp.append("$"); - } - else { - // Collect further spans - VectorLaTeXConfig
with default values for all options
- */
- public LaTeXConfig() {
- super();
-
- // create options with default values
- options[NO_PREAMBLE] = new BooleanOption("no_preamble","false");
- options[NO_INDEX] = new BooleanOption("no_index","false");
- options[DOCUMENTCLASS] = new Option("documentclass","article");
- options[GLOBAL_OPTIONS] = new Option("global_options","");
- options[BACKEND] = new IntegerOption("backend","pdftex") {
- public void setString(String sValue) {
- super.setString(sValue);
- if ("generic".equals(sValue)) nValue = GENERIC;
- else if ("dvips".equals(sValue)) nValue = DVIPS;
- else if ("pdftex".equals(sValue)) nValue = PDFTEX;
- else if ("unspecified".equals(sValue)) nValue = UNSPECIFIED;
- else if ("xetex".equals(sValue)) nValue = XETEX;
- }
- };
- options[INPUTENCODING] = new IntegerOption("inputencoding",ClassicI18n.writeInputenc(ClassicI18n.ASCII)) {
- public void setString(String sValue) {
- super.setString(sValue);
- nValue = ClassicI18n.readInputenc(sValue);
- }
- };
- options[MULTILINGUAL] = new BooleanOption("multilingual","true");
- options[GREEK_MATH] = new BooleanOption("greek_math","true");
- options[USE_OOOMATH] = new BooleanOption("use_ooomath","false");
- options[USE_PIFONT] = new BooleanOption("use_pifont","false");
- options[USE_IFSYM] = new BooleanOption("use_ifsym","false");
- options[USE_WASYSYM] = new BooleanOption("use_wasysym","false");
- options[USE_BBDING] = new BooleanOption("use_bbding","false");
- options[USE_EUROSYM] = new BooleanOption("use_eurosym","false");
- options[USE_TIPA] = new BooleanOption("use_tipa","false");
- options[USE_COLOR] = new BooleanOption("use_color","true");
- options[USE_COLORTBL] = new BooleanOption("use_colortbl","false");
- options[USE_GEOMETRY] = new BooleanOption("use_geometry","false");
- options[USE_FANCYHDR] = new BooleanOption("use_fancyhdr","false");
- options[USE_TITLESEC] = new BooleanOption("use_titlesec","false");
- options[USE_TITLETOC] = new BooleanOption("use_titletoc","false");
- options[USE_HYPERREF] = new BooleanOption("use_hyperref","true");
- options[USE_CAPTION] = new BooleanOption("use_caption","false");
- options[USE_LONGTABLE] = new BooleanOption("use_longtable","false");
- options[USE_SUPERTABULAR] = new BooleanOption("use_supertabular","true");
- options[USE_TABULARY] = new BooleanOption("use_tabulary","false");
- options[USE_ENDNOTES] = new BooleanOption("use_endnotes","false");
- options[USE_ULEM] = new BooleanOption("use_ulem","false");
- options[USE_LASTPAGE] = new BooleanOption("use_lastpage","false");
- options[USE_TITLEREF] = new BooleanOption("use_titleref","false");
- options[USE_BIBTEX] = new BooleanOption("use_bibtex","false");
- options[BIBTEX_STYLE] = new Option("bibtex_style","plain");
- options[EXTERNAL_BIBTEX_FILES] = new Option("external_bibtex_files","");
- options[BIBTEX_ENCODING] = new IntegerOption("bibtex_encoding","document") {
- public void setString(String sValue) {
- super.setString(sValue);
- if ("document".equals(sValue)) { nValue = -1; }
- else { nValue = ClassicI18n.readInputenc(sValue); }
- }
- };
- options[ZOTERO_BIBTEX_FILES] = new Option("zotero_bibtex_files","");
- options[JABREF_BIBTEX_FILES] = new Option("jabref_bibtex_files","");
- options[INCLUDE_ORIGINAL_CITATIONS] = new BooleanOption("include_original_citations","false");
- options[USE_NATBIB] = new BooleanOption("use_natbib","false");
- options[NATBIB_OPTIONS] = new Option("natbib_options","");
- options[FONT] = new Option("font","default");
- options[FORMATTING] = new IntegerOption("formatting","convert_basic") {
- public void setString(String sValue) {
- super.setString(sValue);
- if ("convert_all".equals(sValue)) nValue = CONVERT_ALL;
- else if ("convert_most".equals(sValue)) nValue = CONVERT_MOST;
- else if ("convert_basic".equals(sValue)) nValue = CONVERT_BASIC;
- else if ("ignore_most".equals(sValue)) nValue = IGNORE_MOST;
- else if ("ignore_all".equals(sValue)) nValue = IGNORE_ALL;
- }
- };
- options[PAGE_FORMATTING] = new IntegerOption("page_formatting","convert_all") {
- public void setString(String sValue) {
- super.setString(sValue);
- if ("convert_all".equals(sValue)) nValue = CONVERT_ALL;
- else if ("convert_header_footer".equals(sValue)) nValue = CONVERT_HEADER_FOOTER;
- else if ("convert_geometry".equals(sValue)) nValue = CONVERT_GEOMETRY;
- else if ("ignore_all".equals(sValue)) nValue = IGNORE_ALL;
- }
- };
- options[OTHER_STYLES] = new ContentHandlingOption("other_styles","accept");
- options[IMAGE_CONTENT] = new ContentHandlingOption("image_content","accept");
- options[TABLE_CONTENT] = new ContentHandlingOption("table_content","accept");
- options[TABLE_FIRST_HEAD_STYLE] = new Option("table_first_head_style","");
- options[TABLE_HEAD_STYLE] = new Option("table_head_style","");
- options[TABLE_FOOT_STYLE] = new Option("table_foot_style","");
- options[TABLE_LAST_FOOT_STYLE] = new Option("table_last_foot_style","");
- options[IGNORE_HARD_PAGE_BREAKS] = new BooleanOption("ignore_hard_page_breaks","false");
- options[IGNORE_HARD_LINE_BREAKS] = new BooleanOption("ignore_hard_line_breaks","false");
- options[IGNORE_EMPTY_PARAGRAPHS] = new BooleanOption("ignore_empty_paragraphs","false");
- options[IGNORE_DOUBLE_SPACES] = new BooleanOption("ignore_double_spaces","false");
- options[DISPLAY_HIDDEN_TEXT] = new BooleanOption("display_hidden_text","false");
- options[ALIGN_FRAMES] = new BooleanOption("align_frames","true");
- options[FLOAT_FIGURES] = new BooleanOption("float_figures","false");
- options[FLOAT_TABLES] = new BooleanOption("float_tables","false");
- options[FLOAT_OPTIONS] = new Option("float_options","h");
- options[FIGURE_SEQUENCE_NAME] = new BooleanOption("figure_sequence_name","");
- options[TABLE_SEQUENCE_NAME] = new BooleanOption("table_sequence_name","");
- options[IMAGE_OPTIONS] = new Option("image_options","");
- options[REMOVE_GRAPHICS_EXTENSION] = new BooleanOption("remove_graphics_extension","false");
- options[ORIGINAL_IMAGE_SIZE] = new BooleanOption("original_image_size","false");
- options[SIMPLE_TABLE_LIMIT] = new IntegerOption("simple_table_limit","0") {
- public void setString(String sValue) {
- super.setString(sValue);
- nValue = Misc.getPosInteger(sValue,0);
- }
- };
- options[NOTES] = new IntegerOption("notes","comment") {
- public void setString(String sValue) {
- super.setString(sValue);
- if ("ignore".equals(sValue)) nValue = IGNORE;
- else if ("comment".equals(sValue)) nValue = COMMENT;
- else if ("pdfannotation".equals(sValue)) nValue = PDFANNOTATION;
- else if ("marginpar".equals(sValue)) nValue = MARGINPAR;
- else nValue = CUSTOM;
- }
- };
- options[METADATA] = new BooleanOption("metadata","true");
- options[TABSTOP] = new Option("tabstop","");
- options[WRAP_LINES_AFTER] = new IntegerOption("wrap_lines_after","120") {
- public void setString(String sValue) {
- super.setString(sValue);
- nValue = Misc.getPosInteger(sValue,0);
- }
- };
- options[SPLIT_LINKED_SECTIONS] = new BooleanOption("split_linked_sections","false");
- options[SPLIT_TOPLEVEL_SECTIONS] = new BooleanOption("split_toplevel_sections","false");
- options[SAVE_IMAGES_IN_SUBDIR] = new BooleanOption("save_images_in_subdir","false");
- options[OLD_MATH_COLORS] = new BooleanOption("old_math_colors","false");
- options[DEBUG] = new BooleanOption("debug","false");
-
- // Complex options - heading map
- headingMap = addComplexOption("heading-map");
- MapClass representing a LaTeX document.
- * - */ -public class LaTeXDocument implements OutputFile { - private static final String FILE_EXTENSION = ".tex"; - - private String sName; - - private boolean bIsMaster; - - private String sEncoding = "ASCII"; - - private int nWrap; - - private LaTeXDocumentPortion contents; - - /** - *Constructs a new LaTeX Document.
- * - *This new document is empty. Document data must added to the preamble and - * the body using appropriate methods.
- * - * @param sName The name of theLaTeXDocument
.
- * @param nWrap Lines should be wrapped after this position
- * @param bIsMaster true if this is a master document
- */
- public LaTeXDocument(String sName,int nWrap,boolean bIsMaster) {
- this.nWrap = nWrap;
- this.sName = trimDocumentName(sName);
- this.bIsMaster = bIsMaster;
- contents = new LaTeXDocumentPortion(true);
- }
-
- /**
- * Returns the Document
name with no file extension.
Document
name with no file extension.
- */
- public String getName() {
- return sName;
- }
-
-
- /**
- * Returns the Document
name with file extension.
Document
name with file extension.
- */
- public String getFileName() {
- return new String(sName + FILE_EXTENSION);
- }
-
- public String getMIMEType() {
- return MIMETypes.LATEX;
- }
-
- public boolean isMasterDocument() {
- return bIsMaster;
- }
-
- public boolean containsMath() {
- // We don't use this information currently
- return true;
- }
-
- /**
- * Writes out the Document
content to the specified
- * OutputStream
.
This method may not be thread-safe. - * Implementations may or may not synchronize this - * method. User code (i.e. caller) must make sure that - * calls to this method are thread-safe.
- * - * @param osOutputStream
to write out the
- * Document
content.
- *
- * @throws IOException If any I/O error occurs.
- */
- public void write(OutputStream os) throws IOException {
- OutputStreamWriter osw = new OutputStreamWriter(os,sEncoding);
- contents.write(osw,nWrap,"\n");
- osw.flush();
- osw.close();
- }
-
- /**
- * Set the output encoding to use when writing the document.
- */ - public void setEncoding(String sEncoding) { this.sEncoding = sEncoding; } - - /** - *Returns the LaTeXDocumentPortion
, that contains the
- * contents of the document.
LaTeXDocumentPortion
.
- */
- public LaTeXDocumentPortion getContents(){
- return contents;
- }
-
- /*
- * Utility method to make sure the document name is stripped of any file
- * extensions before use.
- */
- private String trimDocumentName(String name) {
- String temp = name.toLowerCase();
-
- if (temp.endsWith(FILE_EXTENSION)) {
- // strip the extension
- int nlen = name.length();
- int endIndex = nlen - FILE_EXTENSION.length();
- name = name.substring(0,endIndex);
- }
-
- return name;
- }
-
-}
-
\ No newline at end of file
diff --git a/src/main/java/writer2latex/latex/LaTeXDocumentPortion.java b/src/main/java/writer2latex/latex/LaTeXDocumentPortion.java
deleted file mode 100644
index 7780147..0000000
--- a/src/main/java/writer2latex/latex/LaTeXDocumentPortion.java
+++ /dev/null
@@ -1,242 +0,0 @@
-/************************************************************************
- *
- * LaTeXDocumentPortion.java
- *
- * Copyright: 2002-2014 by Henrik Just
- *
- * This file is part of Writer2LaTeX.
- *
- * Writer2LaTeX is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Writer2LaTeX is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Writer2LaTeX. If not, see