我正在尝试更改参考书目引用的大小
这里 \cite{29} 比正常的要小。为什么?
\documentclass[a4paper, 12pt]{scrreprt}
\begin{document}
\setcitestyle{square}
\section{Motivations and Problem Description}
The increased volume of goods moved by road in the
European Union will significantly increase travel time
and freight transportation costs.\cite{29}
\begin{thebibliography}{3}
\bibitem{29}
Abtin Nourmohammadzadeh and Sven Hartmann (2018):
\emph{Fuel Efficient Truck Platooning with
Time Restrictions and Multiple Speeds Solved by a
Particle Swarm Optimisation},D.
Fagan et al. (Eds.): TPNC 2018, LNCS 11324,
pp.188-200, DOI 10.1007/978-3-030-04070-3 15,
Springer Nature Switzerland AG,
Clausthal-Zellerfeld, Germany.
\end{thebibliography}
\end{document}
答案1
(评论太长,因此作为答案发布)
\setcitestyle
示例代码中存在的指令强烈建议您使用纳特比布引文管理包。此外,您发布的屏幕截图表明您的代码包含指令
\usepackage[super]{natbib}
在序言中的某个地方 —— 或者在序言中加载的其他包中。
如果这些有根据的猜测是正确的,那么实现格式化目标的最简单方法就是用 替换super
,numbers
即运行
\usepackage[numbers]{natbib}
在序言中。