LoginSignup
3
1

More than 3 years have passed since last update.

Latexで参考文献の行間を詰めたい

Posted at

状況・問題

  • bibtexを利用して参考文献を表示している
  • 参考文献の部分だけ\scriptsizeを利用してフォントサイズを下げている
  • 全体に対してすでに\baselinestretchをかけているため,これを使って参考文献の行間を詰められない

解決策

  • 中間ファイルである.bblから直書きのthebibliographyをtexファイルへコピペする
  • その直下で以下を追加

    • \setlength{\itemsep}{-2pt}
  • こんな感じ

\begin{thebibliography}{10}
    \scriptsize % フォントサイズを下げる
    \setlength{\itemsep}{-2pt} % 行間を縮める

    \bibitem{...
\end{thebibliography}

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1