Antwort1
Dies wäre eine gute Übung gewesen, um es selbst herauszufinden, und dann könnten Sie fragen, wenn Sie nicht weiterkommen. Im Allgemeinen wären Sie auf diese Weise wahrscheinlich besser dran. Wenn Sie etwas versucht haben,Zeig uns. Aber weil es Idioten wie mich gibt:
Ziemlich unkompliziert, siehe einige Kommentare im Code.
\documentclass[border=5pt]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\pgfmathsetmacro\N{4} % define your value of N
\foreach [
% values to be printed along diagonal, save in \i
evaluate=\n as \i using int(2*\n-1),
% values printed below the diagonal, save in \j
evaluate=\n as \j using int(2*\n),
]
\n in {1,...,\N}
{
% upper left corner of the whole thing is (0,0)
% draw squares along diagonal, with number in the middle
\draw (\n-1,-\n+1) rectangle node{\i} (\n,-\n);
% No lower rectangle for the last value in the loop
% so only draw that if the loop variable is less than \N
\ifnum \n < \N
\draw (\n-1,-\N) rectangle node{\j} (\n,-\n);
\fi
}
% draw upper and right border
\draw (0,0) -| (\N,-\N);
\end{tikzpicture}
\end{document}
Antwort2
Dies ist ganz einfach mit einem normalen tabular
:
\documentclass[12pt,a4paper]{article}
\usepackage{multirow}
\begin{document}
\begin{tabular}{|*4{c|}}
\hline
1 & \multicolumn{3}{c|}{} \\ \cline{1-2}
\multirow{3}{*}{2} & 3 & \multicolumn{2}{c|}{} \\ \cline{2-3}
& \multirow{2}{*}{4} & 5 & \\ \cline{3-4}
& & 6 & 7 \\ \hline
\end{tabular}
\end{document}
Handelt es sich um große Zahlen, ist die Verwendung von TikZ sinnvoll:
\documentclass[tikz,border=5pt]{standalone}
\begin{document}
\def\N{7}
\begin{tikzpicture}[sqr/.style={minimum width=1cm,draw},outer sep=0pt]
\foreach \i [evaluate=\i as\j using int(2*\i-1),
evaluate=\i as\t using int(2*\i)] in {1,...,\N}{
\node(c\j) at (\i,-\i)[sqr,minimum height=1cm, anchor=south]{\j};
\ifnum\i<\N\node at (\i,-\i)[sqr,minimum height=\N cm-\i cm, anchor=north]{\t};
\else\draw(c1.north east) -| (c\j.north east);\fi
}
\end{tikzpicture}
\end{document}