如何使用 tikzpicture 环境绘制此矩形

如何使用 tikzpicture 环境绘制此矩形

我想使用环境绘制这种矩形tikzpicture

带新线的矩形

a可以改为b、、、等等cd

我们还应该能够插入新行。

如果需要 MWE,请告诉我。

谢谢!

答案1

市场上已经有类似这样的文件夹符号,例如这里也就是说,如果你想定义一个新的形状,有一些答案可以给你一个好的开始。然而,如果你想用快速而肮脏的方式做这件事,你可以这样做

\documentclass[tikz,border=3.14mm]{standalone}
\begin{document}
\begin{tikzpicture}[fluffy with corner/.style={draw,inner ysep=3mm,inner
xsep=3mm,align=center,
path picture={
\draw ([xshift=3mm]path picture bounding box.north west) 
-- ([yshift=-3mm]path picture bounding box.north west);
\node[anchor=north east,inner sep=2pt] at (path picture bounding box.north east)
{#1};}},fluffy/.style={draw,inner ysep=3mm,inner xsep=3mm,align=center,
path picture={
\node[anchor=north east,inner sep=2pt] at (path picture bounding box.north east) {#1};}}]
\node[fluffy=b] at (0,0){text here}; 
\node[fluffy with corner=a] at (4,0){text here\\ second line\\ third line};
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容