是否有任何可与 tufte 侧注/边注一起使用的阴影定理?

是否有任何可与 tufte 侧注/边注一起使用的阴影定理?

我想使用 tuftes sidenote 和 marginnote 命令。有没有办法将它们与阴影定理结合使用?我试过tcolorboxmdframed,但似乎都有问题。建议的重新定义这里有时会导致奇怪的效果。因此,我正在寻找可以着色的替代定理包。

\documentclass[10pt,a4paper]{tufte-book}

\usepackage{lipsum}
\usepackage[all]{tcolorbox}

\newtcbtheorem[number within=chapter]{TcbTheorem}{Theorem}{
    colback=blue!5, colframe=blue!5, coltitle=red,
}{thm}

\begin{document}
    \begin{TcbTheorem}{Name}{ref}
            \lipsum[1]
                \sidenote{sidenote}
            \marginnote{marginnote}
    \end{TcbTheorem}
\end{document}

相关内容