在 moderncv 中添加“出版物(续)”

在 moderncv 中添加“出版物(续)”

在此处输入图片描述 我正在写简历。我的出版物清单需要放在第二页。我想在第二页的顶部加上标题“出版物(续)”。

\documentclass[10pt,a4paper,sans]{moderncv}       
\moderncvstyle{banking}                           

\usepackage[utf8]{inputenc}                       
\usepackage[left=1.5cm, right=1.5cm, top=2cm, bottom=2cm]{geometry}
% personal data
\name{jon}{doe}
\title{Curriculum Vitae}                               

\begin{document}
    \nocite{*}
    \bibliographystyle{unsrt}
    \bibliography{aipsamp} 
\end{document}

aipsamp.bib:

@PREAMBLE{
 "\providecommand{\noopsort}[1]{}" 
 # "\providecommand{\singleletter}[1]{#1}%" 
}

@BOOK{Bire82,
   author       = {N. D. Birell and P. C. W. Davies},
   year         = 1982,
   title        = {Quantum Fields in Curved Space},
   publisher    = {Cambridge University Press}
}

@ARTICLE{feyn54,
   author       = "R. P. Feynman",
   year         = "1954",
   journal      = "Phys.\ Rev.",
   volume       = "94",
   pages        = "262",
}

@ARTICLE{epr,
   author       = "A. Einstein and {\relax Yu} Podolsky and N. Rosen", 
   year         = "1935", 
   journal      = "Phys.\ Rev.", 
   volume       = "47", 
   pages        = "777",
}

@ARTICLE{Berman1983,
   author       = "Berman, Jr., G. P. and Izrailev, Jr., F. M.",
   title        = "Stability of nonlinear modes",
   journal      = "Physica D",
   volume       = "88", 
   pages        = "445",
   year         = "1983",
}

@ARTICLE{Davies1998,
   author       = "E. B. Davies and L. Parns", 
   title        = "Trapped modes in acoustic waveguides", 
   journal      = "Q. J. Mech. Appl. Math.", 
   volume       = "51", 
   pages        = "477--492", 
   year         = "1988", 
}

@MISC{witten2001,
   author       = "Edward Witten",
   eprint       = "hep-th/0106109",
   year         = "2001", 
}

@INBOOK{Beutler1994,
   author       = "E. Beutler", 
   editor       = "E. Beutler and M. A. Lichtman and B. W. Coller and T. S. Kipps", 
   title        = "Williams Hematology", 
   chapter      = "7", 
   pages        = "654--662",
   publisher    = "McGraw-Hill", 
   year         = "1994", 

   edition      = "5", 
   address      = "New York", 
   volume       = "2", 
}

答案1

您可以使用两个具有不同标题的独立参考书目多围兜包。不过,这需要将aipsamp.bib文件拆分成两个单独的文件。使用\renewcommand*{\bibliographyhead}[1]{}参考部分标题可以删除,并使用自己的标题。(感谢 Howie 的这个好建议。)

\documentclass[10pt,a4paper,sans]{moderncv}       
\moderncvstyle{banking}

\usepackage[utf8]{inputenc}                       
\usepackage[left=1.5cm, right=1.5cm, top=2cm, bottom=2cm]{geometry}

\usepackage{multibib}
% Second parameter can be anything, as the headings are added separately
\newcites{second}{ }%  \citesecond, \nocitesecond, ...

\name{jon}{doe}
\title{Curriculum Vitae}                               

\begin{document}
    % Remove regular reference section headings
    \renewcommand*{\bibliographyhead}[1]{}

    \nocite{*}
    % Manually add reference section heading
    \section{Publications}
    \bibliographystyle{unsrt}
    \bibliography{aipsamp}

    \nocitesecond{*}
    % Manually add second reference section heading
    \section{Publications (continued)}
    \bibliographystylesecond{unsrt}
    \bibliographysecond{aipsamp2}
\end{document}

渲染后的 LaTeX

相关内容