如何制作一个角落处带有 tex 的盒子?

如何制作一个角落处带有 tex 的盒子?

在此处输入图片描述

我怎样才能制作以下方框文本以及在角落处带有文本的方框文本?

请考虑“讲座 1”也是一个文本。我想在那里写下我的讲座编号。这就是我保持这样的原因。

答案1

如果你愿意的话,你可以用 TikZ 轻松做到这一点,例如

\documentclass[tikz,border=5mm]{standalone}

\begin{document}

\begin{tikzpicture}
\node[text width=10cm,draw,inner sep=1em](mybox) {Another text here};
\node[anchor=west,fill=white,xshift=0.5em] at (mybox.north west){\textsc{Lecture} 1}; %This line is optional, remove it to get your first box without text on the edge.
\end{tikzpicture}
    
\end{document}

结果是

在此处输入图片描述

相关内容