blob: 8eb6d6838bceab58533a9d80c6ce5a9429830d0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
%% Base file for an article submitted to the Journal of Electrical
%% Bioimpedance.
%% 1. Make a copy of this file.
%% 2. Select your options (look for "OPTION" below).
%% 3. Add your text and illustrations.
\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
%% OPTION: Select your language:
\usepackage[USenglish]{babel} % American English
% \usepackage[UKenglish]{babel} % British English
%% Other packages you might need:
% \usepackage{graphicx} % Add this package if you have illustrations
% \usepackage{textcomp} % Additional characters
%% 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}}
\keywords{Keyword1, keyword2, keyword3} % Article keywords
%% And, finally, the article itself:
\begin{document}
\maketitle
\begin{abstract}
%% OPTION: Always include an abstract!
Put your abstract here.
\end{abstract}
\section{Introduction} % Level 1 heading
\subsection{Previous results} % Level 2 heading
%% NOTE: Your text.
%% 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: Name of your BibTeX bibliography file:
\bibliography{mybib} %% No .bib suffix!
\end{document}
|