web-dev-qa-db-ja.com

ラテックスのダブルスペース全体のドキュメント

ラテックスでは、脚注と表のキャプションを含むドキュメント全体をダブルスペースにします。

私が試してみました

\ usepackage {setspace}

\ doublespacing

メインテキストでは機能しますが、表のキャプションでは機能しません。

誰か考えがありますか?ありがとうございました。

7
Kacey

captionsetspace の存在を検出し、それに応じてfontキー値を設定できます。

enter image description here

\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}
5
Werner