I am trying to recreate this hand drawn diagram of a wooden stand:
Here is the .tex: (it is a bit longer than a MWE).
\documentclass[12pt]{article}
\usepackage[paper=a2paper,margin=1cm,landscape]{geometry}
\pagestyle{empty}
\usepackage{blindtext}
\usepackage{tikz}
\usetikzlibrary{backgrounds}
\usetikzlibrary{positioning}
\usetikzlibrary{shapes.geometric}
\usetikzlibrary{shapes.misc}
\usetikzlibrary{shapes.multipart}
\usetikzlibrary{patterns}
\usetikzlibrary{arrows.meta}
\begin{document}
\begin{tikzpicture}
\node[minimum width=30cm, minimum height=30cm,draw,thick,rectangle](TopSquare){};
\node [below=10mm of TopSquare] {Top View};
\node [below=0mm of TopSquare] {30cm};
\node [rotate=90, left=5mm of TopSquare] {30cm};
\node[minimum width=2cm, minimum height=30cm,draw,thick,rectangle, right=25mm of TopSquare](SideView){};
\node[minimum width=14cm, minimum height=30cm,draw=none, right=25mm of TopSquare](Side){};
\node[below=10mm of Side]{Side View};
%\node [below=10mm of SideView] {Side View};
\node [below=0mm of SideView] {2cm};
%\node [rotate=90, left=5mm of SideView] {30cm};
\node[minimum width=12cm,minimum height=2cm,draw,thick,rectangle,below right=-20mm and 0mm of SideView](Sup1){};
\node[below=0mm of Sup1] {12cm};
\node[minimum width=12cm,minimum height=2cm,draw,thick,rectangle, right= 0mm of SideView](Sup2){};
%\node[below=0mm of Sup2] {12cm};
\node[minimum width=12cm,minimum height=2cm,draw,thick,rectangle,above right=-20mm and 0mm of SideView](Sup3){};
%\node[below=0mm of Sup3] {12cm};
\end{tikzpicture}
\section*{Instructions}
\begin{itemize}
\item\blindtext
\item\blindtext
\item\blindtext
\end{itemize}
\end{document}
which leads to this pdf: (Screenshot, I added the red elements to show the issues.)
- I want to scale the picture to an A3, but keep the font size. (Printing a scaled A2 on an A4 leads to difficult-to-read text. I am using
[a2paper]{geometry}so that I can see the wholetikzpicture. I could make the figure smaller, i.e.
\node[minimum width=5cm, minimum height=5cm,draw,thick,rectangle](TopSquare){};. But then I'd have to readjust all rectangles, etc.I'd like to add the red elements. The box in the long, vertical box of the side view is at the same height as the red circles in the smaller squares.
- Where the 12cm box meets the 2cm x 30 cm bar, there isn't a nice overlap.
- I'd like to add the dashed lines to show the smaller squares in the 30x30.
- The
\section*{Instructions}will be filled with bullet items for my woodworker friend who will make this stand.

dimlinepackage to add lines. – Max R Mar 02 '19 at 12:16