Page MenuHomec4science

fixed.tex
No OneTemporary

File Metadata

Created
Fri, Jan 3, 03:08

fixed.tex

\begin{tikzpicture}
\pgfplotsset
{
xmin = -5e7, xmax = 4e8,
width = 10cm,
ymajorgrids = true,
grid style = dashed,
legend style = {
matrix anchor = north east,
at = {(0.95, 0.95)}
}
}
\begin{axis}
[
%title = {Étude sur la composante $y$},
xlabel={$x$ [\si{\metre}]},
ylabel={$y$ [\si{\metre}]},
ymin= -5e7, ymax= 3.5e8,
]
\addplot
[
mark = x,
%smooth,
color = violet,
only marks,
mark options = {
draw = violet,
fill = none
}
]
gnuplot [raw gnuplot] {
plot "outs/ex5/fixed.dat" using 2:3 every 20;
};
\addlegendentry{Apollo 13}
\addplot
[
mark = x,
%smooth,
color = brown,
only marks,
mark options = {
draw = brown,
fill = none
}
]
gnuplot [raw gnuplot] {
plot "outs/ex5/fixed.dat" using 6:7 every 20;
};
\addlegendentry{Terre}
\addplot
[
mark = x,
%smooth,
color = teal,
only marks,
mark options = {
draw = teal,
fill = none
}
]
gnuplot [raw gnuplot] {
plot "outs/ex5/fixed.dat" using 10:11 every 20;
};
\addlegendentry{Lune}
\end{axis}
\end{tikzpicture}

Event Timeline