From 5d2db73cc9445bb317b280af7275c83a9d9c9d58 Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Mon, 27 Sep 2010 17:25:51 +0000 Subject: [PATCH] fix RTF bibliography generation --- 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 index 61ae4cdc6..8b5050629 100644 --- 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+" ";