(→Formatting) |
|||
Line 8: | Line 8: | ||
* Wrapping figures in text: [http://www.grappa.univ-lille3.fr/FAQ-LaTeX/8.17.html] | * Wrapping figures in text: [http://www.grappa.univ-lille3.fr/FAQ-LaTeX/8.17.html] | ||
+ | |||
+ | == Lists == | ||
+ | |||
+ | * To change spacing between items, put after \begin{itemize}: | ||
+ | |||
+ | <code lang="latex"> | ||
+ | \addtolength{\itemsep}{-0.5\baselineskip} | ||
+ | </code> | ||
+ | |||
+ | For more advanced redefinitions, see the tweaklist.sty package. | ||
== Footnotes == | == Footnotes == |
Contents |
$\TeX$ is one of the masterpieces of Don Knuth.
At some point in the early 2000, I switched to $\LaTeX$ for convenience, and almost exclusively use the latter now.
\addtolength{\itemsep}{-0.5\baselineskip}
For more advanced redefinitions, see the tweaklist.sty package.
There is a $\LaTeX$ package, footmisc, that is useful for manipulating footnote formatting.
%\footnotesep is the space between footnotes:
\setlength{\footnotesep}{-0.5\baselineskip}
%\footins is the space between the text body and the footnotes:
\setlength{\skip\footins}{1cm}
\makeatletter
\renewcommand{\@makefnmark}
%{\@textsuperscript{\textit{\tiny{\@thefnmark}}}}
{[\@thefnmark]}
\renewcommand\@makefntext[1]{%
\parindent 1em \noindent [\@thefnmark]\enspace #1}
\makeatother</latex>
(I left, commented, the original definition of the footnote).</span>