http://www.tex.ac.uk/cgi-bin/texfaq2html?label=nameref
The way that works for me is the nameref command from within hyperref package. One possible usage is:
\section*{foo}
\label{sec:foo}
...
\nameref{sec:foo}
\section*{foo}
\label{sec:foo}
...
\nameref{sec:foo}
\newpage
\mbox{}
\newpage
\newpage
\thispagestyle{empty}
\mbox{}
\newpage
\usepackage
[landscape]{geometry}
\documentclass[landscape,twocolumn,letterpaper]{article}
some more hints at
http://texblog.org/2007/11/10/landscape-in-latex/
\begin{figure}[h] \hfill \begin{minipage}[t]{.45\textwidth} \begin{center} \epsfig{file=figure1.eps, scale=0.5} \caption{figure 1} \label{fig-tc} \end{center} \end{minipage} \hfill \begin{minipage}[t]{.45\textwidth} \begin{center} \epsfig{file=figure2.eps, scale=0.5} \caption{figure 2} \label{fig-tc} \end{center} \end{minipage} \hfill \end{figure}
\\Well, it works, bit it is actually not new line, but starting a new paragraph
\\*
\graphicspath{{./mypics/}}after the includes.
\usepackage{verbatim}
...
\begin{comment}
...
commented text
...
\end{comment}
see http://en.wikibooks.org/wiki/LaTeX/Labels_and_Cross-referencing for more detils\section{Greetings} \label{sec:greetings} Hello! \section{Referencing} I greeted in section~\ref{sec:greetings}.
$\left\{
\begin{array}{l c l}
x &\rightarrow& y \\
z &\rightarrow& w
\end{array}
\right.$
$
\frac{\partial\x} {\partial{\theta}}$
$x_{k+1}\ =\ x_k+w_k$
$ \int^{+\infty}_{-\infty} x \, dx $
$ \operatorname{arg\,max}_a f(a) \operatorname*{arg\,max}_b f(b)$
\bibliography{file1,file2}where file1.bib and file2.bib contain the references
a= {0.6 if t <= 100The easiest, and most elegant way to do this is to use \case command, as
{0.9 it t > 100
$\sum_{i=1}^n expression$Note that in inline code this will put lower and upper bound next to the sum sign, not over and under. To display lower and upper bound under and over the sum sign use the \displaystyle command before the sum.
$\sum\limits_{i=1}^n expression$
$x = \frac{numerator}{denominator}$
\usepackage{amssymb}
$v \sim \mathcal{N} (m,\sigma^2)$
Make use of the \subtitle command, to do this use scrartcl document class,
and if you want the same fonts as at the article class,
also set them accordingly with
\setkomafont
\documentclass{scrartcl}
\setkomafont{disposition}{\normalfont\bfseries}
\begin{document}
\title{(Title)}
\subtitle{(Subtitle)}
\author{(Author)}
\maketitle
\end{document}
Use the hyperref package as:
\documentclass{article} \usepackage{hyperref} \begin{document} Here's a link to \href{http://webpage.com}{text}. \end{document}
See at http://www.johndcook.com/blog/2008/11/24/link-to-web-pages-from-latex-pdf/
or
http://en.wikibooks.org/wiki/LaTeX/Hyperlinks
$
L = \left[
\begin{array}{cc}
x & y \\
z & w
\end{array} \right]
$
A good reference about the topic can be found here:$However this latter will always put the matrix inside round parenthesis.
\begin{pmatrix}
x & y \\
z & w
\end{pmatrix}
$