commit 5d2db73cc9445bb317b280af7275c83a9d9c9d58 parent 8bb80de5db2b227b35af28f2e3b61aa47f0ec158 Author: Simon Kornblith <simon@simonster.com> Date: Mon, 27 Sep 2010 17:25:51 +0000 fix RTF bibliography generation Diffstat:
| M | chrome/content/zotero/xpcom/cite.js | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/chrome/content/zotero/xpcom/cite.js b/chrome/content/zotero/xpcom/cite.js @@ -261,8 +261,8 @@ Zotero.Cite.makeFormattedBibliography = function(cslEngine, format) { } else if(format == "rtf") { var bibStyle = Zotero.Cite.getBibliographyFormatParameters(bib); - var preamble = (tabStops.length ? "\\tx"+tabStops.join(" \\tx")+" " : ""); - preamble += "\\li"+indent+" \\fi"+firstLineIndent+" " + var preamble = (bibStyle.tabStops.length ? "\\tx"+bibStyle.tabStops.join(" \\tx")+" " : ""); + preamble += "\\li"+bibStyle.indent+" \\fi"+bibStyle.firstLineIndent+" " +"\\sl"+bibStyle.lineSpacing+" \\slmult1 " +"\\sa"+bibStyle.entrySpacing+" ";