Graphics, Figures & Tables ⇒ Organigram arrows
Organigram arrows
\begin{tikzpicture} [scale=0.8]
\node[draw,text centered,minimum width=2cm,minimum height=0.6cm] (A)at(0,0){text};
.
.
.
.
\draw[->] (A.south) -- (B.north);
.
.
.
.
\end{tikzpicture}
- Attachments
-
- IMAGE.png (183.29 KiB) Viewed 2291 times
-
- image_0.png (7.08 KiB) Viewed 2291 times
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Organigram arrows
Organigram arrows
Code: Select all
\documentclass[border=0.1cm]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\node[draw,text width=1cm,align=center] at (-1,0) (T1) {Text};
\node[draw,text width=1cm,align=center] at (2,2) (T2) {Text1};
\node[draw,text width=1cm,align=center] at (2,0) (T3) {Text2};
\node[draw,text width=1cm,align=center] at (2,-2) (T4) {Text3};
\draw[-latex] (T1.east) -- (T2.west);
\draw[-latex](T1.east) -- (T3.west);
\draw[-latex](T1.east) -- (T4.west);
\end{tikzpicture}
\end{document}
Organigram arrows
Code: Select all
\documentclass[tikz, border=3pt]{standalone}
\usetikzlibrary{positioning, arrows.meta}
\begin{document}
\begin{tikzpicture}[
nodes={
draw,
align=center,
minimum width=2cm,
minimum height=0.6cm
},
node distance=.2cm and 1cm
]
\node (T1) {Text};
\node [right=of T1] (T2) {Text2};
\node [above=of T2] (T3) {Text1};
\node [below=of T2] (T4) {Text3};
\path [-Latex]
(T1.east) edge (T2.west)
(T1.east) edge (T3.west)
(T1.east) edge (T4.west)
;
\end{tikzpicture}
\end{document}
