Hinzufügen einer 2ten lrbox-newsavebox?
Hallo,
>---
> Duplikat zu: [Was machen eigentlich \makeatletter und \makeatother?](http://texwelt.de/wissen/fragen/1/was-machen-eigentlich-makeatletter-und-makeatother)
>
>---
Wie kann ich eine 2te lrbox/newsavebox hinzufügen? Anscheinend kann ich nur eine verwenden?
Wenn ich die zweite Box einblende kommen unzählige Fehlermeldungen.
\begin{lrbox}{\Zeichnung1}
\begin{tikzpicture}
draw(0,-0.7)--(-4,-0.7);
\end{tikzpicture}
\end{lrbox}
Hier der Code:
\documentclass[12pt]{article}
\usepackage{tikz}
\begin{document}
\begin{flushleft}
\begin{minipage}{\linewidth}
\newpage
\noindent
\newsavebox\Zeichnung
%\newsavebox\Zeichnung1
\begin{lrbox}{\Zeichnung}
\begin{tikzpicture}
\draw(0,-0.7)--(-4,-0.7);
\draw(0,-0.7)--(0,0.7);
\draw(0,0.7)--(-4,0.7);
\draw(-0.7,0)--(-0.7,4);
\draw(-0.7,0)--(0.7,0);
\draw(0.7,0)--(0.7,4);
\draw(0,0.7)--(4,0.7);
\draw(0,0.7)--(0,-0.7);
\draw(0,-0.7)--(4,-0.7);
\end{tikzpicture}
\end{lrbox}
%\begin{lrbox}{\Zeichnung1}
%\begin{tikzpicture}
% draw(0,-0.7)--(-4,-0.7);
%\end{tikzpicture}
%\end{lrbox}
\begin{tikzpicture} [node distance=0cm]
\useasboundingbox(0,0)rectangle(\linewidth,\textheight);
\node[anchor=south west,inner sep=0,scale=1] (Bild) at (0cm,0.368cm)
{\includegraphics[width=14cm]{example-image}};
\begin{scope}[
x=23.02cm,y=16.02cm,
bildeinbinden/.style={
inner sep=0pt
}
]
\node[bildeinbinden,below right,scale=0.8] at (0.5,0.5) {\usebox\Zeichnung};
%\node[bildeinbinden,below right,scale=0.8] at (0.2,0.1) {\usebox\Zeichnung1};
\end{scope}
\end{tikzpicture}
\end{minipage}
\end{flushleft}
\end{document}
Danke.