乳胶朋友们,
我使用 tcolorbox,需要标题中的“空白字段”,然后我将手写到该字段中。
\documentclass[11pt]{report}
\usepackage{caption}
\usepackage{tikz}
\usepackage[many]{tcolorbox}
\tikzset{fancytitle/.style ={fill=red, text=white}}
\newtcolorbox
{mybox}[1]{tikznode boxed title,enhanced,attach boxed title to top center={yshift=-3mm,yshifttext=-1mm},boxed title style={size=small,colback=red},title={#1}}
\begin{document}
\begin{mybox}{Name} 1/ This is a \textbf{tcolorbox}.
\end{mybox}\
\begin{mybox}{} 2/ Need display field "Title box" to write
\end{mybox}
\begin{mybox}{\tiny .....} 3/ tiny point...\end{mybox}
\end{document}
2.如何在mybox中显示“Titel box”以及是否可以创建易于编写的“大框”。
我将使用不同的精美盒子来填写表格。
谢谢
答案1
我不确定我是否正确理解了你的问题。
那是你要的吗?
\documentclass[11pt]{report}
\usepackage{caption}
\usepackage{tikz}
\usepackage[many]{tcolorbox}
%\tikzset{fancytitle/.style ={fill=red, text=white}}
\tcbset{whitetitle/.style={boxed title style={size=small,colback=white}}}
\tcbset{redtitle/.style={boxed title style={size=small,colback=red}}}
\newtcolorbox
{mybox}[2][]{%tikznode boxed title,
#1,enhanced,attach boxed title to top center={yshift=-3mm,yshifttext=-1mm},title={#2}}
\begin{document}
\begin{mybox}[redtitle]{Name} 1/ This is a \textbf{tcolorbox}.
\end{mybox}\
\begin{mybox}[whitetitle]{\phantom{Title box}} 2/ Need display field "Title box" to write
\end{mybox}
\begin{mybox}[redtitle]{\tiny .....} 3/ tiny point...\end{mybox}
\end{document}