普通字体对应的命令是什么\mkbibemph
?我想将文章期刊的斜体字体改为普通字体。比如\DeclareFieldFormat[journal]{title}{\mkbibemph{#1}}
。
答案1
默认字体是普通字体。因此,要回答这个问题,不是使用任何类似的字体mkbibemph
都不会从普通字体转变为其他字体。
在下图中添加了红色以使变化更加清晰。
\DeclareFieldFormat[article]{journaltitle}{#1}
只会给出期刊标题的正常结果。
\documentclass{article}
\usepackage{xcolor}
\usepackage[style=authoryear,backend=biber]{biblatex}
\addbibresource{biblatex-examples.bib}
\DeclareFieldFormat[article]{journaltitle}{{\color{red!60!black}#1}}
\begin{document}
Many scientific articles do not contain any stuff about Wombats,
one example was delivered by \textcite{bertram}
\printbibliography
\end{document}