我正在使用dialogue
包和tufte-handout
类 - MWE 如下。我遇到的问题如图所示。插入脚注(实际上是引文)后,对话其余部分的段落间距被压缩到文档的其余部分。
因此,罗伯特和三菱是正确的,语音后的空格哈萨克斯坦和JC不见了。
\documentclass[justified]{tufte-handout}
\usepackage{geometry}
\geometry{a4paper,left=.9cm,top=1cm,bottom=1cm,textwidth=10.5cm,marginparwidth=8.5cm,marginparsep=.2cm}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{dialogue}
\usepackage{hyperref}
\tolerance=1000
% \usepackage{mathptmx}
%\usepackage{pifont}
\usepackage{csquotes}
\usepackage[mla]{ellipsis}
\parindent = 0em
\setlength\parskip{.5\baselineskip}
\usepackage{filecontents}
\begin{filecontents}{ejemplo.bib}
@phdthesis{kaz-thesis,
title={Interpretation-driven association in design},
author={Grace, Kazjon},
year={2012},
school={University of Sydney},
note={Design Lab of the Faculty of Architecture, Design and Planning},
annote={A computational model of situated analogy making based on the transformation of conceptual spaces.}
}
\end{filecontents}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\section{Panel session}
\begin{dialogue}
\speak{Robert} Experimental film maker started to do video installations
bringing abstract worlds back into reality.
%%%
\speak{Mitu} Indie game developer but also a PhD student.
%%%
\speak{Kaz} I came to CC from design cognition. PhD was in ``How do we
look at a model of analogy making''\cite{kaz-thesis}
\speak{JC} \direct{To \refer{himself}.} This seems very interesting!
\speak{JC} \direct{To \refer{sxe}.} Oh wait, it's teh broak.
\end{dialogue}
\bibliographystyle{plain}
\bibliography{ejemplo}
\end{document}
答案1
基于 Barbara Beeton 的评论:
\let\oldcite\cite
\def\cite#1{\setlength\itemsep{\parskip}\oldcite{#1}}