正如标题所说,有没有办法使用 fancybox 功能来实现这一点?我真的很想知道这是否可行。
另外,文本中写的是什么字体?有办法复制它吗?
答案1
我建议你tcolorbox
:
代码(根据需要调整设置):
\documentclass{article}
\usepackage[many]{tcolorbox}
\usepackage{lipsum}
\definecolor{titlebg}{RGB}{100,22,72}
\newtcolorbox{learn}{
breakable,
enhanced,
arc=0pt,
outer arc=0pt,
colframe=titlebg,
colback=titlebg!05,
overlay unbroken and first={
\node[
draw=titlebg,
fill=titlebg,
rotate=270,
anchor=north west,
text=white,
font=\bfseries
]
at (frame.north west)
{LEARN THIS};
}
}
\begin{document}
\lipsum[4]
\begin{learn}
\lipsum[1-3]
\end{learn}
\end{document}
关于问题的字体部分,请参阅如何找出文档或图片中使用的字体?。