From 729e088fa259291c0ff66123747337ec706f940f Mon Sep 17 00:00:00 2001
From: henrikjust Class representing a BibTeX document. Constructs a new BibTeX Document. This new document is empty. Bibliographic data must added
- * using the Returns the Returns the Writes out the 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. Check if this entry exists Add an entry Get export name for an identifier BibTeX export This class extracts bibliographic information from an OpenDocument text file to a BibTeX data file. Convert the data passed into the put
method.BibTeXDocument
.
+ * @param sName The name of the document
+ * @param bIsMaster is this a master document?
+ * @param ofr the office document
*/
- public BibTeXDocument(String sName, boolean bIsMaster) {
- this.sName = trimDocumentName(sName);
+ public BibTeXDocument(String sName, boolean bIsMaster, OfficeReader ofr) {
this.bIsMaster = bIsMaster;
+ loadEntries(ofr);
// Use default config (only ascii, no extra font packages)
i18n = new ClassicI18n(new LaTeXConfig());
}
- /**
- * Document
name with no file extension.Document
name with no file extension.
+ * @return the document name without file extension
*/
public String getName() {
return sName;
}
+ // Implement writer2latex.api.OutputFile
- /**
- * Document
name with file extension.Document
name with file extension.
- */
@Override public String getFileName() {
return new String(sName + FILE_EXTENSION);
}
@@ -102,21 +125,7 @@ public class BibTeXDocument implements OutputFile {
return false;
}
- /**
- * Document
content to the specified
- * OutputStream
.OutputStream
to write out the
- * Document
content.
- *
- * @throws IOException If any I/O error occurs.
- */
- public void write(OutputStream os) throws IOException {
+ @Override public void write(OutputStream os) throws IOException {
// BibTeX files are plain ascii
OutputStreamWriter osw = new OutputStreamWriter(os,"ASCII");
osw.write("%% This file was converted to BibTeX by Writer2BibTeX ver. "+ConverterFactory.getVersion()+".\n");
@@ -155,43 +164,4 @@ public class BibTeXDocument implements OutputFile {
osw.close();
}
- /*
- * InputStream
- * into BibTeX format.
use_bibtex
: If true, citations will be exported as \cite
- * commands. If false, citations will be exported as static textuse_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
@@ -55,111 +51,187 @@ import writer2latex.util.Misc;
* 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
- * static text.
+ * a thebibliography environment
* bibtex_style
If BibTeX is used, this style will be applied
* BibConverter
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) {
- // 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();
+
+ // 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);
}
}
- /** Process a bibliography (text:bibliography tag)
- * @param node The element containing the Bibliography
+ /** 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
*/
- public void handleBibliography (Element node, LaTeXDocumentPortion ldp, Context oc) {
- if (config.noIndex()) { return; }
- if (config.useBibtex()) {
- // Use the style given in the configuration
- // TODO: Create a bst file from the settings of the text:bibliography
- ldp.append("\\bibliographystyle{")
- .append(config.bibtexStyle())
- .append("}").nl();
-
- // Use BibTeX file from configuration, or exported BibTeX file
- if (config.externalBibtexFiles().length()>0) {
- ldp.append("\\bibliography{")
- .append(config.externalBibtexFiles())
- .append("}").nl();
- }
- else {
- if (bibDoc==null) { bibDoc = new BibTeXDocument(palette.getOutFileName(),false); }
- ldp.append("\\bibliography{")
- .append(bibDoc.getName())
- .append("}").nl();
- }
- }
- else { // typeset current content
- Element body = Misc.getChildByTagName(node,XMLString.TEXT_INDEX_BODY);
- if (body!=null) {
- Element title = Misc.getChildByTagName(body,XMLString.TEXT_INDEX_TITLE);
- if (title!=null) { palette.getBlockCv().traverseBlockText(title,ldp,oc); }
- palette.getBlockCv().traverseBlockText(body,ldp,oc);
- }
- }
- }
-
- /** Process a Bibliography Mark (text:bibliography-mark 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 handleBibliographyMark(Element node, LaTeXDocumentPortion ldp, Context oc) {
- if (config.useBibtex()) {
- String sIdentifier = node.getAttribute(XMLString.TEXT_IDENTIFIER);
- if (sIdentifier!=null) {
- if (config.externalBibtexFiles().length()==0) {
- if (bibDoc==null) { bibDoc = new BibTeXDocument(palette.getOutFileName(),false); }
- if (!bibDoc.containsKey(sIdentifier)) {
- bibDoc.put(new BibMark(node));
- }
- }
- // Insert citation: Original if using external files; stripped if exporting BibTeX
- ldp.append("\\cite{")
- .append(config.externalBibtexFiles().length()==0 ? bibDoc.getExportName(sIdentifier) : sIdentifier)
- .append("}");
- }
- }
- else { // use current value
- palette.getInlineCv().traverseInlineText(node,ldp,oc);
+ 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);
+ }
}
}
-
- /** Get the BibTeX document, if any (the document is only created if it's
- * specified in the configuration *and* the document contains bibliographic
- * data *and* the configuration does not specify external BibTeX files
- * @return the BiBTeXDocument, or null if it does not exist).
- */
- public BibTeXDocument getBibTeXDocument () {
- return bibDoc;
- }
-
+ 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
+ if (config.externalBibtexFiles().length()>0) {
+ ldp.append("\\bibliography{")
+ .append(config.externalBibtexFiles())
+ .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 (bibDoc!=null && !bibDoc.isEmpty()) {
+ return bibDoc;
+ }
+ return null;
+ }
+
}
\ No newline at end of file
diff --git a/source/java/writer2latex/latex/ConverterHelper.java b/source/java/writer2latex/latex/ConverterHelper.java
index 822b275..ba16733 100644
--- a/source/java/writer2latex/latex/ConverterHelper.java
+++ b/source/java/writer2latex/latex/ConverterHelper.java
@@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
- * Version 1.6 (2015-04-15)
+ * Version 1.6 (2015-06-20)
*
*/
@@ -31,18 +31,18 @@ import writer2latex.office.OfficeReader;
/**
* This is an abstract superclass for converter helpers.
*/ -public abstract class ConverterHelper { +abstract class ConverterHelper { - protected OfficeReader ofr; - protected LaTeXConfig config; - protected ConverterPalette palette; + OfficeReader ofr; + LaTeXConfig config; + ConverterPalette palette; - protected ConverterHelper(OfficeReader ofr, LaTeXConfig config, ConverterPalette palette) { + ConverterHelper(OfficeReader ofr, LaTeXConfig config, ConverterPalette palette) { this.ofr = ofr; this.config = config; this.palette = palette; } - public abstract void appendDeclarations(LaTeXDocumentPortion pack, LaTeXDocumentPortion decl); + abstract void appendDeclarations(LaTeXDocumentPortion pack, LaTeXDocumentPortion decl); } \ No newline at end of file diff --git a/source/java/writer2latex/latex/ConverterPalette.java b/source/java/writer2latex/latex/ConverterPalette.java index 0eec9b4..9200149 100644 --- a/source/java/writer2latex/latex/ConverterPalette.java +++ b/source/java/writer2latex/latex/ConverterPalette.java @@ -37,7 +37,6 @@ import writer2latex.latex.i18n.ClassicI18n; import writer2latex.latex.i18n.I18n; import writer2latex.latex.i18n.XeTeXI18n; import writer2latex.latex.util.Context; -import writer2latex.latex.util.Info; import writer2latex.util.CSVList; import writer2latex.util.ExportNameCollection; import writer2latex.util.Misc; diff --git a/source/java/writer2latex/latex/FieldConverter.java b/source/java/writer2latex/latex/FieldConverter.java index d075ad0..0e639f0 100644 --- a/source/java/writer2latex/latex/FieldConverter.java +++ b/source/java/writer2latex/latex/FieldConverter.java @@ -20,7 +20,7 @@ * * All Rights Reserved. * - * Version 1.6 (2015-04-15) + * Version 1.6 (2015-06-22) * */ @@ -104,6 +104,14 @@ public class FieldConverter extends ConverterHelper { * 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(); diff --git a/source/java/writer2latex/latex/util/Info.java b/source/java/writer2latex/latex/Info.java similarity index 78% rename from source/java/writer2latex/latex/util/Info.java rename to source/java/writer2latex/latex/Info.java index 21bef95..656248e 100644 --- a/source/java/writer2latex/latex/util/Info.java +++ b/source/java/writer2latex/latex/Info.java @@ -20,38 +20,33 @@ * * All Rights Reserved. * - * Version 1.6 (2015-04-15) + * Version 1.6 (2015-06-21) * */ -package writer2latex.latex.util; +package writer2latex.latex; import org.w3c.dom.Element; -import writer2latex.latex.LaTeXConfig; import writer2latex.util.Misc; import writer2latex.office.OfficeReader; import writer2latex.office.StyleWithProperties; import writer2latex.office.XMLString; -import writer2latex.latex.LaTeXDocumentPortion; -import writer2latex.latex.ConverterHelper; -import writer2latex.latex.ConverterPalette; -/** - *This class creates various information to the user about the conversion.
+/** This class creates various information to the user about the conversion. */ -public class Info extends ConverterHelper { +class Info extends ConverterHelper { @Override public void appendDeclarations(LaTeXDocumentPortion pack, LaTeXDocumentPortion decl) { // Currently nothing } - public Info(OfficeReader ofr, LaTeXConfig config, ConverterPalette palette) { + Info(OfficeReader ofr, LaTeXConfig config, ConverterPalette palette) { super(ofr,config,palette); } - public void addDebugInfo(Element node, LaTeXDocumentPortion ldp) { + void addDebugInfo(Element node, LaTeXDocumentPortion ldp) { if (config.debug()) { ldp.append("% ").append(node.getNodeName()); addDebugInfo(node,ldp,XMLString.TEXT_ID); @@ -69,7 +64,7 @@ public class Info extends ConverterHelper { } } - private void addDebugInfo(Element node, LaTeXDocumentPortion ldp, String sAttribute) { + void addDebugInfo(Element node, LaTeXDocumentPortion ldp, String sAttribute) { String sValue = Misc.getAttribute(node,sAttribute); if (sValue!=null) { ldp.append(" ").append(sAttribute).append("=\"").append(sValue).append("\""); diff --git a/source/java/writer2latex/xhtml/XhtmlBibliographyGenerator.java b/source/java/writer2latex/xhtml/XhtmlBibliographyGenerator.java index ac36075..d68b4d1 100644 --- a/source/java/writer2latex/xhtml/XhtmlBibliographyGenerator.java +++ b/source/java/writer2latex/xhtml/XhtmlBibliographyGenerator.java @@ -20,7 +20,7 @@ * * All Rights Reserved. * - * Version 1.6 (2015-06-18) + * Version 1.6 (2015-06-20) * */ @@ -38,7 +38,7 @@ class XhtmlBibliographyGenerator extends BibliographyGenerator { private Element currentPar; // The paragraph of the current item XhtmlBibliographyGenerator(OfficeReader ofr, Converter converter) { - super(ofr); + super(ofr,false); this.converter = converter; }