mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2025-01-30 23:22:31 +00:00
23 lines
409 B
TeX
23 lines
409 B
TeX
|
\documentclass[12pt]{standalone}
|
||
|
|
||
|
% packages
|
||
|
\usepackage{tikz}
|
||
|
\usepackage[outline]{contour}
|
||
|
\usepackage{standalone}
|
||
|
|
||
|
\begin{document}
|
||
|
\begin{tikzpicture}
|
||
|
|
||
|
\pgfmathsetmacro{\xdist}{8.5}
|
||
|
\pgfmathsetmacro{\ydist}{4.5}
|
||
|
|
||
|
\foreach \xval in {1,2}
|
||
|
{
|
||
|
\foreach \yval in {1,2,...,5}
|
||
|
{
|
||
|
\node at (\xval*\xdist,\yval*\ydist) {\input{therionprotractor.tex}};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
\end{tikzpicture}
|
||
|
\end{document}
|