Wie kann ich in TikZ/pgfplots einzelne Legendeneinträge ausblenden? gefragt 27 Mär '17, 07:10 SF6 |
Du kannst für den betreffenden Plot die Option Öffne in Overleaf
\documentclass{standalone} \usepackage{pgfplots} \pgfplotsset{compat=newest} \begin{document} \begin{tikzpicture} \begin{axis} \addplot[blue]{x}; \addplot[red,forget plot]{x+1};%<- kein Legendeneintrag \addplot[green]{x+2}; \addplot[orange]{x+3}; \addplot[gray]{x+4}; \legend{0,2,3,4} \end{axis} \end{tikzpicture} \end{document} Zu beachten ist dabei, dass für Plots mit dieser Option der Plotindex nicht erhöht wird. Nutzt man eine Öffne in Overleaf
\documentclass{standalone} \usepackage{pgfplots} \pgfplotsset{compat=newest} \begin{document} \begin{tikzpicture} \begin{axis} \addplot{x}; \addplot+[forget plot]{x+1};% <- kein Legendeneintrag \pgfplotsset{cycle list shift={1}}% <- Plotindex um 1 erhöhen \addplot{x+2}; \addplot{x+3}; \addplot{x+4}; \legend{0,2,3,4} \end{axis} \end{tikzpicture} \end{document} beantwortet 27 Mär '17, 08:53 esdd |