tufte-handout - 脚注によって会話の行間隔が分割される

tufte-handout - 脚注によって会話の行間隔が分割される

私は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}}

関連情報