w2l BibTeX bugfixes
git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@262 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
parent
b5966134d5
commit
5e9dfc8678
2 changed files with 9 additions and 4 deletions
|
@ -20,7 +20,7 @@
|
|||
*
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Version 1.6 (2015-06-22)
|
||||
* Version 1.6 (2015-07-01)
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -65,6 +65,7 @@ public class BibTeXDocument implements OutputFile {
|
|||
* @param ofr the office document
|
||||
*/
|
||||
public BibTeXDocument(String sName, boolean bIsMaster, OfficeReader ofr) {
|
||||
this.sName = sName;
|
||||
this.bIsMaster = bIsMaster;
|
||||
loadEntries(ofr);
|
||||
// Use default config (only ascii, no extra font packages)
|
||||
|
@ -87,7 +88,7 @@ public class BibTeXDocument implements OutputFile {
|
|||
* @return true if there is one or more entries in the document
|
||||
*/
|
||||
public boolean isEmpty() {
|
||||
return entries.size()>0;
|
||||
return entries.size()==0;
|
||||
}
|
||||
|
||||
/** Get export name for an identifier
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
*
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Version 1.6 (2015-06-22)
|
||||
* Version 1.6 (2015-07-01)
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -59,6 +59,7 @@ import writer2latex.util.Misc;
|
|||
class BibConverter extends ConverterHelper {
|
||||
|
||||
private BibTeXDocument bibDoc = null;
|
||||
private boolean bUseBibTeX;
|
||||
|
||||
/** Construct a new BibConverter.
|
||||
*
|
||||
|
@ -72,6 +73,9 @@ class BibConverter extends ConverterHelper {
|
|||
if (!(config.useBibtex() && config.externalBibtexFiles().length()>0)) {
|
||||
bibDoc = new BibTeXDocument(palette.getOutFileName(),false,ofr);
|
||||
}
|
||||
|
||||
// We need to export it
|
||||
bUseBibTeX = config.useBibtex();
|
||||
}
|
||||
|
||||
/** Export the bibliography directly as a thebibliography environment (as an alternative to using BibTeX)
|
||||
|
@ -228,7 +232,7 @@ class BibConverter extends ConverterHelper {
|
|||
* @return the BiBTeXDocument, or null if no BibTeX file is needed
|
||||
*/
|
||||
BibTeXDocument getBibTeXDocument() {
|
||||
if (bibDoc!=null && !bibDoc.isEmpty()) {
|
||||
if (bUseBibTeX && bibDoc!=null && !bibDoc.isEmpty()) {
|
||||
return bibDoc;
|
||||
}
|
||||
return null;
|
||||
|
|
Loading…
Add table
Reference in a new issue