It happens that you would like to decrease the spacing in your references, e.g. for a thesis. Here, I found a simple way how to do it. Add the following to your preamble (the body of LaTEx program before \begin{document}): \let\oldthebibliography=\thebibliography \let\endoldthebibliography=\endthebibliography \renewenvironment{thebibliography}[1]{% \begin{oldthebibliography}{#1}% \setlength{\parskip}{0ex}% \setlength{\itemsep}{0ex}% }% {% \end{oldthebibliography}% } It worked for me, so [...]
Posts Tagged ‘LaTex’
Natbib: change spacing in references
Posted in Debian, tagged LaTex on February 6, 2011 | Leave a Comment »
Text color in Beamer presentations
Posted in Debian, tagged LaTex, linux on December 15, 2010 | Leave a Comment »
Beamer is a LaTeX class for creating slides for presentations. It supports both pdfLaTeX and LaTeX + dvips. The name is taken from the German word Beamer, a pseudo-anglicism for video projector. One can make beautiful and structured presentation using all power of LaTex. You can install it in Linux distributions from your package manager. [...]
Texhash
Posted in Debian, tagged LaTex, linux on November 28, 2009 | 2 Comments »
In LaTex, after you have downloaded the necessary files (styles, …), you have to make these visible to TeX. This is accomplished by the following two steps. Create a private tex hierarchy. Under your home directory, create a subdirectory “texmf”, underneath that directory create another one called “tex”. and under this one create a “latex” [...]