From: Simone Piccardi Date: Thu, 28 Oct 2010 19:58:02 +0000 (+0000) Subject: Sostituzione figura con versione PGF, contribuita da Alessio X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=commitdiff_plain;h=6239c73063d5934b7b74b74584c154d9f07ecd32 Sostituzione figura con versione PGF, contribuita da Alessio Frusciante. --- diff --git a/html/gapil.html b/html/gapil.html index d37b498..d1e7349 100644 --- a/html/gapil.html +++ b/html/gapil.html @@ -169,8 +169,8 @@ - Potete trovare altro materiale libero di vario tipo (non - necessariamente attinente l'informatica) prodotto da me + Potete trovare altra documentazione libera di vario tipo (non + necessariamente attinente l'informatica) prodotta da me all'indirizzo: http://firenze.linux.it/~piccardi/pubblicazioni.html @@ -182,6 +182,16 @@ "http://labs.truelite.it/truedoc"> http://labs.truelite.it/truedoc.

+

+ Infine, sia per dar sfogo ad una passione personale, che per + giocare con Mediawiki, ho creato una sito dedicato alla storia + della penna stilografica, con molto materiale ed informazioni, + sempre libere, all'indirizzo: + + http://www.fountainpen.it +

+

diff --git a/process.tex b/process.tex index 9e71df1..1aa521a 100644 --- a/process.tex +++ b/process.tex @@ -1270,7 +1270,34 @@ cui si effettua la scansione. \begin{figure}[htb] \centering - \includegraphics[width=13cm]{img/argv_argc} +% \includegraphics[width=13cm]{img/argv_argc} +% \includegraphics[width=13cm]{img/argv_argc} + \begin{tikzpicture}[>=stealth] + \draw (0.5,2.5) rectangle (3.5,3); + \draw (2,2.75) node {\texttt{argc = 5}}; + \draw (5,2.5) rectangle (8,3); + \draw (6.5,2.75) node {\texttt{argv[0]}}; + \draw [->] (8,2.75) -- (9,2.75); + \draw (9,2.75) node [anchor=west] {\texttt{"touch"}}; + \draw (5,2) rectangle (8,2.5); + \draw (6.5,2.25) node {\texttt{argv[1]}}; + \draw [->] (8,2.25) -- (9,2.25); + \draw (9,2.25) node [anchor=west] {\texttt{"-r"}}; + \draw (5,1.5) rectangle (8,2); + \draw (6.5,1.75) node {\texttt{argv[2]}}; + \draw [->] (8,1.75) -- (9,1.75); + \draw (9,1.75) node [anchor=west] {\texttt{"riferimento.txt"}}; + \draw (5,1.0) rectangle (8,1.5); + \draw (6.5,1.25) node {\texttt{argv[3]}}; + \draw [->] (8,1.25) -- (9,1.25); + \draw (9,1.25) node [anchor=west] {\texttt{"-m"}}; + \draw (5,0.5) rectangle (8,1.0); + \draw (6.5,0.75) node {\texttt{argv[4]}}; + \draw [->] (8,0.75) -- (9,0.75); + \draw (9,0.75) node [anchor=west] {\texttt{"questofile.txt"}}; + \draw (4.25,3.5) node{\texttt{"touch -r riferimento.txt -m questofile.txt"}}; + + \end{tikzpicture} \caption{Esempio dei valori di \param{argv} e \param{argc} generati nella scansione di una riga di comando.} \label{fig:proc_argv_argc}