TeXify
,
@@ -202,6 +204,8 @@ public final class Writer4LaTeX extends WeakBase
// First work a bit on the FilterData (get the backend and set bibliography options)
String sBackend = "generic";
+ String sBibinputs = null;
+
PropertyHelper mediaHelper = new PropertyHelper(mediaProps);
Object filterData = mediaHelper.get("FilterData");
if (filterData instanceof PropertyValue[]) {
@@ -217,14 +221,24 @@ public final class Writer4LaTeX extends WeakBase
try {
Object view = registry.getRegistryView(BibliographyDialog.REGISTRY_PATH, false);
XPropertySet xProps = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class,view);
+ String sBibTeXFiles = getFileList(XPropertySetHelper.getPropertyValueAsString(xProps, "BibTeXDir"));
if (XPropertySetHelper.getPropertyValueAsBoolean(xProps, "ConvertZoteroCitations")) {
- filterHelper.put("zotero_bibtex_files", getFileList(XPropertySetHelper.getPropertyValueAsString(xProps, "ZoteroBibTeXDir")));
+ filterHelper.put("zotero_bibtex_files", sBibTeXFiles);
+ filterHelper.put("natbib_options", XPropertySetHelper.getPropertyValueAsString(xProps, "NatbibOptions"));
+ }
+ if (XPropertySetHelper.getPropertyValueAsBoolean(xProps, "ConvertJabRefCitations")) {
+ filterHelper.put("jabref_bibtex_files", sBibTeXFiles);
filterHelper.put("natbib_options", XPropertySetHelper.getPropertyValueAsString(xProps, "NatbibOptions"));
}
if (XPropertySetHelper.getPropertyValueAsBoolean(xProps, "UseExternalBibTeXFiles")) {
- filterHelper.put("external_bibtex_files", getFileList(XPropertySetHelper.getPropertyValueAsString(xProps, "ExternalBibTeXDir")));
+ filterHelper.put("external_bibtex_files", sBibTeXFiles);
}
- mediaHelper.put("FilterData",filterHelper.toArray());
+ String sBibTeXDir = XPropertySetHelper.getPropertyValueAsString(xProps, "BibTeXDir");
+ if (sBibTeXDir.length()>0) {
+ sBibinputs = sBibTeXDir+":";
+ }
+
+ mediaHelper.put("FilterData",filterHelper.toArray());
mediaProps = mediaHelper.toArray();
registry.disposeRegistryView(view);
}
@@ -255,16 +269,16 @@ public final class Writer4LaTeX extends WeakBase
try {
if (sBackend=="pdftex") {
- bResult = texify.process(file, TeXify.PDFTEX, true);
+ bResult = texify.process(file, sBibinputs, TeXify.PDFTEX, true);
}
else if (sBackend=="dvips") {
- bResult = texify.process(file, TeXify.DVIPS, true);
+ bResult = texify.process(file, sBibinputs, TeXify.DVIPS, true);
}
else if (sBackend=="xetex") {
- bResult = texify.process(file, TeXify.XETEX, true);
+ bResult = texify.process(file, sBibinputs, TeXify.XETEX, true);
}
else if (sBackend=="generic") {
- bResult = texify.process(file, TeXify.GENERIC, true);
+ bResult = texify.process(file, sBibinputs, TeXify.GENERIC, true);
}
}
catch (IOException e) {
@@ -289,11 +303,13 @@ public final class Writer4LaTeX extends WeakBase
File[] files = dir.listFiles();
for (File file : files) {
if (file.isFile() && file.getName().endsWith(".bib")) {
- filelist.addValue(file.getAbsolutePath());
+ //filelist.addValue(file.getAbsolutePath());
+ filelist.addValue(Misc.removeExtension(file.getName()));
}
}
}
- return filelist.toString();
+ String sFileList = filelist.toString();
+ return sFileList.length()>0 ? sFileList : "dummy";
}
private void viewLog() {
diff --git a/source/java/writer2latex/api/ConverterFactory.java b/source/java/writer2latex/api/ConverterFactory.java
index c42b812..e2744c4 100644
--- a/source/java/writer2latex/api/ConverterFactory.java
+++ b/source/java/writer2latex/api/ConverterFactory.java
@@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
- * Copyright: 2002-2010 by Henrik Just
+ * Copyright: 2002-2011 by Henrik Just
*
* All Rights Reserved.
*
- * Version 1.2 (2011-01-12)
+ * Version 1.2 (2011-01-25)
*
*/
@@ -32,8 +32,8 @@ package writer2latex.api;
public class ConverterFactory {
// Version information
- private static final String VERSION = "1.1.9";
- private static final String DATE = "2011-01-12";
+ private static final String VERSION = "1.1.6";
+ private static final String DATE = "2011-01-25";
/** Return the Writer2LaTeX version in the form
* (major version).(minor version).(patch level)Append declarations needed by the FieldConverter
to
@@ -598,7 +603,7 @@ public class FieldConverter extends ConverterHelper {
ldp.append("}");
}
- oc.setInZoteroText(true);
+ oc.setInZoteroJabRefText(true);
bNeedNatbib = true;
@@ -609,6 +614,27 @@ public class FieldConverter extends ConverterHelper {
return false;
}
+ // Try to handle this reference name as a JabRef reference, return true on success
+ private boolean handleJabRefReferenceName(String sName, LaTeXDocumentPortion ldp, Context oc) {
+ // First parse the reference name:
+ // A JabRef reference name has the form JR_cite_n_identifiers where
+ // n=1 for (Author date) and n=2 for Author (date) citations
+ // identifiers is a comma separated list of BibTeX keys
+ if (sName.startsWith(JABREF_ITEM_1)) {
+ ldp.append("\\citep{").append(sName.substring(JABREF_ITEM_1.length()+1)).append("}");
+ oc.setInZoteroJabRefText(true);
+ bNeedNatbib = true;
+ return true;
+ }
+ else if (sName.startsWith(JABREF_ITEM_2)) {
+ ldp.append("\\citet{").append(sName.substring(JABREF_ITEM_2.length()+1)).append("}");
+ oc.setInZoteroJabRefText(true);
+ bNeedNatbib = true;
+ return true;
+ }
+ return false;
+ }
+
private String shortenRefname(String s) {
// For Zotero items, use the trailing unique identifier
if (s.startsWith(ZOTERO_ITEM)) {
@@ -627,8 +653,8 @@ public class FieldConverter extends ConverterHelper {
* @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 citation
- oc.setInZoteroText(false);
+ // Nothing to do, except to mark that this ends any Zotero/JabRef citation
+ oc.setInZoteroJabRefText(false);
}
/**
Process a reference mark (text:reference-mark or text:reference-mark-start tag)
@@ -640,8 +666,9 @@ public class FieldConverter extends ConverterHelper { public void handleReferenceMark(Element node, LaTeXDocumentPortion ldp, Context oc) { if (!oc.isInSection() && !oc.isInCaption() && !oc.isVerbatim()) { String sName = node.getAttribute(XMLString.TEXT_NAME); - // Zotero (mis)uses reference marks to store citations, so check this first - if (sName!=null && (!bConvertZotero || !handleZoteroReferenceName(sName, ldp, oc))) { + // 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.getExportName(shortenRefname(sName))+"}"); diff --git a/source/java/writer2latex/latex/InlineConverter.java b/source/java/writer2latex/latex/InlineConverter.java index 8300d53..81a7f8d 100644 --- a/source/java/writer2latex/latex/InlineConverter.java +++ b/source/java/writer2latex/latex/InlineConverter.java @@ -195,11 +195,11 @@ public class InlineConverter extends ConverterHelper { case Node.TEXT_NODE: String s = childNode.getNodeValue(); if (s.length() > 0) { - if (oc.isInZoteroText()) { // Comment out Zotero citations + if (oc.isInZoteroJabRefText()) { // Comment out Zotero citations ldp.append("%"); } ldp.append(palette.getI18n().convert(s, false, oc.getLang())); - if (oc.isInZoteroText()) { // End comment out + if (oc.isInZoteroJabRefText()) { // End comment out ldp.nl(); } } diff --git a/source/java/writer2latex/latex/LaTeXConfig.java b/source/java/writer2latex/latex/LaTeXConfig.java index 0f1d4cc..490f571 100644 --- a/source/java/writer2latex/latex/LaTeXConfig.java +++ b/source/java/writer2latex/latex/LaTeXConfig.java @@ -16,11 +16,11 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * - * Copyright: 2002-2010 by Henrik Just + * Copyright: 2002-2011 by Henrik Just * * All Rights Reserved. * - * Version 1.2 (2010-12-15) + * Version 1.2 (2011-01-23) * */ @@ -48,7 +48,7 @@ public class LaTeXConfig extends writer2latex.base.ConfigBase { ///////////////////////////////////////////////////////////////////////// // I. Define items needed by ConfigBase - protected int getOptionCount() { return 67; } + protected int getOptionCount() { return 68; } protected String getDefaultConfigPath() { return "/writer2latex/latex/config/"; } ///////////////////////////////////////////////////////////////////////// @@ -145,38 +145,39 @@ public class LaTeXConfig extends writer2latex.base.ConfigBase { private static final int BIBTEX_STYLE = 32; private static final int EXTERNAL_BIBTEX_FILES = 33; private static final int ZOTERO_BIBTEX_FILES = 34; - private static final int NATBIB_OPTIONS = 35; - private static final int FORMATTING = 36; - private static final int PAGE_FORMATTING = 37; - private static final int OTHER_STYLES = 38; - private static final int IMAGE_CONTENT = 39; - private static final int TABLE_CONTENT = 40; - private static final int TABLE_FIRST_HEAD_STYLE = 41; - private static final int TABLE_HEAD_STYLE = 42; - private static final int TABLE_FOOT_STYLE = 43; - private static final int TABLE_LAST_FOOT_STYLE = 44; - private static final int IGNORE_HARD_PAGE_BREAKS = 45; - private static final int IGNORE_HARD_LINE_BREAKS = 46; - private static final int IGNORE_EMPTY_PARAGRAPHS = 47; - private static final int IGNORE_DOUBLE_SPACES = 48; - private static final int ALIGN_FRAMES = 49; - private static final int FLOAT_FIGURES = 50; - private static final int FLOAT_TABLES = 51; - private static final int FLOAT_OPTIONS = 52; - private static final int FIGURE_SEQUENCE_NAME = 53; - private static final int TABLE_SEQUENCE_NAME = 54; - private static final int IMAGE_OPTIONS = 55; - private static final int REMOVE_GRAPHICS_EXTENSION = 56; - private static final int ORIGINAL_IMAGE_SIZE = 57; - private static final int SIMPLE_TABLE_LIMIT = 58; - private static final int NOTES = 59; - private static final int METADATA = 60; - private static final int TABSTOP = 61; - private static final int WRAP_LINES_AFTER = 62; - private static final int SPLIT_LINKED_SECTIONS = 63; - private static final int SPLIT_TOPLEVEL_SECTIONS = 64; - private static final int SAVE_IMAGES_IN_SUBDIR = 65; - private static final int DEBUG = 66; + private static final int JABREF_BIBTEX_FILES = 35; + private static final int NATBIB_OPTIONS = 36; + private static final int FORMATTING = 37; + private static final int PAGE_FORMATTING = 38; + private static final int OTHER_STYLES = 39; + private static final int IMAGE_CONTENT = 40; + private static final int TABLE_CONTENT = 41; + private static final int TABLE_FIRST_HEAD_STYLE = 42; + private static final int TABLE_HEAD_STYLE = 43; + private static final int TABLE_FOOT_STYLE = 44; + private static final int TABLE_LAST_FOOT_STYLE = 45; + private static final int IGNORE_HARD_PAGE_BREAKS = 46; + private static final int IGNORE_HARD_LINE_BREAKS = 47; + private static final int IGNORE_EMPTY_PARAGRAPHS = 48; + private static final int IGNORE_DOUBLE_SPACES = 49; + private static final int ALIGN_FRAMES = 50; + private static final int FLOAT_FIGURES = 51; + private static final int FLOAT_TABLES = 52; + private static final int FLOAT_OPTIONS = 53; + private static final int FIGURE_SEQUENCE_NAME = 54; + private static final int TABLE_SEQUENCE_NAME = 55; + private static final int IMAGE_OPTIONS = 56; + private static final int REMOVE_GRAPHICS_EXTENSION = 57; + private static final int ORIGINAL_IMAGE_SIZE = 58; + private static final int SIMPLE_TABLE_LIMIT = 59; + private static final int NOTES = 60; + private static final int METADATA = 61; + private static final int TABSTOP = 62; + private static final int WRAP_LINES_AFTER = 63; + private static final int SPLIT_LINKED_SECTIONS = 64; + private static final int SPLIT_TOPLEVEL_SECTIONS = 65; + private static final int SAVE_IMAGES_IN_SUBDIR = 66; + private static final int DEBUG = 67; ///////////////////////////////////////////////////////////////////////// // IV. Our options data @@ -250,6 +251,7 @@ public class LaTeXConfig extends writer2latex.base.ConfigBase { options[BIBTEX_STYLE] = new Option("bibtex_style","plain"); options[EXTERNAL_BIBTEX_FILES] = new Option("external_bibtex_files",""); options[ZOTERO_BIBTEX_FILES] = new Option("zotero_bibtex_files",""); + options[JABREF_BIBTEX_FILES] = new Option("jabref_bibtex_files",""); options[NATBIB_OPTIONS] = new Option("natbib_options",""); options[FORMATTING] = new IntegerOption("formatting","convert_basic") { public void setString(String sValue) { @@ -661,6 +663,7 @@ public class LaTeXConfig extends writer2latex.base.ConfigBase { public String bibtexStyle() { return options[BIBTEX_STYLE].getString(); } public String externalBibtexFiles() { return options[EXTERNAL_BIBTEX_FILES].getString(); } public String zoteroBibtexFiles() { return options[ZOTERO_BIBTEX_FILES].getString(); } + public String jabrefBibtexFiles() { return options[JABREF_BIBTEX_FILES].getString(); } public String getNatbibOptions() { return options[NATBIB_OPTIONS].getString(); } // Formatting options diff --git a/source/java/writer2latex/latex/SectionConverter.java b/source/java/writer2latex/latex/SectionConverter.java index 064b0f1..124a77f 100644 --- a/source/java/writer2latex/latex/SectionConverter.java +++ b/source/java/writer2latex/latex/SectionConverter.java @@ -16,11 +16,11 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * - * Copyright: 2002-2010 by Henrik Just + * Copyright: 2002-2011 by Henrik Just * * All Rights Reserved. * - * Version 1.2 (2010-10-06) + * Version 1.2 (2011-01-24) * */ @@ -121,6 +121,20 @@ public class SectionConverter extends ConverterHelper { return false; } } + + // Handle a section as a JabRef bibliography + private boolean handleJabRefBibliography(Element node, LaTeXDocumentPortion ldp, Context oc) { + String sName = node.getAttribute(XMLString.TEXT_NAME); + if (config.useBibtex() && config.jabrefBibtexFiles().length()>0 && sName.equals("JR_bib")) { + // This section is a JabRef bibliography, and the user wishes to handle it as such + // A JabRef bibliography is identified by the name JR_bib + // Use the BibTeX style and files given in the configuration + ldp.append("\\bibliographystyle{").append(config.bibtexStyle()).append("}").nl() + .append("\\bibliography{").append(config.jabrefBibtexFiles()).append("}").nl(); + return true; + } + return false; + } /**Process a section (text:section tag)
* @param node The element containing the section @@ -167,8 +181,8 @@ public class SectionConverter extends ConverterHelper { if (sFileName!=null) { ldp.append("\\input{").append(sFileName).append("}").nl(); } - // Zotero might have generated this section as a bibliograhy: - if (!handleZoteroBibliography(node,sectionLdp,ic)) { + // Zotero or JabRef might have generated this section as a bibliograhy: + if (!handleZoteroBibliography(node,sectionLdp,ic) && !handleJabRefBibliography(node,sectionLdp,ic)) { palette.getBlockCv().traverseBlockText(node,sectionLdp,ic); } if (sectionLdp!=ldp) { sectionLdp.append("\\endinput").nl(); } diff --git a/source/java/writer2latex/latex/util/Context.java b/source/java/writer2latex/latex/util/Context.java index d498a6c..b3fa2e1 100644 --- a/source/java/writer2latex/latex/util/Context.java +++ b/source/java/writer2latex/latex/util/Context.java @@ -16,11 +16,11 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * - * Copyright: 2002-2010 by Henrik Just + * Copyright: 2002-2011 by Henrik Just * * All Rights Reserved. * - * Version 1.2 (2010-10-04) + * Version 1.2 (2011-01-24) * */ @@ -78,8 +78,8 @@ public class Context { // within a caption private boolean bInCaption = false; - // within a Zotero citation - private boolean bInZoteroText = false; + // within a Zotero/JabRef citation + private boolean bInZoteroJabRefText = false; // within a floating figure (figure environment) private boolean bInFigureFloat = false; @@ -194,9 +194,9 @@ public class Context { public boolean isInCaption() { return bInCaption; } - public void setInZoteroText(boolean bInZoteroText) { this.bInZoteroText = bInZoteroText; } + public void setInZoteroJabRefText(boolean bInZoteroJabRefText) { this.bInZoteroJabRefText = bInZoteroJabRefText; } - public boolean isInZoteroText() { return bInZoteroText; } + public boolean isInZoteroJabRefText() { return bInZoteroJabRefText; } public void setInFigureFloat(boolean bInFigureFloat) { this.bInFigureFloat = bInFigureFloat; } @@ -309,6 +309,7 @@ public class Context { newContext.setInContinuedList(bInContinuedList); newContext.setInSection(bInSection); newContext.setInCaption(bInCaption); + newContext.setInZoteroJabRefText(bInZoteroJabRefText); newContext.setInFigureFloat(bInFigureFloat); newContext.setInTableFloat(bInTableFloat); newContext.setInFrame(bInFrame); diff --git a/source/oxt/writer2latex/description.xml b/source/oxt/writer2latex/description.xml index 1e3329e..3b88e5c 100644 --- a/source/oxt/writer2latex/description.xml +++ b/source/oxt/writer2latex/description.xml @@ -5,7 +5,7 @@