Ich bin mir nicht sicher, aber ich glaube die Pfeilspitze (gleichschenkliges Dreieck) soll 3mal so lang wie breit sein und 3mal so dick wie die Linienbreite. Wie kann ich so einen Pfeil erstellen und bei TikZ- bzw. pgfplots-Diagrammen, z.B. Koordinatensystem verwenden. Open in Online-Editor
\documentclass[varwidth, border=2pt]{standalone} %\documentclass[paper=a5]{scrartcl} \usepackage{tikz} \begin{document} \def\x{0.4pt} \begin{tikzpicture}[ %thick, scale=20, ] \draw (0,1*\x) -- (0,-1*\x) -- (2.5*\x,0) -- cycle ; \draw[-latex, line width=0.4pt] (0,0) -- (3.0pt, 0); %\def\x{0.4pt} %\draw[yshift =-2cm, line width=\x,] (0,0) -- (9*\x, 0); %\draw[yshift =-2cm, line width=\x,] (0,1.5*\x) -- (0,-1.5*\x); \end{tikzpicture} \end{document} gefragt 23 Jan '16, 03:30 cis |
Ich glaube zwar nicht, dass die Abmessungen, die du angegeben hast stimmen, aber sie lassen sich leicht mit TikZ umsetzen. Ich verwende den Pfeil
Open in Online-Editor
\documentclass{article} \usepackage{tikz} \usetikzlibrary{arrows.meta} \begin{document} \begin{tikzpicture}[>={Triangle[length=0pt 9,width=0pt 3]}] \draw[ultra thick,->] (0,0) -- (1,0); \end{tikzpicture} \end{document} Das hier sieht ein bisschen mehr nach dem Bild in der Frage aus: Open in Online-Editor
\tikz\draw[->,>={Triangle[length=0pt 3*8,width=0pt 8]}] (0,0) -- (1,0); Die Benutzung in Open in Online-Editor
\documentclass{article} \usepackage{pgfplots} \usetikzlibrary{arrows.meta} \tikzset{ >={Triangle[length=0pt 3*8,width=0pt 8]}, } \pgfplotsset{ % override ``-stealth'' for open axes every non boxed x axis/.append style={ x axis line style={->} }, every non boxed y axis/.append style={ y axis line style={->} }, every non boxed z axis/.append style={ z axis line style={->} } } \begin{document} \begin{tikzpicture} \begin{axis}[axis lines=middle] \addplot+[->] coordinates { (0,0) (1,1) }; \end{axis} \end{tikzpicture} \end{document} beantwortet 23 Jan '16, 11:17 Henri Ah super. Ich habe nun
(23 Jan '16, 12:57)
cis
|