我正在使用thebibliography
LaTeX 中的命令在论文末尾的“参考文献”标题下生成参考书目。我的参考书目没有存储在单独的 TeX 文件中,而是直接在\begin{thebibliography}
论文末尾的命令下输入。我想减小参考书目的字体大小。我尝试使用第一个答案中建议的命令如何更改参考书目的字体大小?,但对我来说似乎不起作用。它似乎适用于带有单独参考书目文件的文档,而我没有。有人对我如何使用 减小字体大小有什么建议吗thebibliography
?
答案1
将环境封闭thebibliography
在一个组中,然后切换到\footnotesize
该组内。编辑:或者更好的是,切换到\footnotesize
里面环境thebibliography
。
\documentclass{article}
\begin{document}
\section{foo}
Some text in \verb|\normalsize| \cite{test}.
\begin{thebibliography}{9}
\footnotesize
\bibitem{test} A bibliography item in \verb|\footnotesize|.
\end{thebibliography}
\end{document}