在正方形内上下角绘制和书写一些东西

在正方形内上下角绘制和书写一些东西

在 LaTeX 中,如何在正方形的上下(角落)写东西?

我知道如何画正方形,但我不知道如何摆放它们。另外,如果我有多个正方形该怎么办?非常感谢。

答案1

我真的不知道你在追求什么,但这是我最好的解释尝试:

\documentclass[tikz]{standalone}
\begin{document}
\begin{tikzpicture}[anchor=north west]
  \draw (0,0) coordinate (ll1) rectangle ++(3,3) coordinate (ur1);
  \node[rotate=90] at (ll1) {something up};
  \node[rotate=-90] at (ur1) {something down};
  \draw (4,2) coordinate (ll2) rectangle ++(2.5,2.5) coordinate (ur2);
  \node[rotate=90] at (ll2) {another up};
  \node[rotate=-90] at (ur2) {another down};
\end{tikzpicture}
\end{document}

在此处输入图片描述

如果您能阐明您的需求,我会改进/更新这个答案。

相关内容