我正在尝试使用 moderncv 文档类编写带有以下序言的简历:
\documentclass[10pt,letter]{moderncv}
% CV Theme Settings
\moderncvtheme[black]{classic}
% Font and Typography Settings
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[babel=true]{microtype}
....
对于我的出版物,我有以下代码:
\nocite{*}
\bibliographystyle{plainyr}
\bibliography{publications}
pdflatex
当我使用and dance排版我的简历时bibtex
,我的出版物会显示在“参考文献”标题下。有人知道如何将部分标题更改为“出版物”吗?我尝试手动放置一个部分,如下所示:
\section{\textbf{Publications}}
\nocite{*}
\bibliographystyle{plainyr}
\bibliography{publications}
但这只会放置一个空的出版物部分和一个名为参考文献的部分。
提前感谢您。
答案1
由于您使用的是babel
选项english
,因此您需要添加此项
\addto\captionsenglish{\renewcommand\refname{Publications}}
到文档的序言部分。一个完整的示例(我更改了一些设置以使该示例可供所有人编译,但这与此无关):
\begin{filecontents}{xxyy.bib}
\@misc{A,
author="Author",
year="2024"
}
\end{filecontents}
\documentclass[10pt,letter]{moderncv}
\moderncvtheme[black]{classic}
\usepackage[english]{babel}
\firstname{John}
\familyname{Doe}
\addto\captionsenglish{\renewcommand\refname{Publications}}
\begin{document}
\maketitle
\nocite{*}
\bibliographystyle{plain}
\bibliography{xxyy}
\end{document}