-
Notifications
You must be signed in to change notification settings - Fork 0
/
latex03.tex
80 lines (68 loc) · 1.92 KB
/
latex03.tex
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
66
67
68
69
70
71
72
73
74
75
76
\documentclass[a4paper, brazil, 12pt , onecolumn]{report}
\input{pacotes}
\title{Aula de Latex}
\author{Luciano Senger}
%Options: Sonny, Lenny, Glenn, Conny, Rejne, Bjarne, Bjornstrup
\usepackage[Lenny]{fncychap}
\makeindex
\begin{document}
\maketitle
\tableofcontents
\listoffigures
\listoftables
\chapter{Introdução}
\lipsum[1-3]
\chapter{Material e Métodos}
Hello World!
O parâmetro \cf{alpha} \index{alpha} regula a quantidade de tensão no sistema.
Ele deve ser \textit{escolhido} empiricamente~\footnote{Consultar manual.}.
\subsection{Valores padrão}
O valor padrão é igual a~30 ou~50.
A tensão final será igual $v = \sum_{i=0}^n \frac{x \times y}{\alpha}$, que corresponde ao total.
Conforme equação~\ref{eq:tensao}, pode-se observar que~\ref{fig:alfa}.
\begin{equation}
v = \sum_{i=0}^n \frac{x \times y}{\alpha}
\end{equation}\label{eq:tensao}
\begin{figure}[htb]
\centering
\includegraphics[scale=.1]{mapa}
\caption{Mapa mental do \LaTeX}
\end{figure}\label{fig:alfa}
O parâmetro {\Huge beta} \textbf{regula} a impedância.
Já aprendi 10\% de latex.
As variáveis são:
\begin{itemize}
\item variavel b;
\item alpha;
\item variavel c.
\end{itemize}
\begin{enumerate}
\item variavel b;
\item alpha;
\item variavel c.
\end{enumerate}
A Tabela~\ref{tab:idade} apresenta os valores médio.
\begin{table}[htb]
\caption{Idade e peso médio observados}\label{tab:idade}
\centering
% \begin{tabularx}{0.9\linewidth}{lX}
\begin{tabular}{cc}
\hline
\bf Idade & \bf Altura \\
\hline
30 & 180 kj aklsdjlksa lkjads lskajd laksjdlaks jdlkal lajsdlkasjd lksaj\\
40 & 175 \\
\hline
\end{tabular}
% \end{tabularx}
\end{table}
\lstset{language=Python}
\lstinputlisting{token.py}
Conforme descrito em~\cite{Harris2012,Hennessy2014,Goodfellow2016,Mota2011}, pode-se observar que.
\appendix
\chapter{Análise Estatística}
\lipsum[3-8]
\printindex
\bibliographystyle{abnt-alf}
\bibliography{base}
\end{document}