例如,我有一张手写图表:
我正在寻找一个网站(或替代解决方案)数学家,它将我的手写图形转换为 tikzpicture 代码。所以我的输出如下所示:
\begin{tikzpicture}[thick, auto, scale=0.8, transform shape]
\node [state] (v0) {$v_0$};
\node [state, above right=of v0] (v1) {$v_1$};
\node [state, below right=of v0] (v2) {$v_2$};
\node [state, below=of v0] (v3) {$v_3$};
\node [state, below=of v3] (v4) {$v_4$};
\node [state, below right=of v3] (v5) {$v_5$};
\node [state, below right =of v4] (v6) {$v_6$};
\path
(v0) edge[-] node {} (v1);
\path
(v0) edge[-] node {} (v2);
\path
(v0) edge[-] node {} (v5);
\path
(v3) edge[-] node {} (v6);
\path
(v4) edge[-] node {} (v2);
\path
(v4) edge[-] node {} (v6);
\end{tikzpicture}