ラテックスでは、脚注と表のキャプションを含むドキュメント全体をダブルスペースにします。
私が試してみました
\ usepackage {setspace}
\ doublespacing
メインテキストでは機能しますが、表のキャプションでは機能しません。
誰か考えがありますか?ありがとうございました。
caption
は setspace
の存在を検出し、それに応じてfont
キー値を設定できます。
\documentclass{article}
\usepackage{setspace,caption}
\usepackage{lipsum}
\captionsetup{font=doublespacing}% Double-spaced float captions
\doublespacing% Double-spaced document text
\begin{document}
\begin{figure}
\caption[lipsum2]{\lipsum[2]}
\end{figure}
\lipsum[1]
\end{document}