-
Notifications
You must be signed in to change notification settings - Fork 3
/
ciccio.tex
1646 lines (1645 loc) · 53.6 KB
/
ciccio.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
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
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\begin{frame}
\frametitle{Guide consigliate}
\begin{thebibliography}{Fer66}
\bibitem [LC05]{CAU}
Caucci, Luca; Spadaccini, Mariano.
\newblock\textit{Gestione di Figure e Tabelle con \LaTeX}.
\newblock{\small\url{http://www.guit.sssup.it/download/fig_tut.pdf}}
\bibitem [SF05]{FEA}
Fear, Simon.
\newblock\textit{Publication quality tables in \LaTeX}.
\newblock{\small\burl{http://www.ctan.org/tex-archive/macros/latex/contrib/booktabs/booktabs.pdf}}
\bibitem [AA99]{AMS}
American Mathematical Society.
\newblock\textit{User's Guide for the AMSmath Package}
\newblock{\small\url{ftp://ftp.ams.org/pub/tex/doc/amsmath/amsldoc.pdf}}
\end{thebibliography}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Piano della presentazione}
\tableofcontents
\end{frame}
%-----------------------------------------------------------
%------------------------------------------------- SECTION -
\section{Oggetti flottanti}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Oggetti flottanti}
In \LaTeX\ esiste la possibilit\`a di inserire oggetti (figure o tabelle) esattamente nel punto in cui essi sono posizionati nel testo.\\
\smallskip
Tuttavia questo \`e \textbf{da evitare}, perch\'e una delle peculiarit\`a di \LaTeX\ \`e la capacit\`a di inserire oggetti nel posto giudicato ottimale in base a precisi canoni tipografici.\\
\bigskip
Per questo tabelle e figure sono detti \textbf{oggetti mobili o flottanti} (\emph{floating}).
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Oggetti flottanti}
Posizionata all'interno di un oggetto flottante l'opzione:
\begin{LaTeXcode}
\tls htb\trs
\end{LaTeXcode}
Esprime la nostra preferenza circa la posizione nella pagina ove l'oggetto debba essere posizionato.
\medskip
\begin{itemize}
\item \Lopt{h} posizionalo `qui' (\emph{here})
\item \Lopt{t} oppure posizionalo `in cima' (\emph{top})
\item \Lopt{b} o ancora possibile posizionalo `in fondo' (\emph{bottom});
\item \Lopt{p} o eventualmente posizionalo su una pagina dedicata a tutti gli oggetti \textit{float};
\end{itemize}
Naturalmente l'ordine \`e modificabile
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Oggetti flottanti}
Se si desidera posizionare l'oggetto nel punto esatto in cui si trova (da evitare assolutamente!) si pu\`o aggiungere un punto esclamativo
\begin{LaTeXcode}
\tls h!\trs
\end{LaTeXcode}
\medskip
\onslide<2->
Alternativamente si pu\`o usare il pacchetto \LCmd[]{float}
\begin{LaTeXcode}
\\usepackage\{\alert{float}\}
\end{LaTeXcode}
\begin{LaTeXcode}
\tls H\trs
\end{LaTeXcode}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Raccomandazioni sul posizionamento}
\begin{center}
\textbf{Fidatevi di \LaTeX!}\\
Se fisicamente non c'\`e spazio inutile insistere.
\end{center}
\medskip
\begin{block}{Posizionamento ottimale}
\begin{itemize}
\item \Lopt{tb} per oggetti `normali'
\item \Lopt{p} per oggetti `grandi'
\end{itemize}
\end{block}
Fino ad aver completato il documento non preoccupatevi minimamente del posizionamento. In fase di revisione potete usare il pacchetto \Lsty{placeins}.
\end{frame}
%-----------------------------------------------------------
%------------------------------------------------- SECTION -
\section{Tabelle}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{A che punto siamo}
\tableofcontents[currentsection,currentsubsection]
\end{frame}
%-----------------------------------------------------------
%---------------------------------------------- SUBSECTION -
\subsection{Norme tipografiche per le tabelle}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Il \textit{layout} di una tabella}
La tabella \`e un oggetto che \`e stato definito nel corso di secoli di esperienza e che dovrebbe essere alterato solo in circostanze eccezionali. Purtroppo talvolta capita di imbattersi in \textit{tableau} di questo tipo:
\begin{LaTeXoutput}\centering
\begin{tabular}{||r|ll||} \hline
\multicolumn{1}{||c|}{topi} & in salm\`i & \euro{}13,65 \\ \cline{2-3}
& crudi & ,50 \\ \hline
alce & stufata & 92,50 \\ \cline{1-1} \cline{3-3}
bradipi & & 33,333 \\ \hline
armadillo & congelato & \multicolumn{1}{r||}{8,99} \\ \hline
\end{tabular}
\end{LaTeXoutput}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{La struttura di una tabella formale}
La tabella risulta molto pi\`u chiara se si utilizzano solo righe orizzontali
\begin{LaTeXoutput}\centering
\begin{tabular}{@{}llr@{}} \hline
\multicolumn{2}{c}{Item} & Prezzo (\euro{})\\\cline{1-2}
Animale & Descrizione & \\ \hline
Topi & in salm\`i & 13,65 \\
& crudi & 0,50 \\
Alce & stufata & 92,50 \\
Bradipi & & 33,33 \\
Armadillo & congelato & 8,99 \\ \hline
\end{tabular}
\end{LaTeXoutput}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{La struttura di una tabella formale}
Bastano poche regole per essere sicuri di non commettere errori:
\medskip
\begin{itemize}
\item \textbf{mai} usare \textbf{righe verticali} (meno che mai doppie righe)
\item specificare sempre l'unit\`a di misura nell'\textbf{intestazione} di colonna (mai nel corpo della tabella)
\item \textbf{allineare} i numeri a destra ed il testo a sinistra
\item usare sempre lo stesso numero di decimali ed, ove occorra, farli precedere da uno zero (0,15 e \emph{non} ,15)
\item \textbf{mai} usare \textbf{virgolette} o segni di dubbia natura per ripetere un valore precedente (o riscrivere il valore o lasciare la cella bianca)
\end{itemize}
\end{frame}
%-----------------------------------------------------------
%---------------------------------------------- SUBSECTION -
\subsection{Tabulazione}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{A che punto siamo}
\tableofcontents[currentsection,currentsubsection]
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{La tabulazione}
\begin{LaTeXcode}
\\begin\{tabular\}\{\alert{lr}\}\n
\hspace*{5ex}bianco \alert{\&} 102,5 \alert{\bs\bs}\n
\hspace*{5ex}nero \alert{\&} 15,4 \alert{\bs\bs}\n
\\end\{tabular\}
\end{LaTeXcode}
\begin{LaTeXoutput}
\begin{tabular}{l r}
bianco & 102,5 \\
nero & 15,4 \\
\end{tabular}
\end{LaTeXoutput}
\end{frame}
-----------------------------------------------------------
--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{La tabulazione}
\begin{LaTeXcode}
\\begin\{tabular\}\{lr\}\
\alert{\\hline}\n
\hspace*{5ex}bianco \& 102,5 \bs\bs\n
\hspace*{5ex}nero \& 15,4 \bs\bs\
\alert{\\hline}\n
\\end\{tabular\}
\end{LaTeXcode}
\begin{LaTeXoutput}
\begin{tabular}{l r}
\hline
bianco & 102,5 \\
nero & 15,4 \\
\hline
\end{tabular}
\end{LaTeXoutput}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{La tabulazione}
\begin{LaTeXcode}
\\begin\{tabular\}\{lr\}\
\\hline \n
\alert{\\multicolumn\{2\}\{c\}\{intestazione\}\bs\bs} \
\\hline \n
\hspace*{5ex}bianco \& 102,5 \bs\bs\n
\hspace*{5ex}nero \& 15,4 \bs\bs\
\\hline\n
\\end\{tabular\}
\end{LaTeXcode}
\begin{LaTeXoutput}
\begin{tabular}{lr}\hline
\multicolumn{2}{c}{intestazione}\\\hline
bianco & 102,5 \\
nero & 15,4 \\\hline
\end{tabular}
\end{LaTeXoutput}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{La tabulazione}
\begin{LaTeXcode}
\\begin\{tabular\}\{\alert{p\{3cm\}}r\}\
\\hline \n
\\multicolumn\{2\}\{c\}\{intestazione\}\bs\bs \
\\hline \n
\hspace*{5ex}bianco \& 102,5 \bs\bs\n
\hspace*{5ex}nero \& 15,4 \bs\bs\
\\hline\n
\\end\{tabular\}
\end{LaTeXcode}
\begin{LaTeXoutput}
\begin{tabular}{p{3cm}r}\hline
\multicolumn{2}{c}{intestazione}\\\hline
bianco & 102,5 \\
nero & 15,4 \\\hline
\end{tabular}
\end{LaTeXoutput}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{La tabulazione}
\begin{LaTeXcode}
\\begin\{tabular\}\{\alert{p\{.3\\textwidth\}}r\}\
\\hline \n
\\multicolumn\{2\}\{c\}\{intestazione\}\bs\bs \
\\hline \n
\hspace*{5ex}bianco \& 102,5 \bs\bs\n
\hspace*{5ex}nero \& 15,4 \bs\bs\
\\hline\n
\\end\{tabular\}
\end{LaTeXcode}
\begin{LaTeXoutput}
\begin{tabular}{p{.3\textwidth}r}\hline
\multicolumn{2}{c}{intestazione}\\\hline
bianco & 102,5 \\
nero & 15,4 \\\hline
\end{tabular}
\end{LaTeXoutput}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Uso del \textit{pipe}}
Se proprio non potete evitare di inserire le righe verticali, usate il comando \LCmd[]{|} (\textit{pipe})
\begin{LaTeXcode}
\\begin\{tabular\}\{\alert{|}p\{.3\\textwidth\}\alert{|}r\alert{|}\}\
\\hline \n
\\multicolumn\{2\}\{\alert{|}c\alert{|}\}\{intestazione\}\bs\bs \
\\hline \n
\hspace*{5ex}bianco \& 102,5 \bs\bs\n
\hspace*{5ex}nero \& 15,4 \bs\bs\
\\hline\n
\\end\{tabular\}
\end{LaTeXcode}
\begin{LaTeXoutput}
\begin{tabular}{|p{.3\textwidth}|r|}\hline
\multicolumn{2}{|c|}{intestazione}\\\hline
bianco & 102,5 \\
nero & 15,4 \\\hline
\end{tabular}
\end{LaTeXoutput}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{La tabulazione}
\begin{LaTeXcode}
\alert{\\begin\{center\}}\n
\\begin\{tabular\}\{p\{.3\\textwidth\}r|\}\
\\hline \n
\\multicolumn\{2\}\{c\}\{intestazione\}\bs\bs \
\\hline \n
\hspace*{5ex}bianco \& 102,5 \bs\bs\n
\hspace*{5ex}nero \& 15,4 \bs\bs\
\\hline\n
\\end\{tabular\}\n
\alert{\\end\{center\}}
\end{LaTeXcode}
\begin{LaTeXoutput}
\begin{center}
\begin{tabular}{p{.3\textwidth}r}\hline
\multicolumn{2}{c}{intestazione}\\\hline
bianco & 102,5 \\
nero & 15,4 \\\hline
\end{tabular}
\end{center}
\end{LaTeXoutput}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{La tabulazione}
\begin{LaTeXcode}
\alert{\{\\centering}\n
\\begin\{tabular\}\{p\{.3\\textwidth\}r\}\
\\hline \n
\\multicolumn\{2\}\{c\}\{intestazione\}\bs\bs \
\\hline \n
\hspace*{5ex}bianco \& 102,5 \bs\bs\n
\hspace*{5ex}nero \& 15,4 \bs\bs\
\\hline\n
\\end\{tabular\}\n
\alert{\}}
\end{LaTeXcode}
\begin{LaTeXoutput}\centering
\begin{tabular}{p{.3\textwidth}r}\hline
\multicolumn{2}{c}{intestazione}\\\hline
bianco & 102,5 \\
nero & 15,4 \\\hline
\end{tabular}
\end{LaTeXoutput}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Colorare le righe}
\begin{LaTeXcode}
\\begin\{tabular\}\{p\{.3\\textwidth\}r\}\
\\hline \n
\hspace*{5ex}\alert{\\rowcolor[gray]\{.7\}} bianco \& 102,5 \bs\bs\n
\hspace*{5ex}\alert{\\rowcolor[gray]\{.8\}} nero \& 15,4 \bs\bs\
\\hline\n
\\end\{tabular\}
\end{LaTeXcode}
\begin{LaTeXoutput}\centering
\begin{tabular}{p{.3\textwidth}r}\hline
\rowcolor[gray]{.7} bianco & 102,5 \\
\rowcolor[gray]{.8} nero & 15,4 \\\hline
\end{tabular}
\end{LaTeXoutput}
\onslide<2->
\begin{block}{Attenzione!}
\LCmd{rowcolor} richiede il pacchetto \LCmd[]{colortbl}
\end{block}
\end{frame}
%-----------------------------------------------------------
%---------------------------------------------- SUBSECTION -
\subsection{Tabelle}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{La tabella}
\begin{LaTeXcode}
\alert{\\begin\{table\}}\n
\\begin\{tabular\}\{p\{.3\\textwidth\}r\}\
\\hline \n
\\multicolumn\{2\}\{c\}\{intestazione\}\bs\bs \
\\hline \n
\hspace*{5ex}bianco \& 102,5 \bs\bs\n
\hspace*{5ex}nero \& 15,4 \bs\bs\
\\hline\n
\\end\{tabular\}\n
\alert{\\end\{table\}}
\end{LaTeXcode}
\begin{LaTeXoutput}\centering
% \begin{table} % nel block l'ambiente table aggiunge un rigo a pi\'e di tabella :|
\begin{tabular}{p{.3\textwidth}r}\hline
\multicolumn{2}{c}{intestazione}\\\hline
bianco & 102,5 \\
nero & 15,4 \\\hline
\end{tabular}
% \end{table}
\end{LaTeXoutput}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{La tabella}
\begin{LaTeXcode}
\\begin\{table\}\alert{\tls htb\trs}\n
\\begin\{tabular\}\{p\{.3\\textwidth\}r\}\
\\hline \n
\\multicolumn\{2\}\{c\}\{intestazione\}\bs\bs \
\\hline \n
\hspace*{5ex}bianco \& 102,5 \bs\bs\n
\hspace*{5ex}nero \& 15,4 \bs\bs\
\\hline\n
\\end\{tabular\}\n
\\end\{table\}
\end{LaTeXcode}
\begin{LaTeXoutput}\centering
% \begin{table} % nel block l'ambiente table aggiunge un rigo a pi\'e di tabella :|
\begin{tabular}{p{.3\textwidth}r}\hline
\multicolumn{2}{c}{intestazione}\\\hline
bianco & 102,5 \\
nero & 15,4 \\\hline
\end{tabular}
% \end{table}
\end{LaTeXoutput}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{La didascalia}
La didascalia si inserisce con il comando \LCmd{caption}, che come i comandi di sezionamento offre la possibilit\`a di specificare un titolo breve per l'indice delle figure.
\begin{LaTeXcode}
\alert{\\caption\{}Titolo della tabella\alert{\}}
\end{LaTeXcode}
\medskip
Per citare l'oggetto flottante \`e sufficente inserire una \LCmd{label} \textbf{dopo} la \LCmd{caption}\\
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{La didascalia della tabella}
\begin{LaTeXcode}
\\begin\{table\}[htb]\alert{\\caption\{titolo\}\\label\{ciccio\}}\n
\\begin\{tabular\}\{p\{.3\\textwidth\}r\}\
\\hline \n
\\multicolumn\{2\}\{c\}\{intestazione\}\bs\bs \
\\hline \n
\hspace*{5ex}bianco \& 102,5 \bs\bs\n
\hspace*{5ex}nero \& 15,4 \bs\bs\
\\hline\n
\\end\{tabular\}\n
\\end\{table\}
\end{LaTeXcode}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{La didascalia della tabella}
Ecco come appare la tabella 1
\begin{LaTeXoutput}
\begin{center}
\begin{table}
\begin{tabular}{p{.3\textwidth}r}
\multicolumn{2}{c}{Tabella 1: titolo}\\[1ex]\hline %block non digerisce \caption
\multicolumn{2}{c}{intestazione}\\\hline
bianco & 102,5 \\
nero & 15,4 \\\hline
\end{tabular}
\end{table}
\end{center}
\end{LaTeXoutput}
\bigskip
\begin{block}{Attenzione!}
Per modificare lo stile delle didascalie si usa il pacchetto \Lsty{caption}
\end{block}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Un esempio vale pi\`u di mille parole}
\begin{center}
\alert{\texttt{esempio\_3\_1.tex}}
\end{center}
\end{frame}
%-----------------------------------------------------------
%---------------------------------------------- SUBSECTION -
\subsection{Altri ambienti per tabelle}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{A che punto siamo}
\tableofcontents[currentsection,currentsubsection]
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Altri ambienti per tabelle}
Oltre all'ambiente \Lsty{table} esistono anche altri pacchetti per realizzare tabelle. Questi i pi\`u comuni:
\begin{itemize}
\item \Lsty{longtable}: tabelle che proseguono nella pagina successiva
\item \Lsty{sideways}: tabelle ruotate di 90$^{\circ}$ sulla pagina
\end{itemize}
I pacchetti specifici devono essere richiamati nel preambolo.
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Tabelle su pi\`u pagine}
Talvolta la tabella \`e cos\`i lunga che deve continuare nella pagina successiva
\begin{LaTeXcode}
\alert{\\begin\{longtable\}\{lr\}}\n
\\caption\{titolo\}\\label\{a\}\
\\hline\n
\hspace*{5ex}bianco \& 102,5 \bs\bs\n
\hspace*{5ex}nero \& 15,4 \bs\bs\
\\hline\n
\alert{\\end\{longtable\}}
\end{LaTeXcode}
\onslide<2->
\begin{block}{Attenzione!}
\`E necessario caricare il pacchetto \Lsty{longtable}
\end{block}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Tabelle su pi\`u pagine}
\begin{LaTeXoutput}
\begin{longtable}{lr}
\multicolumn{2}{c}{Tabella 1: titolo}\\[1ex]\hline %block non digerisce \caption
bianco & 10,2 \\
nero & 15,6 \\
giallo & 16,6 \\
fucsia & 15,7 \\
cremisi & 12,2 \\
amaranto & 18,3 \\
verde & 11,5 \\
grigio & 15,3 \\
viola & 19,9 \\
blu & 14,7 \\
azzurro & 16,3
\end{longtable}
\end{LaTeXoutput}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Tabelle su pi\`u pagine}
\begin{LaTeXoutput}
\begin{longtable}{lr} % andr\`o all'inferno per questo :\ ma block non capisce longtable
rosso & 14,4 \\
marrone & 17,7 \\
rosa & 12,9 \\
ocra & 19,2 \\
arancione & 11,8 \\
porpora & 14,6 \\
celeste & 12,9 \\
antracite & 15,1 \\
\hline
\end{longtable}
\end{LaTeXoutput}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Ruotare le tabelle}
\begin{LaTeXcode}
\alert{\\begin\{sideways\}}\n
\\begin\{tabular\}\{lr\}\
\\hline\n
\hspace*{5ex}bianco \& 102,5 \bs\bs\n
\hspace*{5ex}nero \& 15,4 \bs\bs\n
\hspace*{10ex}\vdots\n
\hspace*{5ex}antracite \& 15,1 \bs\bs\\hline\n
\\end\{tabular\}\n
\alert{\\end\{sideways\}}
\end{LaTeXcode}
\end{frame}
% -----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Ruotare le tabelle}
\begin{LaTeXoutput}
\begin{sideways}
\begin{tabular}{lr}\\\hline
bianco & 10,2 \\
nero & 15,6 \\
giallo & 16,6 \\
fucsia & 15,7 \\
cremisi & 12,2 \\
amaranto & 18,3 \\
verde & 11,5 \\
grigio & 15,3 \\
viola & 19,9 \\
blu & 14,7 \\
rosso & 14,4 \\
marrone & 17,7 \\
rosa & 12,9 \\
ocra & 19,2 \\
arancione & 11,8 \\
porpora & 14,6 \\
celeste & 12,9 \\
antracite & 15,1 \\
\hline
\end{tabular}
\end{sideways}
\end{LaTeXoutput}
\onslide<2->
\begin{block}{Attenzione!}
Per ruotare degli oggetti, \`e necessario caricare il pacchetto \Lsty{rotating}
\end{block}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Due esempi son meglio di uno}
\begin{center}
\alert{\texttt{esempio\_3\_2.tex}}\\
\alert{\texttt{esempio\_3\_3.tex}}
\end{center}
\end{frame}
-----------------------------------------------------------
------------------------------------------------- SECTION -
\section{Formule matematiche}
%-----------------------------------------------------------
%---------------------------------------------- SUBSECTION -
\subsection{Nozioni di base}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{A che punto siamo}
\tableofcontents[currentsection,currentsubsection]
\end{frame}
%------------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{L'arte della tipografia matematica}
Generalmente la scrittura di formule matematiche costituisce la parte pi\`u complessa e delicata della stesura di un documento. Proprio in questo particolare ambito, \LaTeX\ offre una qualit\`a tipografica allo stato dell'arte.\\
\medskip
La sintassi per la scrittura di formule matematiche non \`e assolutamente difficile e richiede appena un minimo di pratica.
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Scrivere le formule nel testo}
\LaTeX\ applica parecchia cura nella spaziatura nelle formule, anche quando esse sono molto semplici. Ecco un cattivo esempio di come non vanno scritte:
\begin{LaTeXcode}
Non \`e vero che 7+2=9 e 7-3=4, sono solo bugie.
\end{LaTeXcode}
\begin{LaTeXoutput}
Non \`e vero che 7+2=9 e 7-3=4, sono solo bugie.
\end{LaTeXoutput}
\smallskip
\onslide<2->
Il modo corretto di scrivere le formule all'interno del testo \`e quello di inserirle tra due \LCmd[]{\textdollar}\dots\LCmd[]{\textdollar}
\begin{LaTeXcode}
Non \`e vero che \alert{\$7+2=9\$} e \alert{\$7-3=4\$} sono solo bugie.
\end{LaTeXcode}
\begin{LaTeXoutput}
Non \`e vero che $7+2=9$ e $7-3=4$, sono solo bugie.
\end{LaTeXoutput}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Scrivere le formule nel testo}
Se si inserisce la formula nel testo \LaTeX\ cerca di schiacciarla per non aumentare l'interlinea.
\begin{LaTeXcode}
Dopo lunghi studi, Livsi\\v\{c\} \ Vr\\o dstadt riusc\`i a dimostrare che poich\'e \alert{\$\\sum\_\{i=1\}\textasciicircum n a\_i=3\$} la figura di Carducci \`e imponentemente stagliata nel panorama poetico del suo tempo.
\end{LaTeXcode}
\begin{LaTeXoutput}
Dopo lunghi studi, Livsi\v{c} Vr\o dstadt riusc\`i a dimostrare che poich\'e $\sum_{i=1}^n a_i=3$ la figura di Carducci \`e imponentemente stagliata nel panorama poetico del suo tempo.
\end{LaTeXoutput}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Centrare le formule}
Per centrare la formula su una riga occorre inserira tra \LCmd[]{\\[}\dots\LCmd[]{\\]} In questo caso lo sviluppo verticale sar\`a maggiore
\begin{LaTeXcode}
Livsi\\v\{c\} \ Vr\\o dstadt riusc\`i a dimostrare che poich\'e
\alert{\\[\\sum\_\{i=1\}\textasciicircum n a\_i\\]} la figura di Carducci \`e imponentemente stagliata nel panorama poetico del suo tempo.
\end{LaTeXcode}
\begin{LaTeXoutput}
Livsi\v{c} Vr\o dstadt riusc\`i a dimostrare che poich\`e
\[\sum_{i=1}^n a_i=3\]
la figura di Carducci \`e imponentemente stagliata nel panorama poetico del suo tempo.
\end{LaTeXoutput}
\end{frame}
% %-----------------------------------------------------------
% %--------------------------------------------------- SLIDE -
% \begin{frame}
% \frametitle{Centrare le formule}
% Per centrare la formula su una riga si usa l'ambiente \LCmd[]{displaymath}
% \begin{LaTeXcode}
% Dimostrare che la formula:\n
% \alert{\\begin\{displaymath\}}\n
% \hspace*{5ex}\\prod\\theta\textasciicircum\{\\psi\}-45x\n
% \alert{\\end\{displaymath\}}\n
% non significa assolutamente nulla.
% \end{LaTeXcode}
% \begin{LaTeXoutput}
% Dimostrare che la formula:
% \begin{displaymath}
% \prod\theta^{\psi}-45x
% \end{displaymath}
% non significa assolutamente nulla.
% \end{LaTeXoutput}
% \end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Un esempio vale pi\`u di mille parole}
\begin{center}
\alert{\texttt{esempio\_3\_4.tex}}
\end{center}
\end{frame}
%-----------------------------------------------------------
%---------------------------------------------- SUBSECTION -
\subsection{Scrivere formule matematiche}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{A che punto siamo}
\tableofcontents[currentsection,currentsubsection]
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Esponenti}
Per inserire un esponente si usa il comando \LCmd[]{\textasciicircum} (accento circonflesso o \textit{circum})
\begin{LaTeXcode}
\$x\alert{\textasciicircum}y\$
\end{LaTeXcode}
\begin{LaTeXoutput}
$x^y$
\end{LaTeXoutput}
Nel caso di esponenti pi\`u complessi si ricorre alle parentesi
\begin{LaTeXcode}
\$x\textasciicircum \alert{\{y+1\}}\$
\end{LaTeXcode}
\begin{LaTeXoutput}
$x^{y+1}$
\end{LaTeXoutput}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Esponenti in modalit\`a testo}
Il \LaTeX\ esiste anche la possibilit\`a di scrivere esponenti fuori dal contesto di ambienti matematici con il comando \LCmd{textsuperscript}
\begin{LaTeXcode}
Ciccio\alert{\\textsuperscript\{}\\textregistered\alert{\}}
\end{LaTeXcode}
\begin{LaTeXoutput}
Ciccio\textsuperscript{\textregistered}
\end{LaTeXoutput}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Indici}
Per inserire un indice si usa il comando \LCmd[]{\textunderscore} (\textit{underscore})
\begin{LaTeXcode}
\$x\alert{\textunderscore}y\$
\end{LaTeXcode}
\begin{LaTeXoutput}
$x_y$
\end{LaTeXoutput}
Nel caso di indici multipli si ricorre alle parentesi annidate
\begin{LaTeXcode}
x\_\{n\_\{\alert{k\_\{i\}}\}\}
\end{LaTeXcode}
\begin{LaTeXoutput}
$x_{n_{k_{i}}}$
\end{LaTeXoutput}
I caratteri diventano via via sempre pi\`u piccoli
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Frazioni}
Per inserire una frazione si usa il comando \LCmd{frac}
\begin{LaTeXcode}
\\[\n
\hspace*{5ex}\alert{\\frac\{1\}\{a+1\}}\n
\\]
\end{LaTeXcode}
\begin{LaTeXoutput}
\[
\frac{1}{a+1}
\]
\end{LaTeXoutput}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Frazioni}
Il comando \LCmd{frac} pu\`o anche essere annidato
\begin{LaTeXcode}
\\[\n
\alert{\\frac}\{x+\alert{\\frac\{1\}\{x\}}\}\{y+\alert{\\frac\{1\}\{y\}}\}\n
\\]
\end{LaTeXcode}
\begin{LaTeXoutput}
\[
\frac{x+\frac{1}{x}}{y+\frac{1}{y}}
\]
\end{LaTeXoutput}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Radici}
Per scrivere la radice si usa il comando \LCmd{sqrt}
\begin{LaTeXcode}
\\[\n
\hspace*{5ex}\alert{\\sqrt}[n+1]\{\bs chi + x\}\n
\\]
\end{LaTeXcode}
\begin{LaTeXoutput}
\[
\sqrt[n+1]{\chi + x}
\]
\end{LaTeXoutput}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Sommatorie}
Il simbolo di sommatoria si scrive con il comando \LCmd{sum}
\begin{LaTeXcode}
\\[\n
\hspace*{5ex}\alert{\\sum}\_\{i=1\}\textasciicircum \{\\infty\}\n
\\]
\end{LaTeXcode}
\begin{LaTeXoutput}
\[
\sum_{i=1}^{\infty}
\]
\end{LaTeXoutput}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Limiti}
I limiti si scrivono con il comando \LCmd{lim}
\begin{LaTeXcode}
\\[\n
\hspace*{5ex}\alert{\\lim}\_\{i \\to \\infty\}\n
\\]
\end{LaTeXcode}
\begin{LaTeXoutput}
\[
\lim_{i \to \infty}
\]
\end{LaTeXoutput}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Integrali}
Il segno di integrale si scrive con il comando \LCmd{int}\\
\begin{LaTeXcode}
\\[\n
\hspace*{5ex}\alert{\\int}\_\{a+1\}\textasciicircum \{b+1\}x\bs,dx\n
\\]
\end{LaTeXcode}
\begin{LaTeXoutput}
\[
\int_{a+1}^{b+1}x\,dx
\]
\end{LaTeXoutput}
\onslide<2->
\begin{block}{Attenzione!}
il \LCmd{,} serve per inserire uno spazio prima del \textrm{\textit{dx}}
\end{block}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Un esempio vale pi\`u di mille parole}
\begin{center}
\alert{\texttt{esempio\_3\_5.tex}}
\end{center}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Operatori seno e coseno}
\emph{seno} e \emph{coseno} si scrivono con i comandi \LCmd{sin} e \LCmd{cos}
\begin{LaTeXcode}
\\[\n
\hspace*{5ex}\alert{\\cos}2x=\\frac\{1-\alert{\\sin}\textasciicircum2x\}\{2\}\n
\\]
\end{LaTeXcode}
\begin{LaTeXoutput}
\[
\cos2x=\frac{1-\sin^2x}{2}
\]
\end{LaTeXoutput}
\bigskip
\medskip Le espressioni \LCmd{sin\textasciicircum2x} e \LCmd{sin\textasciicircum\{2\}x} sono identiche
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Operatori seno e coseno in italiano}
Se si vuole \emph{sen x} in italiano, bisogna aggiungere nel preambolo:
\begin{LaTeXcode}
\\DeclareMathOperator\{\\sen\}\{sen\}
\end{LaTeXcode}
\medskip Poi basta scrivere \LCmd{sen\{x\}}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Testo dentro una formula}
Nel caso in cui occorra inserire del testo all'interno di una formula quest'ultimo deve essere dichiarato con il comando \LCmd{text}
\begin{LaTeXcode}
\\[\n
\hspace*{5ex}\\forall x\\in\\phi\alert{\\text\{\ noi abbiamo che \}}x\textasciicircum\{2\}=1\n
\\]
\end{LaTeXcode}
\begin{LaTeXoutput}
\[
\forall x\in\phi\text{ noi abbiamo che } x^{2}=1
\]
\end{LaTeXoutput}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Un esempio vale pi\`u di mille parole}
\begin{center}
\alert{\texttt{esempio\_3\_6.tex}}
\end{center}
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Parentesi a dimensione fissa}
Posso usare parentesi di diverse dimensioni:
\begin{columns}
\column[t]{.4\textwidth}
\begin{LaTeXcode}
\LCmd[]{(} x \LCmd[]{)}\n
\LCmd{\alert{bigl}(} x \LCmd{bigr)}\vspace{1.1ex}\n
\LCmd{\alert{Bigl}(} x \LCmd{Bigr)}\vspace{2.2ex}\n
\LCmd{\alert{biggr}(} x \LCmd{biggr)}\vspace{3ex}\n
\LCmd{\alert{Biggr}(} x \LCmd{Biggr)}\n
\end{LaTeXcode}
\column[t]{.4\textwidth}
\begin{LaTeXoutput}
$( x )$\\
$\bigl( x\bigr)$\\
$\Bigl( x \Bigr) $\\
$\biggr( x \biggr) $\\
$\Biggr( x \Biggr)$
\end{LaTeXoutput}
\end{columns}
\bigskip
Da utilizzare per le formule ordinarie
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Parentesi a dimensione fissa}
Un esempio di parentesi grande
\begin{LaTeXcode}
\\[\n
\hspace*{5ex}\alert{\\Biggl(}\\frac\{1\}\{n+1\}\alert{\\Biggr)}\textasciicircum 2\n
\\]
\end{LaTeXcode}
\begin{LaTeXoutput}
\[
\Biggl(\frac{1}{n+1}\Biggr)^2
\]
\end{LaTeXoutput}
Ovviamente \LCmd{Bigl} accetta anche parentesi quadre e graffe
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Parentesi automatiche}
Per ottenere delle parentesi che si adattano alle dimensioni di quello che contengono si usa \LCmd{left(} e \LCmd{right)} e analogamente per quadre e graffe.
\begin{block}{Attenzione}
Le graffe sono un carattere riservato quindi si scrive \LCmd{left\bs\lb} e \LCmd{right\bs\rb}
\end{block}
\bigskip
Da utilizzare per elementi di `grosse' dimensioni quando non se ne conosce la dimensione (matrici, casi, etc)
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Parentesi automatiche}
Un esempio di parentesi grande
\begin{LaTeXcode}
\\[\n
\hspace*{5ex}\alert{\\left(}\\frac\{1\}\{n+1\}\alert{\\right)}\textasciicircum 2\n
\\]
\end{LaTeXcode}
\begin{LaTeXoutput}
\[
\left(\frac{1}{n+1}\right)^2
\]
\end{LaTeXoutput}
Ovviamente \LCmd{Bigl} accetta anche parentesi quadre e graffe
\end{frame}
%-----------------------------------------------------------
%--------------------------------------------------- SLIDE -
\begin{frame}
\frametitle{Alcune lettere greche}
Scrivere lettere greche all'interno di ambienti matematici \`e estremamente semplice
\begin{columns}