File: graph.tex

package info (click to toggle)
pytorch-geometric 2.6.1-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,904 kB
  • sloc: python: 127,155; sh: 338; cpp: 27; makefile: 18; javascript: 16
file content (16 lines) | stat: -rw-r--r-- 359 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
\documentclass{standalone}

\usepackage{tikz}

\begin{document}

\begin{tikzpicture}
  \node[draw,circle,label= left:{$x_1=-1$}] (0) at (0, 0) {0};
  \node[draw,circle,label=above:{$x_1=0$}] (1) at (1, 1) {1};
  \node[draw,circle,label=right:{$x_1=1$}] (2) at (2, 0) {2};

  \path[draw] (0) -- (1);
  \path[draw] (1) -- (2);
\end{tikzpicture}

\end{document}