2

So I'm writing my bibliography in LaTeX using the following setup. However my references come out in a sort of 'newspaper style'. By this I mean the spacing between the words spreads out for them to fit the line, which leaves massive gaps between some of the names. I just want it to stay together like normal text. My document style is 'report'.

\begin{thebibliography}{1}

\bibitem{}
.
.
.
\end{thebibliography}
4

1 回答 1

2

为了避免在其中出现大的水平间隙,参考书目有时会被认为是不合理的(而正文通常是合理的)。在您的设置中执行此操作的一种基本方法是:

\begin{flushleft}
    \begin{thebibliography}{1}
        \bibitem{} ...
        .
        .
        .
    \end{thebibliography}
\end{flushleft}
于 2015-04-11T11:37:19.800 回答