有没有办法可以改变文档“参考文献”部分的字体样式?
我正在使用该sectsty
包来修改部分字体,但我的代码似乎不会影响我的文档的“参考”部分。
还有其他包、提示或技巧可以用来改变这种情况吗?
以下是我正在使用的代码。谢谢!
% I want to produce "REFERENCES", not "References"
\usepackage{sectsty}
\allsectionsfont{\normalsize\uppercase}
答案1
我会尝试
\renewcommand{\refname}{\MakeUppercase{References}}
如果您的班级是,请替换\refname
为。\bibname
book
如果您正在使用biblatex
,则相关命令在手册的第 3.5.7 节中描述(参见texdoc biblatex
)。
答案2
不要在 的定义中添加格式化宏\refname
(这会在其他地方产生不利影响,例如在目录中),而是\MakeUppercase
在 的定义中使用\allsectionsfont
。
\documentclass{article}
% Including the references in the table of contents
\usepackage[nottoc]{tocbibind}
\usepackage{sectsty}
\allsectionsfont{\normalsize\MakeUppercase}
% Would also affect ToC entry
% \renewcommand{\refname}{\MakeUppercase{References}}
\begin{document}
\tableofcontents
\section{foo}
Some text.
% Reference section without BibTeX
\begin{thebibliography}{9}
\bibitem{1} A bibitem.
\end{thebibliography}
\end{document}