更改参考书目标题中的字体,\refname 不起作用

更改参考书目标题中的字体,\refname 不起作用

我正在尝试更改章节引用的标题。我知道这个问题之前有人问过,不幸的是他们的解决方案对我没有帮助。我正在使用MiKTeX 2.9版本 0.4.3.r.857,BibTeX数据库创建者Mendeley 桌面版本 1.5.2。

以下是开头代码的相关部分:

.
[irrelevant code]
.
\newcommand{\artitle}[1]{\Huge #1}
\newcommand{\arauthor}[2]{\Large \emph{#2}$^{#1}$}
\newcommand{\sppart}[1]{\begin{center}{ \parskip = 2\baselineskip \smal \MakeUppercase{#1}}\\[0.3cm]\end{center}}
.
[irrelevant code]
.
\renewcommand{\familydefault}{\sfdefault}
\usepackage[font=small,format=plain]{caption}
\usepackage[round]{natbib}
\usepackage{lmodern}
\begin{document}
.
[document] 
.

以下是参考代码:

\sppart{acknowledgment}
This research work is undertaken in the scope of the TRANSMIT ITN (www.transmit-ionosphere.net), funded by the Research Executive Agency within the 7TH  Framework Program of the European Commission, People Program, Initial Training Network, Marie Curie Actions - GA no 264476.
\sppart{references}
% BIBLIOGRAPHY
\bibliographystyle{agsm}
\bibliography{D:/Dropbox/library}
\end{document}

在此处输入图片描述

我想删除粗体参考词或将其更改为第一个非粗体词。正如我之前在这里读到的,将参考标题设置为空的命令是:\renewcommand{\refname}{}。但是当我尝试使用此命令时,乳胶不会改变任何东西。

如果您需要任何其他信息,请告诉我。感谢您的帮助。

答案1

既然你正在使用natbib,你能做的最好的事情就是说

\renewcommand{\bibsection}{\sppart{references}}

在序言中,

\sppart{acknowledgment}
This research ...

% BIBLIOGRAPHY
\bibliographystyle{agsm}
\bibliography{D:/Dropbox/library}

\end{document}

就足够了

相关内容