Hallo zusammen, Ich habe folgende Frage. Und zwar habe ich ein Diagramm erstellt inklusive Achsenbeschriftung. Jetzt hätte ich gerne noch eine zusätzliche Achsenbeschriftung der X-Achse. Links würde ich gerne unterhalb der Achse "induktiv" schreiben und rechts auch unterhalb der Achse "kapazitiv". Gibt es eine Möglichkeit eine solche zusätzliche Beschriftung hinzuzufügen? Hier ein Code-Beispiel: Open in writeLaTeX
\documentclass[margin=10pt]{standalone} \usepackage{pgfplots} \pgfplotsset{compat=1.11} \begin{document} \begin{tikzpicture} \begin{axis}[ axis lines=middle, ymin=-2,ymax=1, xlabel={Blindleistung}, xlabel style={ at={(current axis.left of origin)}, above right }, ylabel={Verluste}, ] \addplot[blue] {x}; \end{axis} \end{tikzpicture} \end{document} Ich wäre froh über jede Hilfe. Vielen Dank schonmal jetzt :) Viele Grüße, Tobias gefragt 05 Jan '15, 09:22 LaTex_Neuling89 |
Du kannst in der Open in writeLaTeX
\node[anchor=north west] at ([yshift=-\baselineskip]current axis.left of origin){induktiv}; \node[anchor=north east] at ([yshift=-\baselineskip]current axis.right of origin){kapazitiv}; oder das Open in writeLaTeX
\node[anchor=north west,inner ysep=0pt] at (xticklabel cs:0){induktiv}; \node[anchor=north east,inner ysep=0pt] at (xticklabel cs:1){kapazitiv}; verwenden. Im ersten Fall muss man selbst dafür sorgen, dass die Beschriftung unter die Code: Open in writeLaTeX
\documentclass[margin=10pt]{standalone} \usepackage{pgfplots} \pgfplotsset{compat=1.11} \begin{document} \begin{tikzpicture} \begin{axis}[ axis lines=middle, ymin=-2,ymax=1, xlabel={Blindleistung}, xlabel style={ at={(current axis.left of origin)}, above right }, ylabel={Verluste}, ] \addplot[blue] {x}; \node[anchor=north west,inner ysep=0pt] at (xticklabel cs:0){induktiv}; \node[anchor=north east,inner ysep=0pt] at (xticklabel cs:1){kapazitiv}; \end{axis} \end{tikzpicture} \end{document} beantwortet 05 Jan '15, 10:57 esdd Hat super funktioniert. Danke :)
(05 Jan '15, 22:01)
LaTex_Neuling89
|