更改特定 bibtex 条目的参考书目样式

更改特定 bibtex 条目的参考书目样式

我正在尝试按照以下文档编写我的论文参考书目:

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Masters/Doctoral Thesis 
% LaTeX Template
% Version 2.3 (25/3/16)
%
% This template has been downloaded from:
% http://www.LaTeXTemplates.com
%
% Version 2.x major modifications by:
% Vel ([email protected])
%
% This template is based on a template by:
% Steve Gunn (http://users.ecs.soton.ac.uk/srg/softwaretools/document/templates/)
% Sunil Patel (http://www.sunilpatel.co.uk/thesis-template/)
%
% Template license:
% CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/)
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

我目前面临的问题是,当我为我的 bibtex 存储“杂项”条目时,其标题在输出的 pdf 文件中以斜体显示。不幸的是,根据我所在大学的标准,我不能对这类杂项文档使用斜体样式。因此,我想了解如何更改这些来源的样式。

答案1

使用

\DeclareFieldFormat[misc]{title}{\mkbibquote{#1\isdot}}
\DeclareFieldFormat[misc]{citetitle}{\mkbibquote{#1\isdot}}

获取条目标题的引号@misc

相关内容