我是这个论坛的新手,在这里我经常能找到有用的回复。希望我在这里说得足够准确。
我一直在尝试创建一个新的环境,其中会有一条左边框线,旁边还有我的文本。因此,我一直在尝试运行直接来自 tcolorbox 手册的这段代码:
\documentclass{article}
\usepackage{tcolorbox}
\tcbuselibrary{skins}
\usetikzlibrary{patterns, external, shadings}
\begin{document}
\begin{tcolorbox}[title=A working tcolorbox...]
... Where I can write things in it.
\end{tcolorbox}
\begin{tcolorbox}[skin=enhanced, blanker, before skip=6pt,after skip=6pt,borderline west={3mm}{0pt}{red}]
This is an example.
\end{tcolorbox}
\end{document}
skin=enhanced
我以为我在添加框选项时找到了问题所在,但这并不能解决问题。我仍然收到这些错误:
! Package pgfkeys Error: I do not know the key '/tcb/blanker' and I am going to ignore it.
before skip
对于、after skip
、也是一样borderline
。我已经查找过了,显然是因为某些 tikz 库未正确加载,但即使我添加了\usetikzlibrary{patterns, external, shadings}
它,问题也没有解决(显然是因为blanker
和borderline
使用了另一个库,但是哪一个呢?
我希望我已经表达清楚了。感谢您的宝贵帮助!