-
Notifications
You must be signed in to change notification settings - Fork 77
/
slide.tex
144 lines (121 loc) · 2.8 KB
/
slide.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
%Este trabalho está licenciado sob a Licença Creative Commons Atribuição-CompartilhaIgual 3.0 Não Adaptada. Para ver uma cópia desta licença, visite https://creativecommons.org/licenses/by-sa/3.0/ ou envie uma carta para Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ATENÇÃO
%
% POR SEGURANÇA, NÃO EDITE ESTE ARQUIVO
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[12pt]{book}
\input preambulo.tex
\begin{document}
\frontmatter
%titlepage
\ifisscilab
\title{Cálculo Numérico\\\small{Um Livro Colaborativo}\\\small{Versão Scilab}}
\fi
\ifisoctave
\title{Cálculo Numérico\\\small{Um Livro Colaborativo}\\\small{Versão Octave}}
\fi
\ifispython
\title{Cálculo Numérico\\\small{Um Livro Colaborativo}\\\small{Versão Python}}
\fi
\author{}
\ifishtml
\date{\today}
\else
\date{\today\vspace{1cm}\\\small{Veja a página do projeto em:\\
\url{https://www.ufrgs.br/reamat}
}
}
\fi
\ifishtml
\else
\addcontentsline{toc}{chapter}{Capa}
\fi
\ifishtml
\else
\AddToShipoutPicture*{\BackgroundPic}
\fi
\maketitle
\include{organizadores}
\include{colaboradores}
\include{licenca}
\include{nota_organizadores}
\include{prefacio}
\ifisslide
\tableofcontents
\else
\ifishtml
\else
\tableofcontents
\addcontentsline{toc}{chapter}{Sumário}
\fi
\fi
\mainmatter
\include{./cap_intro/cap_intro}
\include{./cap_aritmetica/cap_aritmetica}
\include{./cap_equacao1d/cap_equacao1d}
\include{./cap_linsis/cap_linsis}
\include{./cap_nlinsis/cap_nlinsis}
%ATENÇÃO ESTE CAPITULO
%\include{./cap_aproxfun/cap_aproxfun}
%FOI SEPARADO NOS SEGUINTES
\include{./cap_interp/cap_interp}
\include{./cap_ajuste/cap_ajuste}
%
%ATENÇÃO ESTE CAPITULO
%\include{./cap_derint/cap_derint}
%FOI SEPARADO NOS SEGUINTES
\include{./cap_derivacao/cap_derivacao}
\include{./cap_integracao/cap_integracao}
%\include{./cap_ajuste/cap_pvc}
%
\include{./cap_pvi/cap_pvi}
\include{./cap_pvc/cap_pvc}
%%%%%%%%%%%%%%%%%%%%
% scilab
%%%%%%%%%%%%%%%%%%%%
\ifisscilab
\appendix
\include{./cap_scilab/cap_scilab}
\fi
%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%
% octave
%%%%%%%%%%%%%%%%%%%%
\ifisoctave
\appendix
\include{./cap_octave/cap_octave}
\fi
%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%
% python
%%%%%%%%%%%%%%%%%%%%
\ifispython
\appendix
\include{./cap_python/cap_python}
\fi
%%%%%%%%%%%%%%%%%%%%
%resposta dos exercícios
\ifishtml
\else
\include{respostas}
\fi
%references
\nocite{*}
\bibliographystyle{plain}
\bibliography{main}
\addcontentsline{toc}{chapter}{Referências Bibliográficas}
\fancyhead[RE]{Cálculo Numérico}
\fancyhead[LO]{REFERÊNCIAS BIBLIOGRÁFICAS}
\fancyhead[LE,RO]{\thepage}
\ifishtml
\else
\clearpage
\addcontentsline{toc}{chapter}{Índice Remissivo}
\fancyhead[RE]{Cálculo Numérico}
\fancyhead[LO]{ÍNDICE REMISSIVO}
\fancyhead[LE,RO]{\thepage}
\printindex
\fi
\end{document}