Hallo! Mir ist aufgefallen, daß der 'arrow head' des single arrow einstellbar ist, geht sowas auch beim arrow tail? Danke fürs Lesen und das Interesse! Open in writeLaTeX
\documentclass[margin=5mm]{standalone} \usepackage[ngerman]{babel} \usepackage[utf8]{inputenc} \usepackage{amsmath, amssymb} \usepackage{tikz} \usetikzlibrary{shapes} %=========== \begin{document} %=========== \begin{tikzpicture}[every node/.style={scale=2.25}, font=\footnotesize] \node [ fill=blue!50, draw, single arrow, single arrow head indent=1ex, rotate=0, font=\sffamily ] at (0,4) {\rotatebox{0}{Pfeil mit Text}}; %---------------------- \draw[] (0,0)--(-1,1)--(2,1)--(2,2)--(4,0) node[xshift=-7ex, align=center]{gewünschte \\ Form}; \draw[yscale=-1] (0,0)--(-1,1)--(2,1)--(2,2)--(4,0); \end{tikzpicture} %=========== \end{document} %=========== |
Bisher ist die von Dir gewünschte Anpassung des Pfeils in der Open in writeLaTeX
\documentclass[margin=5mm,tikz]{standalone} \usetikzlibrary{shapes.arrows,calc,quotes,babel} \usepackage[ngerman]{babel} \tikzset{ pics/myarrow/.style={ code = { \node[single arrow,pic actions,draw=none,outer sep=0pt](-n){\tikzpictext}; \path[pic actions,draw=none] ($(-n.after tail)!\pgflinewidth!(-n.north west)$)-- ($(-n.after tail)!-#1!(-n.north west)$)coordinate(-north west)-- (-n.west)-- ($(-n.before tail)!-#1!(-n.south west)$)coordinate(-south west)-- ($(-n.before tail)!\pgflinewidth!(-n.south west)$)-- cycle; \path[pic actions,fill=none] ($(-n.before tail)!-#1!(-n.south west)$)--(-n.west)--($(-n.after tail)!-#1!(-n.north west)$)-- (-n.before head)--(-n.before tip)--(-n.east)-- (-n.after tip)--(-n.after head)--cycle; } } } \begin{document} \begin{tikzpicture}[font=\footnotesize] \pic[ single arrow head indent=1ex, fill=blue!50,draw, nodes={rotate=60}, "Pfeil mit Text", ]{myarrow=1ex}; \pic[ fill=yellow, draw=green, "Test", ] at (1.5,0){myarrow=.5ex}; \end{tikzpicture} \end{document} In dem beantwortet 20 Apr '14, 00:17 esdd Gar nicht so ohne. Vielleicht kommen die tails ja mal allgemien in einer neuern Version. Danke ;)
(20 Apr '14, 20:53)
cis
|