I have a presentation. I want to draw it in latex and put in on my slide. Some kind tell me where to begin or tell me the code
Asked
Active
Viewed 551 times
-1
-
1I can tell where to begin: http://www.texample.net/tikz/examples/ – Sigur May 29 '18 at 03:11
-
This site is not for do it for me type of questions. The solution is easily found several places including this site. http://www.google.com/search?q=venn+diagram+latex – hpekristiansen May 29 '18 at 03:18
-
You can just draw some simple shapes to achieve this. Have a look here: https://tex.stackexchange.com/a/26736/76279 – Dunk the Lunk May 29 '18 at 03:20
1 Answers
1
How about this to get you started:
\documentclass[tikz]{standalone}
\usetikzlibrary{shapes}
\begin{document}
\begin{tikzpicture}
\node[draw,circle,minimum size=7cm] (c1) at (0,0) {};
\node[draw,ellipse, minimum height=4cm,minimum width=2cm] (e1) at (0,1) {};
\node[draw,ellipse, minimum height=2cm,minimum width=4cm] (e2) at (1,1) {};
\node[text width=3cm] (l1) at (6,6) {Topological `reunion'?};
\node[text width=3cm] (l2) at (7,1) {AECH};
\node[text width=3cm] (l3) at (0.5,-3) {Matrix module};
\draw[->] (c1) -- (l1);
\draw[->] (e2) -- (l2);
\draw[->] (e1) -- (l3);
\end{tikzpicture}
\end{document}
Familiarise yourself with the various ways you can customize the positions, sizes, shape colours, arrows etc... to achieve what you want. Don't be afraid to search other answers on this site and just try things.
Dunk the Lunk
- 600
- 4
- 10
-
Thanks. I could draw the circle, ellipse separately but not be lying inside the circle. I understand the trick. – GGT May 29 '18 at 06:08

