-
Notifications
You must be signed in to change notification settings - Fork 0
/
exemplo-15.tex
41 lines (33 loc) · 1.13 KB
/
exemplo-15.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
\documentclass[a4paper, brazil, 12pt , onecolumn]{report}
\input{pacotes}
\usepackage[Bjornstrup]{fncychap}
\title{Palestra \LaTeX}
\author{Luciano Senger}
\makeindex
\begin{document}
\maketitle
\tableofcontents
\listoffigures
\listoftables
\chapter{Redes Neurais}
Uma rede neural é um sistema computacional constituído de unidades de processamento simples, que tem a função de armazenar e tornar disponível para uso o conhecimento experimental~\cite{haykinredes, LeCun1990}.
A representação de um neurônio está ilustrada na Figura~\ref{fig:neuronio} e a ativação de um neurônio é descrita pela Equação~\ref{eq:ativacao}.
\begin{equation}
y_i = \sum_{i=0}^{n} w_i \times x_i
\end{equation}\label{eq:ativacao}
\begin{figure}[htb]
\centering
\includegraphics[scale=.3]{neuronio}
\caption{Representação de um neurônio}\label{fig:neuronio}
\end{figure}
\chapter{Material e Métodos}\label{sec:mat}
\lipsum[3-8]
\lstset{language=Python}
\lstinputlisting[frame=single, numbers=left]{token.py}
\printindex
\appendix
\chapter{Análise estatística}
\lipsum[3-5]
\bibliographystyle{abnt-alf}
\bibliography{base}
\end{document}