summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/support/latexindent/success/tikz5.tex
blob: b24b429e318a9455276be413e0b090d6f94de337 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
% arara: indent: {overwrite: yes}
\documentclass[professionalfont, fleqn]{beamer}
\mode<presentation>
\usetheme{Warsaw}
\usetheme{CambridgeUS}

\usepackage{pgfplots}
\usetikzlibrary{arrows,shapes,positioning}
\graphicspath{{graphics/}}

\begin{document}
\frame
{
	\frametitle{Frame Title}
	\begin{tikzpicture}
		\begin{axis}
			[
				axis x line  = bottom,
				axis y line  = left,
				width        = 1.01\textwidth,
				height       = .63\textwidth,          % Adjusted
				ymax         = 93,
				ymin         = 27,
				ytick        = {30,40,...,90},
				xmax         = 1993,
				xmin         = 1967,
				xtick        = {1970, 1980, ..., 1990},
			]
			\node[anchor=west] at (axis cs:1968.5,89.5){%
				\textbullet\ Comment here about data
			};
		\end{axis}
	\end{tikzpicture}
}