我在 TikZ 中创建了一张图片,我想将一些说明放在图片的左侧,最好说明占据与图片相同的空间(垂直)。我该怎么做?
我的例子:
\begin{tikzpicture}[zw/.style={minimum height=6.5mm}]
\node[zw] (R) {$R$};
\node[zw] (RI) [right=of R] {$R/I$};
\node[zw] (S) [below=of R] {$S$};
\node[zw] (I) [left=of R] {$I$};
\draw[->] (R.east) -- node[above] {$\pi$} (RI.west);
\draw[->] (R.south) -- node[left] {$f$} (S.north);
\draw[->, dashed] (RI.south) -- node[anchor=north west]{$\exists!\tilde{f}$} (S.north east);
\draw[right hook->] (I.east) -- (R.west);
\end{tikzpicture}
Sei $S$ ein Ring, und $f:R\to S$ ein Ringhomomorphismus, sodass $I\subset\ker f$. Dann gibt es einen eindeutigen Ringhomomorphismus $\tilde f: R/I \to S$ sodass $f = \tilde f \pi$.`
答案1
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{minipage}{.45\linewidth}
Sei $S$ ein Ring, und $f:R\to S$ ein Ringhomomorphismus,
sodass $I\subset\ker f$. Dann gibt es einen eindeutigen
Ringhomomorphismus $\tilde f: R/I \to S$ sodass $f =
\tilde f \pi$.`
\end{minipage}\hfill
\begin{minipage}{.45\linewidth}
\begin{tikzpicture}
\draw (0,0) rectangle (2,2);
\end{tikzpicture}
\end{minipage}
\end{document}