1

Numeration in the bibliography looks like

1. Book1
2. Book2

I want to change it to

[1] Book1
[2] Book2

Also, I would like to increase a space between separate item.

I'm using the \begin{thebibliography} command:

\begin{thebibliography}{45}
\bibitem{} Book1
\bibitem{} Book2
\end{}
egreg
  • 1,121,712
kobra
  • 195

1 Answers1

4

The first issue seems to have been solved by removing some code changing the labels for the bibliography; for the second issue (the vertical spacing between items) you can use the etoolbox package to patch \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}

The code above will work, at least, for the standard classes (article, book, report); instead of \baselineskip you can use any other length (10pt, 1ex, etc.) here:

\addtolength\itemsep{\baselineskip}

An image of the result:

enter image description here

Gonzalo Medina
  • 505,128