summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/elbioimp/elbioimp-basis.tex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2011-03-18 20:48:34 +0000
committerKarl Berry <karl@freefriends.org>2011-03-18 20:48:34 +0000
commitba7499d75b8508b2df8e57c271da5148cb05e0ff (patch)
tree8f9e7c1b735f80e5cdca4bc5df3532a77532b2e0 /Master/texmf-dist/doc/latex/elbioimp/elbioimp-basis.tex
parentc9ed11b97f2a1825870dc8d0a75c61a035c3c3c3 (diff)
elbioimp (18mar11)
git-svn-id: svn://tug.org/texlive/trunk@21758 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/elbioimp/elbioimp-basis.tex')
-rw-r--r--Master/texmf-dist/doc/latex/elbioimp/elbioimp-basis.tex64
1 files changed, 49 insertions, 15 deletions
diff --git a/Master/texmf-dist/doc/latex/elbioimp/elbioimp-basis.tex b/Master/texmf-dist/doc/latex/elbioimp/elbioimp-basis.tex
index 8eb6d6838bc..4379a782a85 100644
--- a/Master/texmf-dist/doc/latex/elbioimp/elbioimp-basis.tex
+++ b/Master/texmf-dist/doc/latex/elbioimp/elbioimp-basis.tex
@@ -10,13 +10,13 @@
\documentclass{elbioimp}
%% OPTION: Select encoding used in you LaTeX file:
-\usepackage[latin1]{inputenc} % ISO 8859-1 (standard single-byte
- % encoding in the Western world)
-% \usepackage[applemac]{inputenc} % Standard Mac encoding
-% \usepackage[utf8]{inputenc} % Unicode
+\usepackage[latin1]{inputenc} % ISO 8859-1 (standard single-byte
+ % encoding in the Western world)
+% \usepackage[applemac]{inputenc} % Standard Mac encoding
+% \usepackage[utf8]{inputenc} % Unicode in UTF-8
%% OPTION: Select your language:
-\usepackage[USenglish]{babel} % American English
+\usepackage[USenglish]{babel} % American English
% \usepackage[UKenglish]{babel} % British English
%% Other packages you might need:
@@ -27,10 +27,21 @@
%% OPTION: Document information:
\title{My title} % Article title
-\author{First author\thanks{Institution of first author}\and
- Second author\thanks{Institution of second author}\and
- Third author\thanks{Institution of third author}}
-
+\author{First author\affiliation{Institution of first author}\and
+ Second author\affiliation{Institution of second author}\and
+ Third author\affiliation{Institution of third author}}
+
+%% For identical affiliations:
+% \author{A Author\affiliation{Uni 1}\and
+% B Author\sameaffiliation}
+%
+%% In more complex cases, use \sameaffiliation[n].
+%% For example: Assume first and third author have the same affiliation:
+% \author{A Author\affiliation{Uni 1}\and
+% B Author\affiliation{Uni 2}\and
+% C Author\sameaffiliation[1]}
+
+%% OPTION: Keywords:
\keywords{Keyword1, keyword2, keyword3} % Article keywords
@@ -38,11 +49,12 @@
%% And, finally, the article itself:
\begin{document}
+%% NOTE: Always use \maketitle!
\maketitle
+%% NOTE: Always include an abstract!
\begin{abstract}
- %% OPTION: Always include an abstract!
Put your abstract here.
\end{abstract}
@@ -50,16 +62,38 @@
\section{Introduction} % Level 1 heading
\subsection{Previous results} % Level 2 heading
+\subsubsection{The 2001 investigations} % Level 3 heading
%% NOTE: Your text.
+%% REMEMBER:
+%% \# for # \% for % \{ for { \_ for _
+%% \$ for $ \& for & \} for }
+%% \textbackslash for \
+%% \textasciicircum for ^
+%% \textasciitilde fir ~
+%%
%% Use a blank line to separate paragraphs.
%% Use \url{...} for e-mail addresses and URLs.
-%\begin{figure} % Illustration
-% \includegraphics[options]{illustration1}
-% \caption{Figure caption}
-%\end{figure}
+%% OPTION: An illustration:
+% \begin{figure}
+% \centering
+% \includegraphics[width=\columnwidth]{illustration1}
+% \caption{Figure caption\label{a label}}
+% \end{figure}
+
+%% OPTION: A table:
+% \begin{table}
+% \centering
+% \begin{tabular}{|l|c|r|} %% l=left, c=center, r=right, |=vertical rule
+% \hline %% horizontal rule
+% A& B& C\\ %% & separates columns; \\ ends row
+% \hline
+% \end{tabular}
+% \caption{Table caption\label{a label}}
+% \end{table}
+
%% OPTION: Name of your BibTeX bibliography file:
-\bibliography{mybib} %% No .bib suffix!
+% \bibliography{mybib} %% No .bib suffix!
\end{document}