tcolorbox 标头与 Bredelebeamer 类错误

tcolorbox 标头与 Bredelebeamer 类错误

我正在使用tcolorbox包,并试图复制它
Header_tcolorbox

当我编译但未使用它时,运行时没有错误,但是当我尝试使用它时,它失败了。

我的代码是这样的:

\documentclass{Bredelebeamer}
\usepackage{tcolorbox}
\usepackage{varwidth}
\tcbuselibrary{skins}
\usetikzlibrary{shadings}
...
\begin{document}
...
%% this code comes from tColorbox Documentation Section 10.2.3 Page 153
\newtcolorbox{BoxRafa}[2][]
{enhanced,
before skip=2mm,after skip=2mm,
colback=black!5,colframe=black!50,boxrule=0.2mm,
attach boxed title to top left =
    {xshift=1cm,yshift*=1mm-\tcboxedtitleheight},
    varwidth boxed title*=-3cm,
    boxed title style={frame code={
                        \path[fill=tcbcol@back!30!black]
                            ([yshift=-1mm,xshift=-1mm]frame.north west)  
                            arc[start angle=0,end angle=180,radius=1mm]
                            ([yshift=-1mm,xshift=1mm]frame.north east)
                            arc[start angle=180,end angle=0,radius=1mm];
                        \path[left color=tcbcol@back!60!black,right color = tcbcol@back!60!black,
                            middle color = tcbcol@back!80!black]
                            ([xshift=-2mm]frame.north west) -- ([xshift=2mm]frame.north east)
                            [rounded corners=1mm]-- ([xshift=1mm,yshift=-1mm]frame.north east) 
                            -- (frame.south east) -- (frame.south west)
                            -- ([xshift=-1mm,yshift=-1mm]frame.north west)
                            [sharp corners]-- cycle;
                            },interior engine=empty,
                    },
fonttitle=\bfseries,
title={#2},#1}
...
\section{SomeTitleSection}

\begin{frame}{SomeTitleFrame)}

\begin{BoxRafa}[colbacktitle = green]{Title Box}
    Some text ...
\end{BoxRafa} %% This is line 90

\end{frame}
...
\end{document}

并发送此错误:
Erro_tcolorbox

有人知道我做错了什么吗???
我正在使用ShareLatex,是否需要添加另一个.cls.sty??

答案1

这是您项目的版本问题。Sharelatex 似乎根据您创建项目的时间选择 tex 版本 - 这意味着现有项目不会自动更新到当前版本。

在提出这个问题时,我在 Sharelatex 上创建了一个项目,证实了该错误:https://de.sharelatex.com/project/5733508c3cc17735563bcf58从日志文件可以看出,它正在使用texlive2015

今天我再次尝试了一个新项目(https://de.sharelatex.com/project/594404eb58cdd50519fe7002) 并且运行良好,而旧项目仍然出现错误。从日志文件来看,新项目现在正在使用texlive2016

在此处输入图片描述

相关内容