29 Aprile 2012 alle 12:27
#72645
::
Liverpool” post=72092Non è vero che [tt]thick, blue[/tt] implica [tt]no marks[/tt].
Ti faccio vedere con un esempio.
`\begin{tikzpicture}
\begin{axis}
\addplot
{sin(deg(x))};
\end{axis}
\end{tikzpicture}
\begin{tikzpicture}
\begin{axis}
\addplot [
no marks,
thick,
blue
]
{sin(deg(x))};
\end{axis}
\end{tikzpicture}
\begin{tikzpicture}
\begin{axis}
\addplot [
thick,
blue,
]
{sin(deg(x))};
\end{axis}
\end{tikzpicture}`
La prima curva ha i marcatori (è la scelta predefinita di pgfplots). La seconda, dove è specificato, “no marks” non li ha, naturalmente. Ma neppure la terza, con solo “thick,blue”, ha i marcatori. Sbaglio?
Grazie,
L.