I want to have a special organigram which shown in attachement 'IMAGE', but the code which I have used gave the image_0 provided in attachement, how can I reach my aim such that I have used the following commands:
\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}
Graphics, Figures & Tables ⇒ Organigram arrows
Organigram arrows
- Attachments
-
- IMAGE.png (183.29 KiB) Viewed 2035 times
-
- image_0.png (7.08 KiB) Viewed 2035 times
Organigram arrows
There are several ways to draw the picture. Please do a minimal working example, that shows, what you have done so far. Use the skills of the editor in this forum to highlight your code.
Organigram arrows
Try this:
[img] [/img]
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
An example that is independent of fixed coordinates:
You can also take a matrix, a tree or
forest.
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}
