我想使用 natbib 将参考书目中期刊的字体样式从斜体更改为中等字体?
\renewcommand{\bibfont}{\footnotesize}
允许改变大小,但我还没有找到改变样式的选项。
任何帮助深表感谢
答案1
不完全确定您在想什么,因此 MWE 可能会有所帮助,但这会将样式更改为斜体。 biblatex
值得研究;它比具有更多功能natbib
。
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{hi.bib}
@artice{nut,
author={Nut Job},
year={2017}
}
\end{filecontents}
\usepackage{natbib}
\bibliographystyle{apalike}
\renewcommand{\bibfont}{\itshape}
\begin{document}
\citet{nut}
\bibliography{hi}
\end{document}