I was trying to find ways to correct large vertical spaces between paragraphs. After serching a bit on internet, I got the following command along with other options. So I wanted to share it here and for my own future reference.
Remove the spacing between paragraphs and have a small paragraph indentation
\setlength{\parskip}{0cm}
\setlength{\parindent}{1em}
Source:
http://robjhyndman.com/hyndsight/squeezing-space-with-latex/
http://www.terminally-incoherent.com/blog/2007/09/19/latex-squeezing-the-vertical-white-space/
http://www-h.eng.cam.ac.uk/help/tpl/textprocessing/squeeze.html
https://ravirao.wordpress.com/2005/11/19/latex-tips-to-meet-publication-page-limits/
Make your text block as big as possible. The simplest way to do that is using the geometry package:
\usepackage[text={16cm,24cm}]{geometry}
|
Use a compact font such as Times Roman:
Remove space around section headings.
\usepackage[compact]{titlesec}
\titlespacing{\section}{0pt}{2ex}{1ex}
\titlespacing{\subsection}{0pt}{1ex}{0ex}
\titlespacing{\subsubsection}{0pt}{0.5ex}{0ex}
|
Beware of enumerated and itemized lists. Instead, replace them with compact lists.
\begin{compactitem}
\item ...
\end{compactitem}
\begin{compactenum}
\item ...
\end{compactenum}
|
If you are allowed, switching to double column can save heaps of space.
\begin{multicols}{2}
...
\end{multicols}
|
If the rules say 12pt, you can usually get away with 11.5pt without anyone noticing:
\begin{document}\fontsize{11.5}{14}\rm
|
When you get desperate, you can squeeze the inter-line spacing using
There is also a
savetrees
package which does a lot of squeezing, but the results don’t always
look nice, so it is better to try one or more of the above tricks
instead.
No comments:
Post a Comment