答案1
如果你更喜欢tcolorbox
:
\documentclass{article}
\usepackage[most]{tcolorbox}
\begin{document}
\begin{tcolorbox}[
sharp corners, boxsep=5mm, boxrule=.5mm,
colback=brown, width=5cm,
halign upper=left, valign upper=top,
halign lower=right, valign lower=bottom,
enhanced, segmentation empty,
underlay = {
\begin{tcbclipinterior}
\filldraw[fill=orange, draw=tcbcolframe, line width=.5mm] (frame.south west)--++(90:1cm) to [out=5, in=185] ([yshift=-1cm]frame.north east)|-cycle;
\end{tcbclipinterior}
}]
A
\tcblower
B
\end{tcolorbox}
\end{document}
答案2
欢迎来到 TeX.SE。从下次开始尝试添加可编译的 MWE,这样会吸引更多用户来回答您的问题。
您可以从(边界)开始:
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\filldraw [black] (3, 2) --(3,0)--(0,0) plot [smooth, tension=2] coordinates { (0,0) (1,1) (2, 1) (3, 2)};
\filldraw [red] (3, 2) --(0,2)--(0,0) plot [smooth, tension=2] coordinates { (0,0) (1,1) (2, 1) (3, 2)};
\draw[yellow, thick] (0,0)--(0,2)--(3,2)--(3,0)--cycle;
\end{tikzpicture}
\end{document}
要得到:
其余的定制工作就交给你来做吧;)
。