Wenn ich wie im Beispiel drei Kurven mit Öffne in Overleaf
\documentclass[10pt]{beamer} \usepackage{pgfplots} \tikzset{ invisible/.style={opacity=0}, visible on/.style={alt={#1{}{invisible}}}, alt/.code args={<#1>#2#3}{% \alt<#1>{\pgfkeysalso{#2}}{\pgfkeysalso{#3}} % \pgfkeysalso doesn't change the path }, } \begin{document} \frame{\frametitle{Siedetemperaturen im Vergleich} \begin{tikzpicture} \begin{axis}[ xlabel=Anzahl C-Atome, ylabel=Siedetemperatur in $^{\circ}$C, xmajorgrids=true, grid style=dashed, legend style={at={(0.02,0.9)},anchor=west,}, ] \addplot+[visible on=<1->, color = orange!70, fill = orange!70, mark = *, only marks ] coordinates { ( 1, -161.7 ) ( 2, -88.6 ) ( 3, -42.2 ) ( 4, -0.5 ) ( 5, 36.1 ) ( 6, 68.7 ) ( 7, 98.4 ) ( 8, 125.6 ) ( 9, 150.7 ) ( 10, 174.0 ) }; \addplot+[visible on=<2->, color = blue!60, fill = blue!60, mark = *, only marks ] coordinates { (1, 65) (2, 78) (3, 97) (4, 117) (5, 138) (6, 157) (7, 176) (8, 195) (9, 215) (10, 228) }; \addplot+[visible on=<3->, color = olive!70, fill = olive!70, mark = *, only marks ] coordinates { (1, -19) (2, 20) (3, 49) (4, 75) (5, 102) (6, 131) (7, 153) (8, 171) (9, 191) (10, 209) }; \node [draw,fill=white,anchor=north east] at (rel axis cs: 0.99,0.14) {Alkane \textcolor{orange!70}{$\bullet$} $\,$ Alkanale \textcolor{olive!70}{$\bullet$}$\,$ Alkohole \textcolor{blue!60}{$\bullet$}}; \end{axis} \end{tikzpicture} } \end{document} |
Wenn du die Farbe der Marker setzen möchtest musst du Öffne in Overleaf
\documentclass[10pt]{beamer} \usepackage{pgfplots} \tikzset{ invisible/.style={opacity=0}, visible on/.style={alt={#1{}{invisible}}}, alt/.code args={<#1>#2#3}{% \alt<#1>{\pgfkeysalso{#2}}{\pgfkeysalso{#3}} % \pgfkeysalso doesn't change the path }, } \begin{document} \frame{\frametitle{Siedetemperaturen im Vergleich} \begin{tikzpicture} \begin{axis}[ xlabel=Anzahl C-Atome, ylabel=Siedetemperatur in $^{\circ}$C, xmajorgrids=true, grid style=dashed, legend style={at={(0.02,0.9)},anchor=west,}, ] \addplot+[visible on=<1->, mark options={color = orange!70, fill = orange!70}, mark = *, only marks ] coordinates { ( 1, -161.7 ) ( 2, -88.6 ) ( 3, -42.2 ) ( 4, -0.5 ) ( 5, 36.1 ) ( 6, 68.7 ) ( 7, 98.4 ) ( 8, 125.6 ) ( 9, 150.7 ) ( 10, 174.0 ) }; \addplot+[visible on=<2->, mark options={color = blue!60, fill = blue!60}, mark = *, only marks ] coordinates { (1, 65) (2, 78) (3, 97) (4, 117) (5, 138) (6, 157) (7, 176) (8, 195) (9, 215) (10, 228) }; \addplot+[visible on=<3->, mark options={color = olive!70, fill = olive!70}, mark = *, only marks ] coordinates { (1, -19) (2, 20) (3, 49) (4, 75) (5, 102) (6, 131) (7, 153) (8, 171) (9, 191) (10, 209) }; \node [draw,fill=white,anchor=north east] at (rel axis cs: 0.99,0.14) {Alkane \textcolor{orange!70}{$\bullet$} $\,$ Alkanale \textcolor{olive!70}{$\bullet$}$\,$ Alkohole \textcolor{blue!60}{$\bullet$}}; \end{axis} \end{tikzpicture} } \end{document} Wenn auch die Legende aufgedeckt werden darf statt immer vollständig zu sein, könnte man auch Beamer-Overlays und die Öffne in Overleaf
\documentclass[10pt]{beamer} \usepackage{pgfplots} \begin{document} \begin{frame}{Siedetemperaturen im Vergleich} \begin{tikzpicture} \begin{axis}[ xlabel=Anzahl C-Atome, ylabel=Siedetemperatur in $^{\circ}$C, xmajorgrids=true, grid style=dashed, legend columns=3, legend pos=south east, only marks, ] \only<1->{ \addplot+[mark=*,mark options={color = orange!70, fill = orange!70}] coordinates { ( 1, -161.7 ) ( 2, -88.6 ) ( 3, -42.2 ) ( 4, -0.5 ) ( 5, 36.1 ) ( 6, 68.7 ) ( 7, 98.4 ) ( 8, 125.6 ) ( 9, 150.7 ) ( 10, 174.0 ) }; \addlegendentry{Alkane} } \only<2->{ \addplot+[mark=*,mark options={color = blue!60, fill = blue!60}] coordinates { (1, 65) (2, 78) (3, 97) (4, 117) (5, 138) (6, 157) (7, 176) (8, 195) (9, 215) (10, 228) }; \addlegendentry{Alkanale} } \only<3->{ \addplot+[mark=*,mark options={color = olive!70, fill = olive!70}] coordinates { (1, -19) (2, 20) (3, 49) (4, 75) (5, 102) (6, 131) (7, 153) (8, 171) (9, 191) (10, 209) }; \addlegendentry{Alkohole} } \end{axis} \end{tikzpicture} \end{frame} \end{document} beantwortet 05 Jun '17, 23:28 Henri DANKE ! gute Antwort auch dass die Legende mit den Kurven aufgedeckt wird.
(06 Jun '17, 21:33)
butts
|