diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/pgfplots/bugtracker')
23 files changed, 460 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_0.pdf b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_0.pdf Binary files differindex 4332cb3ccbe..acd73c30dbc 100644 --- a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_0.pdf +++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_0.pdf diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_1.pdf b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_1.pdf Binary files differnew file mode 100644 index 00000000000..3f75f3f8085 --- /dev/null +++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_1.pdf diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_1.tex b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_1.tex new file mode 100644 index 00000000000..15b4e0d7dfa --- /dev/null +++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_1.tex @@ -0,0 +1,144 @@ + +\documentclass[a4paper]{report} +\usepackage{pgfplots} + +\pgfplotsset{compat=1.3} +\begin{document} +\begin{tikzpicture} + \begin{axis}[ + xbar, + width=12cm, + height=3.5cm, + enlarge y limits=0.5, + xlabel={\#participants}, + xmin=0, + symbolic y coords={no,yes}, + ytick=data, + nodes near coords, + nodes near coords align={horizontal}, + ] + \addplot coordinates {(3,no) (7,yes)}; + \end{axis} +\end{tikzpicture} + +\begin{tikzpicture} + \begin{axis}[ + xbar, + width=12cm, + height=3.5cm, + enlarge y limits=0.5, + xlabel={\#participants}, + symbolic y coords={no,yes}, + ytick=data, + nodes near coords, + nodes near coords align={horizontal}, + ] + \addplot coordinates {(1,no) (9,yes)}; + \end{axis} +\end{tikzpicture} + +\begin{tikzpicture} + \begin{axis}[ + xbar, + width=12cm, + height=3.5cm, + enlarge y limits=0.5, + xlabel={\#participants}, + xmin=0, + symbolic y coords={set A,set B}, + ytick=data, + nodes near coords, + nodes near coords align={horizontal}, + ] + \addplot coordinates {(6,set A) (4,set B)}; + \end{axis} +\end{tikzpicture} + +\begin{tikzpicture} + \begin{axis}[ + ybar, + enlargelimits=0.15, + xlabel={\# of bananas}, + ylabel={\#participants}, + ytick={0,1,2,3}, + ymin=0, + symbolic x coords={1,2,3,4,5,more}, + nodes near coords, + ] + \addplot coordinates {(1,1) (2,1) (3,3) (4,2) (5,1) (more,2)}; + \end{axis} +\end{tikzpicture} + +\begin{tikzpicture} + \begin{axis}[ + ybar stacked, + enlargelimits=0.15, + legend style={at={(0.5,-0.20)}, + anchor=north,legend columns=-1}, + ylabel={\#participants}, + symbolic x coords={tool1, tool2, tool3, tool4, tool5, tool6, tool7}, + xtick=data, + x tick label style={rotate=45,anchor=east}, + ] + \addplot+[ybar] plot coordinates {(tool1,0) (tool2,2) (tool3,2) (tool4,3) (tool5,0) (tool6,2) (tool7,0)}; % never + \addplot+[ybar] plot coordinates {(tool1,0) (tool2,0) (tool3,0) (tool4,3) (tool5,1) (tool6,1) (tool7,0)}; % rarely + \addplot+[ybar] plot coordinates {(tool1,6) (tool2,6) (tool3,8) (tool4,2) (tool5,6) (tool6,5) (tool7,6)}; % sometimes + \addplot+[ybar] plot coordinates {(tool1,4) (tool2,2) (tool3,0) (tool4,2) (tool5,3) (tool6,2) (tool7,4)}; % often + \legend{never, rarely, sometimes, often} + \end{axis} +\end{tikzpicture} + +\begin{tikzpicture} + \begin{axis}[ + ybar, + enlargelimits=0.15, + legend style={at={(0.5,-0.15)}, + anchor=north,legend columns=-1}, + ylabel={\#participants}, + symbolic x coords={tool8,tool9,tool10}, + xtick=data, + nodes near coords, + nodes near coords align={vertical}, + ] + \addplot coordinates {(tool8,7) (tool9,9) (tool10,4)}; + \addplot coordinates {(tool8,4) (tool9,4) (tool10,4)}; + \addplot coordinates {(tool8,1) (tool9,1) (tool10,1)}; + \legend{used,understood,not understood} + \end{axis} +\end{tikzpicture} + +\begin{tikzpicture} + \begin{axis}[ + ybar, + enlargelimits=0.15, + legend style={at={(0.5,-0.2)}, + anchor=north,legend columns=-1}, + ylabel={\#participants}, + symbolic x coords={excellent,good,neutral,not good,poor}, + xtick=data, + nodes near coords, + nodes near coords align={vertical}, + x tick label style={rotate=45,anchor=east}, + ] + \addplot coordinates {(excellent,0) (good,8) (neutral,2) (not good,0) (poor,0)}; + \end{axis} +\end{tikzpicture} + +\begin{tikzpicture} + \begin{axis}[ + ybar, + enlargelimits=0.15, + legend style={at={(0.5,-0.2)}, + anchor=north,legend columns=-1}, + ylabel={\#participants}, + symbolic x coords={excellent,good,neutral,not good,poor}, + xtick=data, + nodes near coords, + nodes near coords align={vertical}, + x tick label style={rotate=45,anchor=east}, + ] + \addplot coordinates { (excellent,0) (good,7) (neutral,3) (not good,0) (poor,0)}; + \end{axis} +\end{tikzpicture} +\end{document} + diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_10.pdf b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_10.pdf Binary files differnew file mode 100644 index 00000000000..cd081384d29 --- /dev/null +++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_10.pdf diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_10.tex b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_10.tex new file mode 100644 index 00000000000..3f11c01a719 --- /dev/null +++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_10.tex @@ -0,0 +1,37 @@ + +\documentclass{article} +\usepackage{pgfplots} +\begin{document} +\begin{tikzpicture} +\begin{axis}[ + small, + width=12cm, + height=1.8in, + ymin=0, + ymax=10, + xmin=0, + xmax=2, + ybar, + ymajorgrids=true, + yminorgrids=false, + minor y tick num=0, + ytick pos=left, + xtick pos=left, + ytick align=center, + yticklabel={$\pgfmathprintnumber{\tick}\%$}, + xtick align=outside, + x tick style={}, + xticklabel style={rotate=45,anchor=east,font=\scriptsize\sffamily}, + extra y tick style={tick pos=right, ticklabel pos=right, grid +style={thick,color=black}}, + extra y ticks={6.25}, + extra y tick labels={Extra Label}, +] + +%\addplot plot[error bars/.cd,y dir=plus,y explicit,x dir=none] table +%[x=Index,y expr=100*\thisrow{AvgLocked},y error=Diff]{locked_tabbed.dat}; + +\end{axis} +\end{tikzpicture} +\end{document} + diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_11.pdf b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_11.pdf Binary files differnew file mode 100644 index 00000000000..15c4213f18c --- /dev/null +++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_11.pdf diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_11.tex b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_11.tex new file mode 100644 index 00000000000..3f11c01a719 --- /dev/null +++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_11.tex @@ -0,0 +1,37 @@ + +\documentclass{article} +\usepackage{pgfplots} +\begin{document} +\begin{tikzpicture} +\begin{axis}[ + small, + width=12cm, + height=1.8in, + ymin=0, + ymax=10, + xmin=0, + xmax=2, + ybar, + ymajorgrids=true, + yminorgrids=false, + minor y tick num=0, + ytick pos=left, + xtick pos=left, + ytick align=center, + yticklabel={$\pgfmathprintnumber{\tick}\%$}, + xtick align=outside, + x tick style={}, + xticklabel style={rotate=45,anchor=east,font=\scriptsize\sffamily}, + extra y tick style={tick pos=right, ticklabel pos=right, grid +style={thick,color=black}}, + extra y ticks={6.25}, + extra y tick labels={Extra Label}, +] + +%\addplot plot[error bars/.cd,y dir=plus,y explicit,x dir=none] table +%[x=Index,y expr=100*\thisrow{AvgLocked},y error=Diff]{locked_tabbed.dat}; + +\end{axis} +\end{tikzpicture} +\end{document} + diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_2.pdf b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_2.pdf Binary files differnew file mode 100644 index 00000000000..fb0b471b8df --- /dev/null +++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_2.pdf diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_2.tex b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_2.tex new file mode 100644 index 00000000000..3f11c01a719 --- /dev/null +++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_2.tex @@ -0,0 +1,37 @@ + +\documentclass{article} +\usepackage{pgfplots} +\begin{document} +\begin{tikzpicture} +\begin{axis}[ + small, + width=12cm, + height=1.8in, + ymin=0, + ymax=10, + xmin=0, + xmax=2, + ybar, + ymajorgrids=true, + yminorgrids=false, + minor y tick num=0, + ytick pos=left, + xtick pos=left, + ytick align=center, + yticklabel={$\pgfmathprintnumber{\tick}\%$}, + xtick align=outside, + x tick style={}, + xticklabel style={rotate=45,anchor=east,font=\scriptsize\sffamily}, + extra y tick style={tick pos=right, ticklabel pos=right, grid +style={thick,color=black}}, + extra y ticks={6.25}, + extra y tick labels={Extra Label}, +] + +%\addplot plot[error bars/.cd,y dir=plus,y explicit,x dir=none] table +%[x=Index,y expr=100*\thisrow{AvgLocked},y error=Diff]{locked_tabbed.dat}; + +\end{axis} +\end{tikzpicture} +\end{document} + diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_3.pdf b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_3.pdf Binary files differnew file mode 100644 index 00000000000..55d823a5648 --- /dev/null +++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_3.pdf diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_3.tex b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_3.tex new file mode 100644 index 00000000000..664ddc7df31 --- /dev/null +++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_3.tex @@ -0,0 +1,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} + diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_4.pdf b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_4.pdf Binary files differnew file mode 100644 index 00000000000..63d9e554d87 --- /dev/null +++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_4.pdf diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_4.tex b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_4.tex new file mode 100644 index 00000000000..664ddc7df31 --- /dev/null +++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_4.tex @@ -0,0 +1,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} + diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_5.pdf b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_5.pdf Binary files differnew file mode 100644 index 00000000000..4cd0f1e8034 --- /dev/null +++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_5.pdf diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_5.tex b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_5.tex new file mode 100644 index 00000000000..3f11c01a719 --- /dev/null +++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_5.tex @@ -0,0 +1,37 @@ + +\documentclass{article} +\usepackage{pgfplots} +\begin{document} +\begin{tikzpicture} +\begin{axis}[ + small, + width=12cm, + height=1.8in, + ymin=0, + ymax=10, + xmin=0, + xmax=2, + ybar, + ymajorgrids=true, + yminorgrids=false, + minor y tick num=0, + ytick pos=left, + xtick pos=left, + ytick align=center, + yticklabel={$\pgfmathprintnumber{\tick}\%$}, + xtick align=outside, + x tick style={}, + xticklabel style={rotate=45,anchor=east,font=\scriptsize\sffamily}, + extra y tick style={tick pos=right, ticklabel pos=right, grid +style={thick,color=black}}, + extra y ticks={6.25}, + extra y tick labels={Extra Label}, +] + +%\addplot plot[error bars/.cd,y dir=plus,y explicit,x dir=none] table +%[x=Index,y expr=100*\thisrow{AvgLocked},y error=Diff]{locked_tabbed.dat}; + +\end{axis} +\end{tikzpicture} +\end{document} + diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_6.pdf b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_6.pdf Binary files differnew file mode 100644 index 00000000000..9f6faa0316b --- /dev/null +++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_6.pdf diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_6.tex b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_6.tex new file mode 100644 index 00000000000..3f11c01a719 --- /dev/null +++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_6.tex @@ -0,0 +1,37 @@ + +\documentclass{article} +\usepackage{pgfplots} +\begin{document} +\begin{tikzpicture} +\begin{axis}[ + small, + width=12cm, + height=1.8in, + ymin=0, + ymax=10, + xmin=0, + xmax=2, + ybar, + ymajorgrids=true, + yminorgrids=false, + minor y tick num=0, + ytick pos=left, + xtick pos=left, + ytick align=center, + yticklabel={$\pgfmathprintnumber{\tick}\%$}, + xtick align=outside, + x tick style={}, + xticklabel style={rotate=45,anchor=east,font=\scriptsize\sffamily}, + extra y tick style={tick pos=right, ticklabel pos=right, grid +style={thick,color=black}}, + extra y ticks={6.25}, + extra y tick labels={Extra Label}, +] + +%\addplot plot[error bars/.cd,y dir=plus,y explicit,x dir=none] table +%[x=Index,y expr=100*\thisrow{AvgLocked},y error=Diff]{locked_tabbed.dat}; + +\end{axis} +\end{tikzpicture} +\end{document} + diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_7.pdf b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_7.pdf Binary files differnew file mode 100644 index 00000000000..950e03d078a --- /dev/null +++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_7.pdf diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_7.tex b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_7.tex new file mode 100644 index 00000000000..1567c1d6eab --- /dev/null +++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_7.tex @@ -0,0 +1,25 @@ + +\documentclass{article} + +\usepackage{pgfplots} +\begin{document} +\begin{tikzpicture} +\begin{axis}[axis equal] +% FokkerDrI_layer_0.patches.dat contains: +% # each row is one vertex; three consecutive +% # vertices make one triangle (patch) +% 105.577 -19.7332 2.85249 +% 88.9233 -21.1254 13.0359 +% 89.2104 -22.1547 1.46467 +% # end of facet 0 +% 105.577 -19.7332 2.85249 +% 105.577 -17.2161 12.146 +% 88.9233 -21.1254 13.0359 +% # end of facet 1 +\addplot3[patch] + file + {plotdata/FokkerDrI_layer_0.patches.dat}; +\end{axis} +\end{tikzpicture} +\end{document} + diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_8.pdf b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_8.pdf Binary files differnew file mode 100644 index 00000000000..f341833cb5a --- /dev/null +++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_8.pdf diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_8.tex b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_8.tex new file mode 100644 index 00000000000..664ddc7df31 --- /dev/null +++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_8.tex @@ -0,0 +1,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} + diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_9.pdf b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_9.pdf Binary files differnew file mode 100644 index 00000000000..e61a15b136a --- /dev/null +++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_9.pdf diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_9.tex b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_9.tex new file mode 100644 index 00000000000..3f11c01a719 --- /dev/null +++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_9.tex @@ -0,0 +1,37 @@ + +\documentclass{article} +\usepackage{pgfplots} +\begin{document} +\begin{tikzpicture} +\begin{axis}[ + small, + width=12cm, + height=1.8in, + ymin=0, + ymax=10, + xmin=0, + xmax=2, + ybar, + ymajorgrids=true, + yminorgrids=false, + minor y tick num=0, + ytick pos=left, + xtick pos=left, + ytick align=center, + yticklabel={$\pgfmathprintnumber{\tick}\%$}, + xtick align=outside, + x tick style={}, + xticklabel style={rotate=45,anchor=east,font=\scriptsize\sffamily}, + extra y tick style={tick pos=right, ticklabel pos=right, grid +style={thick,color=black}}, + extra y ticks={6.25}, + extra y tick labels={Extra Label}, +] + +%\addplot plot[error bars/.cd,y dir=plus,y explicit,x dir=none] table +%[x=Index,y expr=100*\thisrow{AvgLocked},y error=Diff]{locked_tabbed.dat}; + +\end{axis} +\end{tikzpicture} +\end{document} + |