如何使用 tikz 制作并排项目

如何使用 tikz 制作并排项目

我想写一些东西,其中我需要图表的所有确认并排并争论一些事情。我如何使用 Latex 和 Tikz 来实现这一点。

就像我想要所有具有 3 条边的图形配置并选择我想要的那个,我该怎么做? **并排查看图像,而不是一个在另一个下面,我如何使用 tikz 来实现这一点**

答案1

将图形绘制为tikzpictures 并使用baseline选项指示图片应在哪个节点上对齐。

\documentclass{article}
\usepackage{tikz}
\begin{document}
\tikzset{vertex/.style={circle,draw,minimum width=3mm}}
\begin{tikzpicture}[auto,baseline=(c)]
  \node[vertex] (a) at (0,0) {};
  \node[vertex] (b) at (1,0) {};
  \node[vertex] (c) at (2,0) {};
  \node[vertex] (d) at (3,0) {};
  \draw (a) -- node{1} (b)
            -- node{2} (c)
            -- node{3} (d);
\end{tikzpicture}
\qquad
\begin{tikzpicture}[auto,baseline=(c)]
  \node[vertex] (a) at (0, 0.5) {};
  \node[vertex] (b) at (0,-0.5) {};
  \node[vertex] (c) at (1, 0  ) {};
  \node[vertex] (d) at (2, 0  ) {};
  \draw (a) -- node{1} (c)
            -- node{2} (d)
        (b) -- node[swap]{3} (c);
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容