($\TeX$ and $\LaTeX$)
Line 4: Line 4:
  
 
At some point in the early 2000, I switched to $\LaTeX$ for convenience, and almost exclusively use the latter now. Most of this page  
 
At some point in the early 2000, I switched to $\LaTeX$ for convenience, and almost exclusively use the latter now. Most of this page  
 +
 +
== Formatting ==
 +
 +
* Wrapping figures in text: [http://www.grappa.univ-lille3.fr/FAQ-LaTeX/8.17.html]
  
 
== Tricks ==
 
== Tricks ==

Revision as of 12:19, 11 October 2011

$\TeX$ and $\LaTeX$

$\TeX$ is one of the masterpiece of Don Knuth.

At some point in the early 2000, I switched to $\LaTeX$ for convenience, and almost exclusively use the latter now. Most of this page

Formatting

  • Wrapping figures in text: [1]

Tricks

To use footnotes to feature reference-style annotations, that is, with no subscripts and with enclosing brackets [1], add in the preamble:

\makeatletter
\renewcommand{\@makefnmark}
%{\@textsuperscript{\textit{\tiny{\@thefnmark}}}}
{[\@thefnmark]}
\renewcommand\@makefntext[1]{%
    \parindent 1em
    \noindent
    [\@thefnmark]\enspace #1}
\makeatother

(I left, commented, the original definition of the footnote).