参考书目中的编号如下
1. Book1
2. Book2
我想将其更改为
[1] Book1
[2] Book2
另外,我想增加单独项目之间的空间。
我正在使用以下\begin{thebibliography}
命令:
\begin{thebibliography}{45}
\bibitem{} Book1
\bibitem{} Book2
\end{}
答案1
第一个问题似乎已经通过删除一些改变参考书目标签的代码解决了;对于第二个问题(项目之间的垂直间距),您可以使用etoolbox
要修补的软件包\thebibliography
:
\documentclass{article}
\usepackage{etoolbox}
\patchcmd{\thebibliography}{\leftmargin\labelwidth}{\leftmargin\labelwidth\addtolength\itemsep{\baselineskip}}{}{}
\begin{document}
\begin{thebibliography}{9}
\bibitem{testa} First bibitem.
\bibitem{testb} Second bibitem.
\end{thebibliography}
\end{document}
上述代码至少对标准类别(文章、书籍、报告)有效;在这里,\baselineskip
你可以使用任何其他长度(10pt
、1ex
等等):
\addtolength\itemsep{\baselineskip}
结果图像: