Re: \footnote in un grafico

#89571
Up
0
Down
::


In alternativa come posso inserire la nota al di sotto della didascalia della figura?
Grazie mille, in anticipo!

Ecco il codice:

`%%%%%%%%%%%%%%%%%%%%%
%%%% TABULAR_CD0_K_T
\begin{figure}
\centering
\begin{tikzpicture}
\begin{groupplot}[group style={group size=1 by 3,
vertical sep =1.5cm,
horizontal sep=2.0cm,
%y descriptions at=edge right,
%x descriptions at=edge bottom
},
width=12cm,height=8cm,
xmin=0, xmax=1.6,
grid=major,
ylabel style={rotate=-90},
xlabel=M,
]
% CD_0
\nextgroupplot[ ylabel={
\parbox{1.5cm}{
\centering
$C_{D_0}$ % QUI VOGLIO FARE LA PRECISAZIONE: 1 count=10^-4
\\[0.2em] %distanza tra il simbolo e l'unità di misuraxc\alpha
\centering
(counts)
}
}]
\addplot[line width=0.5pt] table [x=M,y=drag] {B747_CD0_VS_M.txt};
% k
\nextgroupplot[ ylabel={ $k$}
]
\addplot[line width=0.5pt] table [x=M,y=k] {B747_k_VS_M.txt};
% T_max
\nextgroupplot[ ylabel={
\parbox{1.5cm}{
\centering
$T_{max}$
\\[0.2em] %distanza tra il simbolo e l'unità di misuraxc\alpha
\centering
(kgf)
}
}]
\addplot[ line width=0.5pt,
linelabel=0.34:{90:0.6cm}:{[black]above:
$\text{h} = \SI{0}{m} $
}] table [x=M,y=TH1] {B747_T_max_VS_M.txt};
\addplot[ line width=0.5pt,
linelabel=0.3:{90:0.4cm}:{[black]above:
$ \SI{3\,000}{m} $
}] table [x=M,y=TH2] {B747_T_max_VS_M.txt};
\addplot[ line width=0.5pt,
linelabel=0.17:{-90:0.4cm}:{[black]below:
$ \SI{6\,000}{m} $
}] table [x=M,y=TH3] {B747_T_max_VS_M.txt};
\addplot[ line width=0.5pt,
linelabel=0.3:{90:0.4cm}:{[black]above:
$ \SI{9\,000}{m} $
}] table [x=M,y=TH4] {B747_T_max_VS_M.txt};
\addplot[ line width=0.5pt,
linelabel=0.7:{-90:0.6cm}:{[black]below:
$ \SI{12\,000}{m} $
}] table [x=M,y=TH5] {B747_T_max_VS_M.txt};
\end{groupplot}
\end{tikzpicture}
\caption{ Andamento in funzione del numero di Mach delle grandezze $C_{D_0}$ e $k$, presenti nella legge costitutiva del coefficiente di resistenza, e della spinta massima erogabile dal velivolo B747, equipaggiato con motori turbofan $P\&W$ JT9D.}
\label{fig:TABULAR_CD0_K_T}
\end{figure}

%%%%%%`

Go to top