Latex tricks to reduce the number of pages of articles: Difference between revisions

From Control Systems Technology Group
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 1: Line 1:
* Use \vspace{-5mm} after your figures to reduce the spacing between the caption and the rest of the text. Example:
* Use \vspace{-5mm} after your figures to reduce the spacing between the caption and the rest of the text. Example:
<pre>
\begin{figure}
\begin{figure}
\centering
\centering
Line 7: Line 8:
\vspace{-5mm}
\vspace{-5mm}
\end{figure}
\end{figure}
</pre>
* Use  
* Use  
     \renewcommand{\baselinestretch}{x}  
     \renewcommand{\baselinestretch}{x}  

Latest revision as of 15:12, 13 March 2012

  • Use \vspace{-5mm} after your figures to reduce the spacing between the caption and the rest of the text. Example:
\begin{figure}
	\centering
	\includegraphics{figurename}
	\caption{Put your caption here}
	\label{fig:figlabel}
	\vspace{-5mm}
\end{figure}
  • Use
   \renewcommand{\baselinestretch}{x} 

in the preamble of your document, where x is typically below 1 to save space.

  • Use
   \usepackage{microtype}
  • etc

See also Squeezing Space in LaTeX