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
|
%%
%% This is file `guittest.tex',
%% generated with the docstrip utility.
%%
%% The original source files were:
%%
%% guit.dtx (with options: `test')
%%
%% Copyright 2003-2006, 2009, 2012, 2019, 2020 Gruppo Utilizzatori Italiani
%% di TeX
%%
%% This work may be distributed and/or modified under the
%% conditions of the LaTeX Project Public License, either
%% version 1.3a of this license or (at your option) any
%% later version.
%% The latest version of the license is in
%% https://www.latex-project.org/lppl.txt
%%
%% Author: Emanuele Vicentini
%% (emanuelevicentini at yahoo dot it)
%%
%% This work has the LPPL maintenance status "maintained".
%%
%% The Current Maintainer of this work is Emanuele Vicentini.
%%
%% This work consists of the files: README, guit.dtx, guit.ins and the
%% derived files guit.sty, guit.cfg and guittest.tex
%%
\documentclass[11pt, a4paper]{article}
\usepackage[margin=1in, noheadfoot]{geometry}
\usepackage{booktabs, guit, rotating, hyperref}
\pagestyle{empty}
\setupguit[link]
\begin{document}
\section*{Piccolo test per \guit}
Vediamo un po' come si comporta in una footnote\footnote{\guit~\guit\ldots
direi che \`e passabile, no?}. Diamoci\footnote{Un'altra nota:
\fontfamily{pzc}\fontseries{mb}\fontshape{it}\selectfont\guittext} dentro
con qualche cosa\footnote{Un ultima nota: Copyright 2003-2006, 2009, 2012,
2019, 2020 \guittext} di ``strambo'':
\begin{center}
\itshape\guit~agus \TeX~go br\'ach!\\
$==$\\
\rmfamily\bfseries\guit~and \TeX~forever!
\end{center}
Una piccola ``spirale'' colorata e divertente:
\begingroup
\setupGuIT[color=yes]
\GuITcolor[rgb]{1, 0, 0}
\newcount\wang
\newsavebox{\wangtext}
\newdimen\wangspace
\def\wheel#1{\savebox{\wangtext}{#1}%
\wangspace\wd\wangtext
\advance\wangspace by 1cm%
\centerline{%
\rule{0pt}{\wangspace}%
\rule[-\wangspace]{0pt}{\wangspace}%
\wang=-180
\loop
\ifnum\wang<180
\rlap{\begin{rotate}{\the\wang}%
\rule{0.75cm}{0pt}#1
\end{rotate}}%
\advance\wang by 20
\space
\guitcolor*{coloredelGuIT!90!green}%
\repeat}}
\wheel{\guit}
\endgroup
Ed ora una tabella riepilogativa parziale dei font supportati dalla versione
attuale.
\begin{center}
\begin{tabular}{lc}
\toprule
Font & Logo \\
\midrule
Computer Modern Roman & \guit[family=cmr] \\
Latin Modern & \guit[family=lmr] \\
Times New Roman & \guit[family=ptm] \\
Palatino & \guit[family=ppl] \\
NewCentury Schoolbook & \guit[family=pnc] \\
Charter & \guit[family=bch] \\
Bookman & \guit[family=pbk] \\
\bottomrule
\end{tabular}
\end{center}
Per finire, un sfilza di \guit:
\begingroup
\let\pippo\par
\makeatletter
\@tfor\famiglia:={cmr}{lmr}{ptm}{ppl}{pnc}{bch}{pbk}\do{%
\noindent
\setupGuIT[family=\famiglia]
\@tfor\dimensione:=\tiny\scriptsize\footnotesize\small\normalsize
\large\Large\LARGE\huge\do{%
\dimensione\guit~}%
\Huge\guit\pippo}%
\endgroup
\begin{center}
\Huge Venite tutti al prossimo \guitmeeting[color]
\end{center}
\end{document}
|