我想将我的出版物分成几个小节。我想将标题写在第一列中,而不是小节标题。
查看下面附加的 MWE,我希望右侧有小节标题(如文章),但正文的位置与第一部分相同 - 只是没有顶部的小节标题。
\documentclass[11pt,letterpaper,sans]{moderncv}
\moderncvstyle{banking}
\usepackage{apacite}
\usepackage[scale=0.75]{geometry}
\firstname{John}
\familyname{Doe}
\address{somewhere}{}
\moderncvstyle{classic}
\usepackage{multibib}
\newcites{article,book}{{},{Books}}
%----------------------------------------------------------------------------------
% content
%----------------------------------------------------------------------------------
\begin{document}
\makecvtitle
% Publications from a BibTeX file using the multibib package
\section{Publications}
\nocitebook{A}
\nocitebook{B}
\bibliographystylebook{unsrt}
\bibliographybook{test}
\nocitearticle{C}
\nocitearticle{D}
\bibliographystylearticle{unsrt}
\cvitem{Articles}{\bibliographyarticle{test}}
\clearpage
\end{document}
答案1
建议使用biblatex
非常手动的破解方法来避免垂直空间(图中未显示)。
\documentclass[11pt,letterpaper,sans]{moderncv}
\moderncvstyle{banking}
\usepackage[scale=0.75]{geometry}
\firstname{John}
\familyname{Doe}
\address{somewhere}{}
\moderncvstyle{classic}
\usepackage[style=authoryear]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\makecvtitle
\nocite{aksin,angenendt,aristotle:physics,aristotle:anima}
\defbibheading{bibliography}{}
\section{Publications}
\cvitem{\rlap{\rule{4cm}{.1pt}}Books}{\vspace{-4.1ex}\printbibliography[type=book]}
\cvitem{\rlap{\rule{4cm}{.1pt}}Articles}{\vspace{-4.3ex}\printbibliography[type=article]}
\end{document}