Files
brevetcard/brevetkarte-rueckseite-template.tex
Peter Adam b22f1f74a8 Increase card height to 9.5cm, add printer margins, and fix second card placement
- Extend card bottom from y=-7.2 to y=-8.2 (8.5cm → 9.5cm per card) so the
  second card naturally lands in the lower half of the page
- Increase all margins from 0.4cm to 0.6cm for printer compatibility; scale
  front tikzpicture x-axis to 0.990cm to compensate for narrower printable width
- Increase back side row height from 2.833cm to 3.167cm (matching new card height)
  and reduce column width from 7.0cm to 6.9cm to fit within new margins
- Reduce inter-card vspace from 0.8cm to 0.6cm to prevent second card page break

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-05 14:32:43 +02:00

121 lines
2.0 KiB
TeX

\documentclass[a4paper,10pt,landscape]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[landscape,top=0.6cm,bottom=0.6cm,left=0.6cm,right=0.6cm]{geometry}
\usepackage{array}
\usepackage{helvet}
% Set sans-serif font as default
\renewcommand{\familydefault}{\sfdefault}
\setlength{\parindent}{0pt}
\setlength{\tabcolsep}{3pt}
\pagestyle{empty}
\newcommand{\rowheight}{3.167cm}
\begin{document}
% Upper card table (rows 1-3)
\noindent
\begin{tabular}{|p{6.9cm}|p{6.9cm}|p{6.9cm}|p{6.9cm}|}
\hline
% Row 1
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_1_1}}}
&
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_1_2}}}
&
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_1_3}}}
&
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_1_4}}}
\\
\hline
% Row 2
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_2_1}}}
&
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_2_2}}}
&
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_2_3}}}
&
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_2_4}}}
\\
\hline
% Row 3
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_3_1}}}
&
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_3_2}}}
&
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_3_3}}}
&
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_3_4}}}
\\
\hline
\end{tabular}
\vspace{0.6cm}
% Lower card table (rows 1-3, identical)
\noindent
\begin{tabular}{|p{6.9cm}|p{6.9cm}|p{6.9cm}|p{6.9cm}|}
\hline
% Row 1
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_1_1}}}
&
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_1_2}}}
&
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_1_3}}}
&
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_1_4}}}
\\
\hline
% Row 2
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_2_1}}}
&
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_2_2}}}
&
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_2_3}}}
&
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_2_4}}}
\\
\hline
% Row 3
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_3_1}}}
&
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_3_2}}}
&
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_3_3}}}
&
\parbox[c][\rowheight][t]{6.8cm}{%
{{CELL_3_4}}}
\\
\hline
\end{tabular}
\end{document}