我在用曲线简历模板创建简历,settings
下面是 MWE 的来源。有两个问题:
- 使用
@reference
将年份发送到末尾,而在其他参考文献样式(如文章)中,我将年份放在作者后面的括号中。 - 当
note
使用时,它在参考文献中出现了两次,(参见Accepted
示例)。
虽然第二个并不重要,但第一个却破坏了布局。有什么建议吗?
当我更改@conference
为时@inproceedings
,两个问题都得到解决。但是,引用随后出现在Journal Articles
部分下。
\documentclass[a4paper,10pt,english]{curve}
\PassOptionsToPackage{style=apa,sorting=ydnt,defernumbers=true, uniquelist=true}{biblatex}
\usepackage{settings}
\DefineBibliographyStrings{english}{url={\textsc{url}}}
\mynames{Doe\bibnamedelima John,
Doe/John,
Doe/\bibnamedelimi J.}
\leftheader{%
\centering
\LARGE\bfseries\sffamily\Huge{John Doe}
\medskip\small
\makefield{\faEnvelope[regular]}{\href{mailto:[email protected]}{\texttt{[email protected]}}}
}
\rightheader{~}
\begin{filecontents}{\jobname.bib}
%%%%%%%%%%%% JOURNAL PAPERS %%%%%%%%%%%%%
@article{journalpaper,
title={My Journal Paper},
author={Doe, John},
journal={Top Journal},
volume={1},
pages={1--2},
year={2025}
}
%%%%%%%%%%% WORK IN PROGRESS %%%%%%%%%%%%
@unpublished{wip,
title={My Work In Progress},
author={Doe, John and Roberts, Julia},
note = {[In Progress]},
year = {2027}
}
%%%%%%%%%%% CONFERENCE PAPERS %%%%%%%%%%%
@conference{conf,
title={My Conference Paper},
author={Doe, John and Roberts, Julia},
year = {2026},
booktitle = {A Conference Proceedings},
note = {Accepted}
}
%%%%%%%%%%%%% PRESENTATIONS %%%%%%%%%%%%%
@misc{present,
title={A Nice Presentation It Was},
author={Doe, John},
year = {2018}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\makeheaders[c]
\makerubrichead{Research Publications}
\nocite{*}
\printbibliography[heading={subbibliography},title={Journal Articles},type=article]
\printbibliography[heading={subbibliography},title={Conference Proceedings (Full Papers)},type=inproceedings]
\printbibliography[heading={subbibliography},title={In Progress and Submitted Manuscripts},type=unpublished]
\makerubrichead{Conference Presentations}
\nocite{*}
\printbibliography[heading={none},type=misc]
\end{document}