blob: 664ddc7df311a00da6cb54a1085bb9c5ed8f93bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
\documentclass[10pt]{article}
\usepackage{pgfplots}
\usepgfplotslibrary{groupplots}
\begin{document}
\begin{tikzpicture}%
%\begin{axis}[%
\begin{groupplot}[%
group style={group size=1 by 1},%
]%
\nextgroupplot;
\node[name=a] at (axis cs:0.1,-1) {N};
\addplot coordinates{(0,1) (1,2)};
\end{groupplot}
%\end{axis}
\draw (a) circle (5pt);
\end{tikzpicture}%
\end{document}
|