na\"\i ve
Works for me
na\"\i ve
\begin{eqnarray}I sometimes get that I should not use eqnarray that extensive, but it works for me.
\begin{array}{rl}
&x = foo \\
& y = bar
\end{array}
\end{eqnarray}
$ sudo aptitude install latexdiff
$ latexdiff old.tex new.tex > diff.tex
$ latexdiff-vc --svn -r <oldversion> --pdf <mylatex.tex>in order to generate pdf diff in one step
latex foo.texThis then will create a relatively good looking html, that can be read under soffice for instance and convert to doc / docx, etc...
latex foo.tex
latex foo.tex
htlatex foo.tex
\cite[section~1.1]{foo}this way you can for instance cite several parts / sections / chapters from the same book or paper.
$makeWorks perfectly for me for creating the pdf from the surce.
\begin{flushright}
\cite{mypaper}
\end{flushright}
\begin{columns}[cc]
\column{0.5\textwidth}\end {columns}
some content ...
\column{0.5\textwidth}
some more content
#/usr/bin/bash
for file in *.eps
do
epstopdf $file
done
$ find . -name "*.eps" -exec epstopdf {} \;
$\mathbb{R}^n$Do not forget to include the amssymb or amsfonts package
New commands can be defined as
\newcommand{\newtag}{your new command}
If you would like to pass arguments to the command it is possible as
\newcommand{\newtag}[1]{your new command, your argument is {#1}}
\frac{a}{b}
$A^{\rm T}$
$\mathcal{O}(x^2 + ...)$
$ convert myfile.tif myfile.pdf
\newcommand{\signature}[2][5cm]{
\begin{tabular}
{@{}p{#1}@{}}
\hrule \\[0.05cm]
\centering{#2}
\end{tabular}
}
\flushright\noindent \signature{Firstname Lastname}