421d7b2b
Francisco Coelho
START | 2023 Edition
|
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
|
# Modelos LaTeX
[TOC]
## Base
```latex
\documentclass[12pt,a4paper]{article}
%
% carateres específicos (ç,ã, etc)
%
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
%
\begin{document}
texto
\end{document}
```
## Exame
```latex
% !TeX program = xelatex
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Modelo para um exame com
% 1. comando para a cotação de uma pergunta;
% 2. ambiente para o texto de uma pergunta;
% 3. cabeçalho que identifica
% - a disciplina
% - o departamento
% - a data
% e com o logótipo da universidade;
% 4. margens curtas;
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% A classe "article" faz parte dos "tipos de documentos" base do LaTeX
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
\documentclass[12pt]{article}
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Internacional
%
% Definir a linguagem do documento
%
\usepackage{polyglossia}
%
% Infelizmente, as definições para português estão
% num ficheiro com um erro ortográfico (mesmo no NAO!!!) no nome. Que tormento!
%
\setmainlanguage{portuges}
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Expressões Matemáticas
%
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{commath}
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Mancha de texto na página
%
\usepackage{geometry}
%
% Alterar os valores de forma ao texto caber todo numa única página
%
\geometry{top=2cm, bottom=1cm, left=1cm, right=1cm}
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Comando para colocar a cotação de cada pergunta
%
\newcommand{\cotacao}[1]{ % um argumento: o número de valores
\textup{ % texto "direito"
\textbf{ % texto "negrito"
%
% a seguir...
% - #1 identifica o primeiro argumento do comando
% - ~ força um espaço que não translineia
%
[Cotação~#1~valor(es)]
%
%
%
}}}
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Ambiente para conter os exercícios
%
\newtheorem{exerc}{Exercício}
\newenvironment{exercicio}
{\begin{exerc}\normalfont}
{\end{exerc}}
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Comando para fazer o cabeçalho
%
\newcommand{\CAB}[4]{ % quatro argumentos
%
% Fazer um cabeçalho
%
% tem quatro argumentos:
% - departamento: primeiro argumento
% - disciplina: segundo argumento
% - evento: terceiro argumento
% - data: quarto argumento
%
% e também inclui o logótipo da universidade.
%
% Organizar o cabeçalho:
% - logótipo à esquerda e texto à direita
% - usar uma tabela para posicionar o logótipo e o texto
% - incluir o logótipo a partir de uma imagem
% - separar o texto em linhas
%
\begin{tabular}{cc} % duas colunas, centradas
%
% colocar o logótipo da universidade na coluna da esquerda
%
% **
% pressupõe que existe o ficheiro "imagens/logo_principal.png"
% **
%
\includegraphics[width=0.25\textwidth]{imagens/logo_principal.png}
%
% separar as colunas com "&"
%
&
%
% colocar o texto na coluna da direita
%
% fazer um "bloco" de texto com 70% da largura do texto na página
%
\begin{minipage}{0.7\textwidth}
%
% centrar as linhas no bloco de texto
%
\begin{center}
%
% Departamento
%
{\Large\bf #1}\\[1.0em]
%
% Disciplina
%
{\large #2}\\[1.0em]
%
% Evento e data
%
{\bf #3} --- {#4}
\end{center}
%
%
%
\end{minipage}
%
%
%
\end{tabular}
%
% deixar algum espaço abaixo da imagem + texto
%
\\[1.0em]
%
% desenhar uma linha separadora
%
\hrule
%
% forçar um espaço abaixo da linha, com "~", para "contar" como um parágrafo
%
~
}
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DOCUMENTO
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%
%
\begin{document}
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% "Preâmbulo"
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Páginas sem numeração e sem cabeçalhos automáticos
%
\pagestyle{empty}
%
% Identificação do documento
%
\CAB{SUBSTITUIR PELO NOME DO DEPARTAMENTO}%
{SUBSTITUIR PELO NOME DA DISCIPLINA}%
{SUBSTITUIR PELO NOME DO EVENTO}%
{SUBSTITUIR PELA DATA DO EVENTO}%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Exercícios
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
\begin{exercicio}\cotacao{SUBSTITUIR PELA COTAÇÃO DESTE EXERCÍCIO}
SUBSTITUIR PELO TEXTO DESTE ENUNCIADO
\end{exercicio}
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
\begin{exercicio}~ % o "~" força um parágrafo. O que acontece se for retirado?
SUBSTITUIR PELO TEXTO DESTE ENUNCIADO
\begin{enumerate}
\item \cotacao{SUBSTITUIR PELA COTAÇÃO DESTA ALÍNEA} SUBSTITUIR PELO TEXTO DESTE ENUNCIADO
\item \cotacao{SUBSTITUIR PELA COTAÇÃO DESTA ALÍNEA} SUBSTITUIR PELO TEXTO DESTE ENUNCIADO
\end{enumerate}
\end{exercicio}
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
\end{document}
```
## Aula
```latex
\documentclass{beamer}
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Aspeto
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Conjunto de cores e outros elementos visuais
%
% Há imensas variantes, incluindo uma para as aulas da universidade de évora
% que está disponível em
% https://git.xdi.uevora.pt/fc/giraldo
%
% Ver também a galeria de temas em
% http://deic.uab.es/~iblanes/beamer_gallery/index_by_theme.html
%
\usetheme{default} % Boadilla, Rochester, etc...
\usecolortheme{orchid}
%
% Navegação
%
\setbeamertemplate{navigation symbols}{}
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Internacionalização
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[portuges]{babel}
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Informação para o rosto
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
\title{Aula (ou disciplina)}
\subtitle{Disciplina (ou aula)}
\author[Autor (Nome Curto)]{Nome Completo do Autor}
\institute[Inst. Nome Curto]{
Departamento de ---\\
Escola ---\\
Universidade ---
}
\date{data (ou \texttt{\tbs date})}
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Documento
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
\newcommand{\tbs}{\textbackslash}
\begin{document}
%
% Rosto
%
\begin{frame}[plain]
\titlepage
\end{frame}
%
%
%
\begin{frame}{Título da página}
%
% Este modelo de página ilustra várias técnicas:
%
% - construção sucessiva do conteúdo da página, com o comando \pause
% - destaque pontual, com o comando \alert
% - destaque "em bloco"
% - divisão da página (ou parte) em colunas
%
%==========================================
%
% A construção sucessiva é controlada pelo comando \pause
%
\pause
Texto na página.
%
%==========================================
%
% Os destaques são definidos pelo comando \alert
%
\pause
Texto \alert{destacado} com o comando \texttt{\tbs alert}.
%
%==========================================
%
% Os blocos são um ambiente
%
\pause
\begin{block}{Título do bloco}
\pause
Texto do bloco
\end{block}
%
%==========================================
%
% O texto pode ser organizado em colunas
%
%
\pause
%
% Alinhamento das colunas:
% [t] topo
% [c] centro
% [b] base
%
\begin{columns}[t]
%
% Largura da coluna definida em relação à largura de uma letra.
%
\column{5em}
Uma coluna ``apertadinha'' com o ambiente \texttt{columns} e o comando \texttt{\tbs column}.
\pause
%
% Largura da coluna definida em relação à largura da página.
%
\column{0.5\textwidth}
Uma coluna ``folgada''.
A largura das colunas pode ser definida\ldots
\begin{itemize}
\item em relação à largura da ``página'' usando \texttt{\tbs textwidth};
\item em relação à largura de um ``\texttt{M}`` usando \texttt{em};
\end{itemize}
\end{columns}
\pause
\alert{N.B.} que também é possível alinhar verticalmente as colunas\ldots \emph{Como?}
\end{frame}
%
%
%
\end{document}
```
## Artigo
Este modelo é acompanhado por uma [bibliografia externa](#artigobibliografia), mais abaixo.
```latex
% !TeX program = xelatex
\documentclass[a4paper]{article}
%
% O package graphicx é necessário para o comando \includegraphics
%
\usepackage{graphicx}
%
%
%
\title{A Sample Article%
\thanks{P.K.D., for raising questions.}\\
\emph{With a Fancy Subtitle}
}
\author{%
Francisco Coelho\\
Departamento de Inform\'{a}tica\\
\texttt{fc@di.uevora.pt}
\and
Manuel Gon\c{c}alves\\
Laboratory of Informatics, Systems and Parallelism (LISP)\\
\texttt{mangon@gmail.com}
}
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
\begin{document}
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
\maketitle
%
%
%
\begin{abstract}
The problem and the conclusions should be clearly stated here and understood by those working in the general area of this work.
\end{abstract}
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
The first sentence of the article should be assertive and engaging.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
\section{Introduction}
%
%
%
Text of the introduction. Outline this work.
%
%
%
\subsection{Motivation}
%
%
%
Informal problem identification, opportunities \cite{maxwell1881treatise} and difficulties \cite{einstein1905elektrodynamik, bohr1948penetration}. Ground your text on solid \cite{hawking1975particle} previous work. It might be nice to include a picture (see Figure \ref{fig:ovo-estrelado}).
%
%---------------------------------------------------------------------------------
% Ambiente figure
%
% Posiciona automaticamente o conteúdo (normalmente uma figura com uma legenda) na posição mais adequada.
%
\begin{figure}
\centering
\includegraphics[width=0.5\textwidth]{imagens/ovo-estrelado.jpg}
\caption{Caption of the figure.}
\label{fig:ovo-estrelado}
\end{figure}
%
%---------------------------------------------------------------------------------
%
\subsection{State of the Art}
%
%
%
Report of the state of the art and related \cite{shannon2001mathematical} work. Make lots of references \cite{turing1952chemical}.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
\section{Development}
%
%
%
Formal development.
%
%
%
\subsection{Problem Statement}
%
%
%
Formal problem statement.
%
%
%
\subsection{Problem Resolution}
%
%
%
Formal problem resolution.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
\section{Conclusion}
%
%
%
Critical analysis and synthesis of the work. A table might help in highlighting the conclusions (see Table \ref{tab:relative-performance}).
%
%---------------------------------------------------------------------------------
% Ambiente table
%
% Posiciona automaticamente o conteúdo (normalmente uma tabela com uma legenda) na posição mais adequada.
%
\begin{table}
\centering
\caption{Caption of the table. (data source: wikipedia)}
\begin{tabular}{r|cc}
\textbf{Method} & \textbf{Best} & \textbf{Worst} \\
\hline
Quick Sort & \(n \log n\) & \(n^2\)\\
Merge Sort & \(n \log n\) & \(n \log n\)\\
\textbf{Our's Sort} & \(\log n\) & \(n\)\\
\end{tabular}
\label{tab:relative-performance}
\end{table}
%
%---------------------------------------------------------------------------------
%
\subsection{Unsolved Problems}
%
%
%
Limitations of the proposed resolution.
%
%
%
\subsection{Future Work}
%
%
%
Further development outlook.
%
%
%
\bibliographystyle{plain}
\bibliography{references}
\end{document}
```
### Bibliografia
<a name="artigobibliografia"></a>
```bibtex
%% Saved with string encoding Unicode (UTF-8)
@article{hawking1975particle,
Author = {Hawking, Stephen W},
Date-Added = {2015-11-13 10:29:59 +0000},
Date-Modified = {2015-11-13 10:29:59 +0000},
Journal = {Communications in mathematical physics},
Number = {3},
Pages = {199--220},
Publisher = {Springer},
Title = {Particle creation by black holes},
Volume = {43},
Year = {1975}}
@book{bohr1948penetration,
Author = {Bohr, Niels},
Date-Added = {2015-11-13 10:29:17 +0000},
Date-Modified = {2015-11-13 10:29:17 +0000},
Publisher = {I kommission hos E. Munksgaard},
Title = {The penetration of atomic particles through matter},
Volume = {18},
Year = {1948}}
@book{maxwell1881treatise,
Author = {Maxwell, James Clerk},
Date-Added = {2015-11-13 10:28:27 +0000},
Date-Modified = {2015-11-13 10:28:27 +0000},
Publisher = {Clarendon press},
Title = {A treatise on electricity and magnetism},
Volume = {1},
Year = {1881}}
@article{einstein1905elektrodynamik,
Author = {Einstein, Albert},
Date-Added = {2015-11-13 10:27:55 +0000},
Date-Modified = {2015-11-13 10:27:55 +0000},
Journal = {Annalen der physik},
Number = {10},
Pages = {891--921},
Publisher = {Wiley Online Library},
Title = {Zur elektrodynamik bewegter k{\"o}rper},
Volume = {322},
Year = {1905}}
@article{shannon2001mathematical,
Author = {Shannon, Claude Elwood},
Date-Added = {2015-11-13 10:26:17 +0000},
Date-Modified = {2015-11-13 10:26:17 +0000},
Journal = {ACM SIGMOBILE Mobile Computing and Communications Review},
Number = {1},
Pages = {3--55},
Publisher = {ACM},
Title = {A mathematical theory of communication},
Volume = {5},
Year = {2001}}
@article{turing1952chemical,
Author = {Turing, Alan Mathison},
Date-Added = {2015-11-13 10:25:12 +0000},
Date-Modified = {2015-11-13 10:25:12 +0000},
Journal = {Philosophical Transactions of the Royal Society of London B: Biological Sciences},
Number = {641},
Pages = {37--72},
Publisher = {The Royal Society},
Title = {The chemical basis of morphogenesis},
Volume = {237},
Year = {1952}}
```
|