
텍스트가 포함된 투명한 상자를 만들어 보았습니다. 그래서 mybox라는 새로운 색상 상자를 만들었습니다.
\usepackage[many]{tcolorbox}
\usepackage{lmodern} % just to avoid font size warnings
\newtcolorbox{mybox}[1][]{
width=20cm,
arc=3mm,
% auto outer arc,
boxsep=0cm,
coltext = white,
colback = black,
toprule=0pt,
leftrule=0pt,
bottomrule=0pt,
rightrule=0pt,
colframe=black,
fontupper=\centering\fontsize{26pt}{26pt}\itshape,
breakable,
nobeforeafter,
enhanced jigsaw,
opacityframe=0.8,
opacityback=0.8
}
그런 다음 아래와 같이 텍스트를 삽입해 보았습니다. 하지만 이라고 말하는 오류가 발생합니다 \begin doesn't match its definition
. 이유를 찾을 수 없었습니다. 누군가 그 이유를 찾을 수 있습니까? 참고: 해당 오류로 인해 상자가 생성되지만 텍스트를 굵게 표시할 수 없습니다.
\title{
\begin{mybox}[]
\textbf{Voltage Regulation on a High PV penetrated Distributed System using Electric Vehicles}
\end{mybox}
}