我正在使用以下模板来创建学术简历:
https://www.overleaf.com/latex/templates/minimal-academic-cv-template/dztfsxjnjvhy
但是,我在使用打印出版物的命令时遇到了问题。出版物列表很长,足以占据一页以上的空间,但整个书目却打印在一页上,超出了页面的边距。我怎样才能强制此命令的结果跨越多页?
该命令可以在fields-cv/labeled-items.tex内容如下:
\newcommand*\CVKeywordReferences[1][]{%
\begingroup
\setkeys{cvkeyrefs}{#1}
\color{bodytxt}
\rightminipageonly{%
\begin{minipage}[t]{\descleftmargin\textwidth}%
\labeltext%
\end{minipage}%
\hfill%
\begin{minipage}[t]{\descrightmargin\textwidth}%
\nocite{*}%
\foreach \kw in \keyword {%
\begingroup\edef\x{\endgroup\noexpand
\vspace*{-0.7\baselineskip}
\printbibliography[heading=none, sorting=ynt, keyword=\keyword]
}\x
}
\end{minipage}%
}
}