
I tried few codes but feeling overwhelmed by the complexity of this figure since I am new to tikz drawings. Any help will be appreciated. Thank you!
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
Code: Select all
\documentclass[tikz]{standalone}
\usetikzlibrary{decorations.markings}
\begin{document}
\begin{tikzpicture}[
dot/.style={
circle, draw, inner sep=1.5pt
},
arrow/.style={
decoration={markings,
mark=at position 0.5 with {\arrow{latex}}},
postaction={decorate}
}
]
\node[dot, label={90:$\upsilon_1^{(1)}$}] (u11) at (0,0) {};
\node[dot, label={300:$\varphi^\prime(\cdot)$}] (p1) at (0,-2) {};
\node[dot] (x1) at (2,-2) {};
\node[dot, label={270:$\delta_1^{(1)}$}] (d11) at (0,-5) {};
\draw[arrow] (u11) -- node[pos=.5, label={180:$\varphi^\prime(\cdot)$}] {} (p1);
\draw (p1) -- (x1);
\draw[arrow] (p1) -- (d11);
\end{tikzpicture}
\end{document}
Yes, that's what I said. I didn't get much help on that forum, so I turned to this one to see if someone can Kindly help instead of pointing out crossposts.Bartman wrote:Please let us know about your crossposts.
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