Files

20 lines
463 B
Plaintext
Raw Permalink Normal View History

2025-11-16 15:47:31 +11:00
# -*- mode: snippet -*-
# name: Tikz Plot
# key: tikzplot
# group: environments
# --
\begin{figure}[$1]
\centering
\begin{tikzpicture}
\begin{axis}[
xmin= ${2:-10}, xmax= ${3:10},
ymin= ${4:-10}, ymax = ${5:10},
axis lines = middle,
]
\addplot[domain=$2:$3, samples=${6:100}]{$7};
\end{axis}
\end{tikzpicture}
\caption{$8}
\label{${9:"waiting for reftex-label call..."$(unless yas/modified-p (reftex-label nil 'dont-insert))}}
\end{figure}