如何使用 Biber 和 Friggeri CV 模板制作没有标题的参考书目?

如何使用 Biber 和 Friggeri CV 模板制作没有标题的参考书目?

我想使用在那里找到的 Friggeri 模板制作一份简历: http://www.latextemplates.com/template/friggeri-resume-cv

但由于我只有出版物部分的文章,我不希望出现子部分标题。我找到了如何将其更改为我想要的任何内容的方法,但我不知道如何使其完全消失。有人知道怎么做吗?

这是我的 MWE:

\documentclass[]{friggeri-cv} % Add 'print' as an option into the square 

bracket to remove colors from this template for printing

\addbibresource{bibliography.bib} % Specify the bibliography file to include publications

\begin{document}

\header{john}{smith}{junior business analyst} % Your name and current job title/field
%----------------------------------------------------------------------------------------
%   PUBLICATIONS SECTION
%----------------------------------------------------------------------------------------

\section{publications}

\printbibsection{article}{I don't want this line to appear} % Print all articles from the bibliography

%----------------------------------------------------------------------------------------

\end{document}

这是我从代码中得到的结果: 在此处输入图片描述

我已经尝试以下操作:

\printbibsection{article}{}

但随后它会自动写出“参考书目”

并且 :

\printbibsection[header=none]{article}

但它根本不起作用。

使用模板的注意事项:为了编译文件,您必须拥有“new helvetica”字体或在给定链接下的类文件中对其进行更改。

感谢您的帮助。

答案1

最好的解决方案可能是

\renewcommand{\printbibsection}[2]{%
  \begin{refsection}
    \nocite{*}
    \printbibliography[sorting=chronological, type={#1}, title={#2}, heading=none]
  \end{refsection}}

只需将其放入你的序言中即可。

平均能量损失

\documentclass[]{friggeri-cv} 
\addbibresource{bibliography.bib}

\renewcommand{\printbibsection}[2]{%
  \begin{refsection}
    \nocite{*}
    \printbibliography[sorting=chronological, type={#1}, title={#2}, heading=none]
  \end{refsection}}

\begin{document}
\header{john}{smith}{junior business analyst} 
\section{publications}

\printbibsection{article}{foooo} 
\end{document}

示例输出


或者,如果没有上述重新定义,你只能说

\printbibsection{article}{~}

那么间距就会像有一个空的标题一样。

相关内容