diff options
author | John MacFarlane <jgm@berkeley.edu> | 2020-11-18 23:21:48 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2020-11-18 23:22:34 -0800 |
commit | 6b057d6d18868bb481134a448c08e70474cde473 (patch) | |
tree | 067b55c5bd94a6d0f3636ee6b00855c91e27f273 /data | |
parent | 356795dba06e2f1c4a0336c9836c132e97929926 (diff) | |
download | pandoc-6b057d6d18868bb481134a448c08e70474cde473.tar.gz |
latex template: add a `\break` after parbox in CSLRightInline.
This should fix spacing problems between entries
with numeric styles.
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/default.latex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/default.latex b/data/templates/default.latex index dee612b45..aad9ee36c 100644 --- a/data/templates/default.latex +++ b/data/templates/default.latex @@ -387,7 +387,7 @@ $if(csl-refs)$ \usepackage{calc} \newcommand{\CSLBlock}[1]{#1\hfill\break} \newcommand{\CSLLeftMargin}[1]{\parbox[t]{\csllabelwidth}{#1}} -\newcommand{\CSLRightInline}[1]{\parbox[t]{\linewidth - \csllabelwidth}{#1}} +\newcommand{\CSLRightInline}[1]{\parbox[t]{\linewidth - \csllabelwidth}{#1}\break} \newcommand{\CSLIndent}[1]{\hspace{\cslhangindent}#1} $endif$ |