매뉴얼에 있는 이 간단한 예제를 실행하려고 하면 다음과 같습니다.
\documentclass{report}
\begin{document}
\tcbset{frame style={top color=red!20!white,
bottom color=red!20!white!75!black},
fonttitle=\bfseries,coltitle=black}
\begin{tcolorbox}[enhanced,title=My title,interior hidden]
This is a \textbf{tcolorbox}.
\tcblower
This is the lower part.
\end{tcolorbox}
\end{document}
이상한 오류가 발생합니다.
! Package pgfkeys Error: I do not know the key '/tcb/frame style', to which you
passed 'top color=red!20!white, bottom color=red!20!white!75!black', and I am
going to ignore it. Perhaps you misspelled it.
See the pgfkeys package documentation for explanation.
Type H <return> for immediate help.
...
l.82 fonttitle=\bfseries,coltitle=black}
-------------------------------------------------------------------------------------------------
Stack Exchange 및 기타 포럼에서 문제가 의 오래된 버전이라는 내용을 읽었 지만 및 의 tcolorbox
최신 버전을 실행하고 있습니다 . 여기에 로그 파일의 삽입 내용이 있습니다.tcolorbox
PGF
Package: tcolorbox 2015/03/16 version 3.50 text color boxes
Package: pgf 2013/12/18 v3.0.0 (rcs-revision 1.14)
누구든지 문제에 대해 밝힐 수 있습니까?
답변1
frame style
운동하려면 적절한 라이브러리를 로드해야 합니다 . 여기있어 skins
. 확실하지 않은 경우 most
또는 many
옵션을 추가할 수 있습니다.tcolorbox
\documentclass{report}
\usepackage[skins]{tcolorbox}
%\usepackage[most]{tcolorbox}
\begin{document}
\tcbset{frame style={top color=red!20!white,
bottom color=red!20!white!75!black},
fonttitle=\bfseries,coltitle=black}
\begin{tcolorbox}[enhanced,title=My title,interior hidden]
This is a \textbf{tcolorbox}.
\tcblower
This is the lower part.
\end{tcolorbox}
\end{document}