Advertisement
Guest User

Untitled

a guest
Oct 10th, 2014
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.50 KB | None | 0 0
  1. \begin{tikzpicture}
  2.     \begin{axis}[
  3.       %width=0.8\textwidth,
  4.       %eight=0.6\textwidth,
  5.       axis lines=center,
  6.       axis on top=true,
  7.       xmin=0,
  8.       xmax=32,
  9.       xlabel={Сентябрь},
  10.      xticklabel style={/pgf/number format/1000 sep=},
  11.      ymin=76,
  12.      ymax=80,
  13.      ylabel={Вес (кг)}
  14.     ]
  15.     \addplot coordinates {
  16.      (9,78.5)
  17.      (11,79.4)
  18.      (13,77.9)
  19.      (16,79.0)
  20.      (18,78.8)
  21.      (23,77.2)
  22.      (25,78.2)
  23.      };
  24.     \end{axis}
  25. \end{tikzpicture}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement