w2l use thebibliography environment if not using BibTeX

git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@257 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
henrikjust 2015-06-22 10:59:48 +00:00
parent 6f46ed3177
commit 729e088fa2
10 changed files with 318 additions and 257 deletions

View file

@ -2,6 +2,10 @@ Changelog for Writer2LaTeX version 1.4 -> 1.6
---------- version 1.5.3 ---------- ---------- version 1.5.3 ----------
[w2l] If use_bibtex is false, the bibliography is now exported using a thebibliography environment rather than as
plain text
TODO: Debugging and test
[w2x] The bibliography is now regenerated from the template. This implies that bibliographic citations now link [w2x] The bibliography is now regenerated from the template. This implies that bibliographic citations now link
directly to the cited work rather than to the bibliography as a whole. directly to the cited work rather than to the bibliography as a whole.

View file

@ -20,13 +20,14 @@
* *
* All Rights Reserved. * All Rights Reserved.
* *
* Version 1.6 (2015-06-19) * Version 1.6 (2015-06-20)
* *
*/ */
package writer2latex.base; package writer2latex.base;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections; import java.util.Collections;
import java.util.Comparator; import java.util.Comparator;
import java.util.HashMap; import java.util.HashMap;
@ -57,13 +58,22 @@ public abstract class BibliographyGenerator {
private List<Element> bibMarkList = new ArrayList<Element>(); private List<Element> bibMarkList = new ArrayList<Element>();
// Map from key to label // Map from key to label
private Map<String,String> bibMarkCitation = new HashMap<String,String>(); private Map<String,String> bibMarkLabel = new HashMap<String,String>();
// Flag to identify numbering
private boolean bNumberedEntries = false;
// Flag to identify truncation of templates
private boolean bSkipKey = false;
/** Create a new bibliography generator based on a bibliography configuration and a list of bibliography marks /** Create a new bibliography generator based on a bibliography configuration and a list of bibliography marks
* *
* @param ofr the office reader used to access the source document * @param ofr the office reader used to access the source document
* @param bSkipKey set to true if the key should be excluded when applying templates
*/ */
protected BibliographyGenerator(OfficeReader ofr) { protected BibliographyGenerator(OfficeReader ofr, boolean bSkipKey) {
this.bSkipKey = bSkipKey;
Element bibConfig = ofr.getBibliographyConfiguration(); Element bibConfig = ofr.getBibliographyConfiguration();
if (bibConfig!=null) { if (bibConfig!=null) {
if (bibConfig.hasAttribute(XMLString.TEXT_PREFIX)) { if (bibConfig.hasAttribute(XMLString.TEXT_PREFIX)) {
@ -122,7 +132,7 @@ public abstract class BibliographyGenerator {
private List<String> sortKeys = null; private List<String> sortKeys = null;
private List<Boolean> sortAscending = null; private List<Boolean> sortAscending = null;
public Comparator<Element> setSortKeys(List<String> sortKeys, List<Boolean> sortAscending) { Comparator<Element> setSortKeys(List<String> sortKeys, List<Boolean> sortAscending) {
this.sortKeys = sortKeys; this.sortKeys = sortKeys;
this.sortAscending = sortAscending; this.sortAscending = sortAscending;
return this; return this;
@ -145,34 +155,50 @@ public abstract class BibliographyGenerator {
} }
private void createLabels(Element bibConfig) { private void createLabels(Element bibConfig) {
boolean bNumberedEntries = bibConfig!=null && "true".equals(bibConfig.getAttribute(XMLString.TEXT_NUMBERED_ENTRIES)); bNumberedEntries = bibConfig!=null && "true".equals(bibConfig.getAttribute(XMLString.TEXT_NUMBERED_ENTRIES));
int nCount = bibMarkList.size(); int nCount = bibMarkList.size();
for (int i=0; i<nCount; i++) { for (int i=0; i<nCount; i++) {
Element item = bibMarkList.get(i); Element item = bibMarkList.get(i);
String sKey = item.getAttribute(XMLString.TEXT_IDENTIFIER); String sKey = item.getAttribute(XMLString.TEXT_IDENTIFIER);
if (bNumberedEntries) { if (bNumberedEntries) {
bibMarkCitation.put(sKey, Integer.toString(i+1)); bibMarkLabel.put(sKey, Integer.toString(i+1));
} }
else { else {
bibMarkCitation.put(sKey, sKey); bibMarkLabel.put(sKey, sKey);
} }
} }
} }
/** Get all labels used in the bibliography
*
* @return the set of labels
*/
protected Collection<String> getLabels() {
return bibMarkLabel.values();
}
/** Check whether entries are numbered rather than labeled with the key
*
* @return true if the entries are numbered
*/
protected boolean isNumberedEntries() {
return bNumberedEntries;
}
/** Get citation text for a reference to the bibliography /** Get citation text for a reference to the bibliography
* *
* @param sKey the key of the bibliography item * @param sKey the key of the bibliography item
* @return the citation text to be shown in the document * @return the citation text to be shown in the document
*/ */
public String generateCitation(String sKey) { public String generateCitation(String sKey) {
return sPrefix+bibMarkCitation.get(sKey)+sSuffix; return sPrefix+bibMarkLabel.get(sKey)+sSuffix;
} }
/** Generate a bibliography /** Generate a bibliography
* *
* @param bibliography a text:bibliography-source element * @param bibliography a text:bibliography-source element
*/ */
public void generateBibliography(Element bibSource) { protected void generateBibliography(Element bibSource) {
Map<String,Element> bibEntryTemplate = collectTemplates(bibSource); Map<String,Element> bibEntryTemplate = collectTemplates(bibSource);
for (Element bibMark : bibMarkList) { for (Element bibMark : bibMarkList) {
String sKey = bibMark.getAttribute(XMLString.TEXT_IDENTIFIER); String sKey = bibMark.getAttribute(XMLString.TEXT_IDENTIFIER);
@ -188,8 +214,10 @@ public abstract class BibliographyGenerator {
String sTitle = bibMark.getAttribute(XMLString.TEXT_TITLE); String sTitle = bibMark.getAttribute(XMLString.TEXT_TITLE);
String sYear = bibMark.getAttribute(XMLString.TEXT_YEAR); String sYear = bibMark.getAttribute(XMLString.TEXT_YEAR);
insertBibliographyItem(null,sKey); insertBibliographyItem(null,sKey);
insertBibliographyItemElement(null,bibMarkCitation.get(sKey)); if (!bSkipKey) {
insertBibliographyItemElement(null,": "); insertBibliographyItemElement(null,bibMarkLabel.get(sKey));
insertBibliographyItemElement(null,": ");
}
insertBibliographyItemElement(null,sAuthor); insertBibliographyItemElement(null,sAuthor);
insertBibliographyItemElement(null,", "); insertBibliographyItemElement(null,", ");
insertBibliographyItemElement(null,sTitle); insertBibliographyItemElement(null,sTitle);
@ -216,24 +244,32 @@ public abstract class BibliographyGenerator {
} }
private void applyTemplate(Element template, Element bibMark) { private void applyTemplate(Element template, Element bibMark) {
boolean bSkip = bSkipKey;
Node child = template.getFirstChild(); Node child = template.getFirstChild();
while (child!=null) { while (child!=null) {
if (child.getNodeType()==Node.ELEMENT_NODE) { if (child.getNodeType()==Node.ELEMENT_NODE) {
if (child.getNodeName().equals(XMLString.TEXT_INDEX_ENTRY_BIBLIOGRAPHY)) { if (child.getNodeName().equals(XMLString.TEXT_INDEX_ENTRY_BIBLIOGRAPHY)) {
String sField = Misc.getAttribute(child, XMLString.TEXT_BIBLIOGRAPHY_DATA_FIELD); String sField = Misc.getAttribute(child, XMLString.TEXT_BIBLIOGRAPHY_DATA_FIELD);
if (sField!=null) { if (sField!=null) {
String sElementStyleName = Misc.getAttribute(child,XMLString.TEXT_STYLE_NAME);
String sValue = bibMark.getAttribute("text:"+sField); String sValue = bibMark.getAttribute("text:"+sField);
if (sField.equals("identifier")) { if (sField.equals("identifier")) {
sValue = bibMarkCitation.get(sValue); sValue = bibMarkLabel.get(sValue);
}
else {
bSkip = false;
}
if (!bSkip) {
String sElementStyleName = Misc.getAttribute(child,XMLString.TEXT_STYLE_NAME);
insertBibliographyItemElement(sElementStyleName,sValue);
} }
insertBibliographyItemElement(sElementStyleName,sValue);
} }
} }
else if (child.getNodeName().equals(XMLString.TEXT_INDEX_ENTRY_SPAN)) { else if (child.getNodeName().equals(XMLString.TEXT_INDEX_ENTRY_SPAN)) {
String sElementStyleName = Misc.getAttribute(child,XMLString.TEXT_STYLE_NAME); if (!bSkip) {
String sValue = Misc.getPCDATA(child); String sValue = Misc.getPCDATA(child);
insertBibliographyItemElement(sElementStyleName,sValue); String sElementStyleName = Misc.getAttribute(child,XMLString.TEXT_STYLE_NAME);
insertBibliographyItemElement(sElementStyleName,sValue);
}
} }
} }
child = child.getNextSibling(); child = child.getNextSibling();

View file

@ -20,7 +20,7 @@
* *
* All Rights Reserved. * All Rights Reserved.
* *
* Version 1.6 (2015-05-05) * Version 1.6 (2015-06-22)
* *
*/ */
@ -28,10 +28,13 @@ package writer2latex.bibtex;
import java.util.Hashtable; import java.util.Hashtable;
import java.util.Enumeration; import java.util.Enumeration;
import java.util.List;
import java.io.IOException; import java.io.IOException;
import java.io.OutputStream; import java.io.OutputStream;
import java.io.OutputStreamWriter; import java.io.OutputStreamWriter;
import org.w3c.dom.Element;
import writer2latex.api.ConverterFactory; import writer2latex.api.ConverterFactory;
import writer2latex.api.MIMETypes; import writer2latex.api.MIMETypes;
import writer2latex.api.OutputFile; import writer2latex.api.OutputFile;
@ -40,11 +43,10 @@ import writer2latex.latex.i18n.ClassicI18n;
import writer2latex.latex.i18n.I18n; import writer2latex.latex.i18n.I18n;
import writer2latex.util.ExportNameCollection; import writer2latex.util.ExportNameCollection;
import writer2latex.office.BibMark; import writer2latex.office.BibMark;
import writer2latex.office.BibMark.EntryType;; import writer2latex.office.BibMark.EntryType;
import writer2latex.office.OfficeReader;
/** /** Class representing a BibTeX document
* <p>Class representing a BibTeX document.</p>
*
*/ */
public class BibTeXDocument implements OutputFile { public class BibTeXDocument implements OutputFile {
private static final String FILE_EXTENSION = ".bib"; private static final String FILE_EXTENSION = ".bib";
@ -56,36 +58,57 @@ public class BibTeXDocument implements OutputFile {
private boolean bIsMaster; private boolean bIsMaster;
/** /** Constructs a new BibTeX Document based on an office document
* <p>Constructs a new BibTeX Document.</p>
* *
* <p>This new document is empty. Bibliographic data must added * @param sName The name of the document
* using the <code>put</code> method.</p> * @param bIsMaster is this a master document?
* * @param ofr the office document
* @param sName The name of the <code>BibTeXDocument</code>.
*/ */
public BibTeXDocument(String sName, boolean bIsMaster) { public BibTeXDocument(String sName, boolean bIsMaster, OfficeReader ofr) {
this.sName = trimDocumentName(sName);
this.bIsMaster = bIsMaster; this.bIsMaster = bIsMaster;
loadEntries(ofr);
// Use default config (only ascii, no extra font packages) // Use default config (only ascii, no extra font packages)
i18n = new ClassicI18n(new LaTeXConfig()); i18n = new ClassicI18n(new LaTeXConfig());
} }
/** private void loadEntries(OfficeReader ofr) {
* <p>Returns the <code>Document</code> name with no file extension.</p> List<Element> bibMarks = ofr.getBibliographyMarks();
for (Element bibMark : bibMarks) {
BibMark entry = new BibMark(bibMark);
entries.put(entry.getIdentifier(),entry);
exportNames.addName(entry.getIdentifier());
}
}
// Methods to query the content
/** Test whether or not this BibTeX document contains any entries
*
* @return true if there is one or more entries in the document
*/
public boolean isEmpty() {
return entries.size()>0;
}
/** Get export name for an identifier
*
* @param sIdentifier the identifier
* @return the export name
*/
public String getExportName(String sIdentifier) {
return exportNames.getExportName(sIdentifier);
}
/** Returns the document name without file extension
* *
* @return The <code>Document</code> name with no file extension. * @return the document name without file extension
*/ */
public String getName() { public String getName() {
return sName; return sName;
} }
// Implement writer2latex.api.OutputFile
/**
* <p>Returns the <code>Document</code> name with file extension.</p>
*
* @return The <code>Document</code> name with file extension.
*/
@Override public String getFileName() { @Override public String getFileName() {
return new String(sName + FILE_EXTENSION); return new String(sName + FILE_EXTENSION);
} }
@ -102,21 +125,7 @@ public class BibTeXDocument implements OutputFile {
return false; return false;
} }
/** @Override public void write(OutputStream os) throws IOException {
* <p>Writes out the <code>Document</code> content to the specified
* <code>OutputStream</code>.</p>
*
* <p>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.</p>
*
* @param os <code>OutputStream</code> to write out the
* <code>Document</code> content.
*
* @throws IOException If any I/O error occurs.
*/
public void write(OutputStream os) throws IOException {
// BibTeX files are plain ascii // BibTeX files are plain ascii
OutputStreamWriter osw = new OutputStreamWriter(os,"ASCII"); OutputStreamWriter osw = new OutputStreamWriter(os,"ASCII");
osw.write("%% This file was converted to BibTeX by Writer2BibTeX ver. "+ConverterFactory.getVersion()+".\n"); 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(); osw.close();
} }
/*
* <p>Check if this entry exists</p>
*/
public boolean containsKey(String sIdentifier) {
return entries.containsKey(sIdentifier);
}
/*
* <p>Add an entry</p>
*/
public void put(BibMark entry) {
entries.put(entry.getIdentifier(),entry);
exportNames.addName(entry.getIdentifier());
}
/*
* <p>Get export name for an identifier</p>
*/
public String getExportName(String sIdentifier) {
return exportNames.getExportName(sIdentifier);
}
/*
* 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;
}
} }

View file

@ -16,75 +16,52 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA * MA 02111-1307 USA
* *
* Copyright: 2001-2010 by Henrik Just * Copyright: 2001-2015 by Henrik Just
* *
* All Rights Reserved. * All Rights Reserved.
* *
* version 1.2 (2010-03-28) * Version 1.6 (2015-06-22)
* *
*/ */
package writer2latex.bibtex; package writer2latex.bibtex;
import writer2latex.api.Config; import writer2latex.api.Config;
//import writer2latex.api.ConverterResult;
import writer2latex.base.ConverterBase; import writer2latex.base.ConverterBase;
import writer2latex.latex.LaTeXConfig; import writer2latex.latex.LaTeXConfig;
import writer2latex.office.BibMark;
import writer2latex.office.XMLString;
import writer2latex.util.Misc; import writer2latex.util.Misc;
//import writer2latex.xmerge.ConvertData;
//import writer2latex.xmerge.OfficeDocument;
import java.io.IOException; import java.io.IOException;
import org.w3c.dom.Element; /** This class exports bibliographic information from an OpenDocument text file to a BibTeX data file
import org.w3c.dom.NodeList;
/**
* <p>BibTeX export</p>
*
* <p>This class extracts bibliographic information from an OpenDocument text file to a BibTeX data file.</p>
*
*/ */
public final class Converter extends ConverterBase { public final class Converter extends ConverterBase {
// Configuration - TODO: Doesn't really use it - should use some fake config // Implement converter API
// TODO: Doesn't really use the configuration - should use some fake config
private LaTeXConfig config; private LaTeXConfig config;
public Config getConfig() { return config; }
// Constructor
public Converter() { public Converter() {
super(); super();
config = new LaTeXConfig(); config = new LaTeXConfig();
} }
@Override public Config getConfig() {
return config;
}
/** // Extend converter base
* <p>Convert the data passed into the <code>InputStream</code>
* into BibTeX format.</p> /** Convert the document into BibTeX format.</p>
* *
* @throws IOException If any I/O error occurs. * @throws IOException If any I/O error occurs.
*/ */
public void convertInner() throws IOException { @Override public void convertInner() throws IOException {
sTargetFileName = Misc.trimDocumentName(sTargetFileName,".bib"); sTargetFileName = Misc.trimDocumentName(sTargetFileName,".bib");
BibTeXDocument bibDoc = new BibTeXDocument(sTargetFileName,true); BibTeXDocument bibDoc = new BibTeXDocument(sTargetFileName,true,ofr);
// Collect all text:bibliography-mark elements from the content
Element doc = ofr.getContent();
NodeList list;
list = doc.getElementsByTagName(XMLString.TEXT_BIBLIOGRAPHY_MARK);
int nLen = list.getLength();
for (int i=0; i<nLen; i++) {
String sIdentifier = Misc.getAttribute(list.item(i),XMLString.TEXT_IDENTIFIER);
if (sIdentifier!=null && !bibDoc.containsKey(sIdentifier)) {
bibDoc.put(new BibMark(list.item(i)));
}
}
// Add result
converterResult.addDocument(bibDoc); converterResult.addDocument(bibDoc);
} }

View file

@ -16,37 +16,33 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA * MA 02111-1307 USA
* *
* Copyright: 2002-2011 by Henrik Just * Copyright: 2002-2015 by Henrik Just
* *
* All Rights Reserved. * All Rights Reserved.
* *
* Version 1.2 (2011-01-27) * Version 1.6 (2015-06-22)
* *
*/ */
package writer2latex.latex; package writer2latex.latex;
import java.util.Collection;
import org.w3c.dom.Element; import org.w3c.dom.Element;
import writer2latex.base.BibliographyGenerator;
import writer2latex.bibtex.BibTeXDocument; import writer2latex.bibtex.BibTeXDocument;
import writer2latex.latex.util.BeforeAfter;
import writer2latex.latex.util.Context; import writer2latex.latex.util.Context;
import writer2latex.office.BibMark;
import writer2latex.office.OfficeReader; import writer2latex.office.OfficeReader;
import writer2latex.office.StyleWithProperties;
import writer2latex.office.XMLString; import writer2latex.office.XMLString;
import writer2latex.util.Misc; import writer2latex.util.Misc;
/** /** This class handles bibliographic citations and the bibliography. The result depends on these
* This class handles the bibliography. The result depends on these * configuration options:
* configuration options. The citations will be treated like this:
* <ul>
* <li><code>use_bibtex</code>: If true, citations will be exported as \cite
* commands. If false, citations will be exported as static text</li>
* </ul>
* The bibliography will be treated like this:
* <ul>
* <li><code>use_index</code>: If false, the bibliography will be omitted</li> * <li><code>use_index</code>: If false, the bibliography will be omitted</li>
* <li><code>use_bibtex</code> true and <code>external_bibtex_files</code> * <li><code>use_bibtex</code> true and <code>external_bibtex_files</code>
* empty: The citations will be exported to a BibTeX file, which will be used * 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 * non-empty: The citations will be not be exported to a BibTeX file, the
* files referred to by the option will be used instead</li> * files referred to by the option will be used instead</li>
* <li><code>use_bibtex</code> false: The bibliography will be exported as * <li><code>use_bibtex</code> false: The bibliography will be exported as
* static text. * a thebibliography environment
* <li><code>bibtex_style</code> If BibTeX is used, this style will be applied * <li><code>bibtex_style</code> If BibTeX is used, this style will be applied
* </ul> * </ul>
* The citations will always be exported as \cite commands.
*/ */
public class BibConverter extends ConverterHelper { class BibConverter extends ConverterHelper {
private BibTeXDocument bibDoc;
private BibTeXDocument bibDoc = null;
/** Construct a new BibConverter. /** Construct a new BibConverter.
*
* @param config the configuration to use * @param config the configuration to use
* @param palette the ConverterPalette to use * @param palette the ConverterPalette to use
*/ */
public BibConverter(OfficeReader ofr,LaTeXConfig config, ConverterPalette palette) { BibConverter(OfficeReader ofr,LaTeXConfig config, ConverterPalette palette) {
super(ofr,config,palette); super(ofr,config,palette);
}
// We need to create a BibTeX document except if we are using external BibTeX files
/** Append declarations needed by the <code>BibConverter</code> to if (!(config.useBibtex() && config.externalBibtexFiles().length()>0)) {
* the preamble. bibDoc = new BibTeXDocument(palette.getOutFileName(),false,ofr);
* @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();
} }
} }
/** Process a bibliography (text:bibliography tag) /** Export the bibliography directly as a thebibliography environment (as an alternative to using BibTeX)
* @param node The element containing the Bibliography */
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 = "";
Collection<String> labels = getLabels();
for (String sLabel : labels) {
if (sLabel.length()>=sWidestLabel.length()) {
sWidestLabel = sLabel;
}
}
ldp.append("\\begin{thebibliography}{").append(sWidestLabel).append("}\n");
generateBibliography(bibliography);
endBibliographyItem();
ldp.append("\\end{thebibliography}\n");
}
@Override protected void insertBibliographyItem(String sStyleName, String sKey) {
endBibliographyItem();
itemBa = new BeforeAfter();
itemContext = (Context) context.clone();
// Apply paragraph style (character formatting only)
StyleWithProperties style = ofr.getParStyle(sStyleName);
if (style!=null) {
palette.getI18n().applyLanguage(style,true,true,itemBa);
palette.getCharSc().applyFont(style,true,true,itemBa,itemContext);
if (itemBa.getBefore().length()>0) {
itemBa.add(" ","");
itemBa.enclose("{", "}");
}
}
// Convert item
ldp.append(itemBa.getBefore());
palette.getI18n().pushSpecialTable(palette.getCharSc().getFontName(style));
ldp.append("\\bibitem");
if (!isNumberedEntries()) {
ldp.append("[").append(bibDoc.getExportName(sKey)).append("]");
}
ldp.append("{").append(bibDoc.getExportName(sKey)).append("} ");
}
private void endBibliographyItem() {
if (itemBa!=null) {
palette.getI18n().popSpecialTable();
ldp.append(itemBa.getAfter()).append("\n");
itemBa = null;
}
}
@Override protected void insertBibliographyItemElement(String sStyleName, String sText) {
BeforeAfter ba = new BeforeAfter();
Context elementContext = (Context) itemContext.clone();
// Apply character style
StyleWithProperties style = ofr.getTextStyle(sStyleName);
palette.getCharSc().applyTextStyle(sStyleName,ba,elementContext);
// Convert text
ldp.append(ba.getBefore());
palette.getI18n().pushSpecialTable(palette.getCharSc().getFontName(style));
ldp.append(palette.getI18n().convert(sText, false, elementContext.getLang()));
palette.getI18n().popSpecialTable();
ldp.append(ba.getAfter());
}
}
/** Append declarations needed by the <code>BibConverter</code> 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 ldp the LaTeXDocumentPortion to which LaTeX code should be added
* @param oc the current context * @param oc the current context
*/ */
public void handleBibliography (Element node, LaTeXDocumentPortion ldp, Context oc) { void handleBibliography(Element node, LaTeXDocumentPortion ldp, Context oc) {
if (config.noIndex()) { return; } if (!config.noIndex()) {
if (config.useBibtex()) { if (config.useBibtex()) { // Export using BibTeX
// Use the style given in the configuration handleBibliographyAsBibTeX(ldp);
// TODO: Create a bst file from the settings of the text:bibliography }
ldp.append("\\bibliographystyle{") else { // Export as thebibliography environment
.append(config.bibtexStyle()) ThebibliographyGenerator bibCv = new ThebibliographyGenerator(ofr);
.append("}").nl(); Element source = Misc.getChildByTagName(node,XMLString.TEXT_BIBLIOGRAPHY_SOURCE);
bibCv.handleBibliography(source, ldp, oc);
// 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);
} }
} }
/** 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 <em>and</em>
* 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;
}
} }

View file

@ -20,7 +20,7 @@
* *
* All Rights Reserved. * All Rights Reserved.
* *
* Version 1.6 (2015-04-15) * Version 1.6 (2015-06-20)
* *
*/ */
@ -31,18 +31,18 @@ import writer2latex.office.OfficeReader;
/** /**
* <p>This is an abstract superclass for converter helpers.</p> * <p>This is an abstract superclass for converter helpers.</p>
*/ */
public abstract class ConverterHelper { abstract class ConverterHelper {
protected OfficeReader ofr; OfficeReader ofr;
protected LaTeXConfig config; LaTeXConfig config;
protected ConverterPalette palette; ConverterPalette palette;
protected ConverterHelper(OfficeReader ofr, LaTeXConfig config, ConverterPalette palette) { ConverterHelper(OfficeReader ofr, LaTeXConfig config, ConverterPalette palette) {
this.ofr = ofr; this.ofr = ofr;
this.config = config; this.config = config;
this.palette = palette; this.palette = palette;
} }
public abstract void appendDeclarations(LaTeXDocumentPortion pack, LaTeXDocumentPortion decl); abstract void appendDeclarations(LaTeXDocumentPortion pack, LaTeXDocumentPortion decl);
} }

View file

@ -37,7 +37,6 @@ import writer2latex.latex.i18n.ClassicI18n;
import writer2latex.latex.i18n.I18n; import writer2latex.latex.i18n.I18n;
import writer2latex.latex.i18n.XeTeXI18n; import writer2latex.latex.i18n.XeTeXI18n;
import writer2latex.latex.util.Context; import writer2latex.latex.util.Context;
import writer2latex.latex.util.Info;
import writer2latex.util.CSVList; import writer2latex.util.CSVList;
import writer2latex.util.ExportNameCollection; import writer2latex.util.ExportNameCollection;
import writer2latex.util.Misc; import writer2latex.util.Misc;

View file

@ -20,7 +20,7 @@
* *
* All Rights Reserved. * 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. * other declarations should be added.
*/ */
public void appendDeclarations(LaTeXDocumentPortion pack, LaTeXDocumentPortion decl) { 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 // use lastpage.sty
if (bUsesPageCount) { if (bUsesPageCount) {
pack.append("\\usepackage{lastpage}").nl(); pack.append("\\usepackage{lastpage}").nl();

View file

@ -20,38 +20,33 @@
* *
* All Rights Reserved. * 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 org.w3c.dom.Element;
import writer2latex.latex.LaTeXConfig;
import writer2latex.util.Misc; import writer2latex.util.Misc;
import writer2latex.office.OfficeReader; import writer2latex.office.OfficeReader;
import writer2latex.office.StyleWithProperties; import writer2latex.office.StyleWithProperties;
import writer2latex.office.XMLString; 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.
* <p>This class creates various information to the user about the conversion.</p>
*/ */
public class Info extends ConverterHelper { class Info extends ConverterHelper {
@Override public void appendDeclarations(LaTeXDocumentPortion pack, LaTeXDocumentPortion decl) { @Override public void appendDeclarations(LaTeXDocumentPortion pack, LaTeXDocumentPortion decl) {
// Currently nothing // Currently nothing
} }
public Info(OfficeReader ofr, LaTeXConfig config, ConverterPalette palette) { Info(OfficeReader ofr, LaTeXConfig config, ConverterPalette palette) {
super(ofr,config,palette); super(ofr,config,palette);
} }
public void addDebugInfo(Element node, LaTeXDocumentPortion ldp) { void addDebugInfo(Element node, LaTeXDocumentPortion ldp) {
if (config.debug()) { if (config.debug()) {
ldp.append("% ").append(node.getNodeName()); ldp.append("% ").append(node.getNodeName());
addDebugInfo(node,ldp,XMLString.TEXT_ID); 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); String sValue = Misc.getAttribute(node,sAttribute);
if (sValue!=null) { if (sValue!=null) {
ldp.append(" ").append(sAttribute).append("=\"").append(sValue).append("\""); ldp.append(" ").append(sAttribute).append("=\"").append(sValue).append("\"");

View file

@ -20,7 +20,7 @@
* *
* All Rights Reserved. * 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 private Element currentPar; // The paragraph of the current item
XhtmlBibliographyGenerator(OfficeReader ofr, Converter converter) { XhtmlBibliographyGenerator(OfficeReader ofr, Converter converter) {
super(ofr); super(ofr,false);
this.converter = converter; this.converter = converter;
} }