从 APA 参考书目中删除斜体部分

从 APA 参考书目中删除斜体部分

本期刊指南要求

参考文献应遵循 APA 格式,但不得使用斜体

在里面apa6 包有些参考文献是斜体的。我想知道,有没有简单的有啥办法可以改变呢?

谢谢,

答案1

您可以尝试在本地重新定义\itdefault

\documentclass{article}
\begin{document}
abc {\itshape abc} \textit{abc}

\begingroup %no itshape here:
\renewcommand\itdefault{n}
abc {\itshape abc} \textit{abc}
\endgroup
\end{document}

相关内容