在 latex 中简单绘图

在 latex 中简单绘图

Ven 型图

我有一个演示文稿。我想用乳胶画出来并放在幻灯片上。有人能告诉我从哪里开始或告诉我代码吗

答案1

不妨这样开始:

\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}

熟悉自定义位置、大小、形状颜色、箭头等的各种方法,以实现您想要的效果。不要害怕搜索本网站上的其他答案,只需尝试即可。

在此处输入图片描述

相关内容