blob: 4d85750c70a765f7f3ff0d075a9d954876557276 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
\documentclass[a4paper,12pt]{article}
\usepackage[a4paper, margin=0pt]{geometry}
\setlength{\parindent}{0pt}
\pagestyle{empty}
\newlength \rulethickness
\setlength \rulethickness {0pt}
\setlength \fboxsep {-\rulethickness}
\setlength \fboxrule {\rulethickness}
\renewcommand{\arraystretch}{1.9}
\newcommand \form {
\fbox{
\begin{tabular}{l}
Namn: \\ \hline \\
\begin{tabular}{r|c|c|c|}
& ~ 1 ~ & ~ X ~ & ~ 2 ~ \\ \hline
1 ~ & \quad\ \quad\ & \quad\ \quad\ & \quad\ \quad\ \\ \hline
2 ~ & & & \\ \hline
3 ~ & & & \\ \hline
4 ~ & & & \\ \hline
5 ~ & & & \\ \hline
6 ~ & \multicolumn{3}{l|}{Utsl:} \\ \hline
% 7 ~ & & & \\ \hline
% 8 ~ & & & \\ \hline
% 9 ~ & & & \\ \hline
% 10 ~ & & & \\ \hline
\end{tabular}
\end{tabular}
}
}
\newcommand \hf {
\mbox{} \hfill \mbox{}
}
\newcommand \hr {
\fbox{\raisebox{0pt}[10pt][0pt]{\rule{1\textwidth}{\rulethickness}}}
}
\newcommand \vf {
\hr \vfill \hr
}
\begin{document}
\vf
\hf \form \hf \hf \form \hf
\vf
\vf
\hf \form \hf \hf \form \hf
\vf
\end{document}
|