Ao escrever um pacote comecei a usar tcolorbox
sua documentation
biblioteca. Encontrei as chaves doc head command
etc. e comecei a personalizar. Mas há fortes limitações para isso, porque basicamente não consigo usar os enhanced
recursos. O motivo (código do pacote):
\newtcolorbox{tcb@doc@head}[1]{blank,colback=white,colframe=white,
code={\tcbdimto\tcb@temp@grow@left{-\kvtcb@doc@indentleft}%
\tcbdimto\tcb@temp@grow@right{-\kvtcb@doc@indentright}},
grow to left by=\tcb@temp@grow@left,%
grow to right by=\tcb@temp@grow@right,
sidebyside,sidebyside align=top,
sidebyside gap=-\tcb@w@upper@real,
phantom=\phantomsection,%
enlarge bottom by=-0.2\baselineskip,#1}
Contém a opção blank
que desativa todos os desenhos. Para fins de personalização, gostaria de removê-lo. Eu realmente preciso redefinir todo o comando ou existe alguma maneira fácil?
MWE:
\documentclass{article}
\usepackage{tcolorbox}
\tcbuselibrary{documentation}
\tcbset{
doc head command={colback=black} % disable blank here for the fancy stuff
}
\begin{document}
\begin{docCommand}{examplecommand}
Test
\end{docCommand}
\end{document}
Responder1
A maneira mais fácil é dizer \tcbset{blank/.style={}}
depois de carregar a documentation
biblioteca, mas isso pode quebrar outros tcolorbox
ambientes (sua aparência mudaria se blank
fosse usada lá).
Outra solução é definir noblank
o que revoga parcialmente as definições blank
(veja o arquivo tcbskins.code.tex
de configurações), infelizmente, algumas das opções devem ser copiadas e alteradas manualmente.
\documentclass{article}
\usepackage{tcolorbox}
\tcbuselibrary{documentation}
% From tcbskins.code.tex
% blank/.style={enhanced,frame hidden,interior hidden,segmentation hidden,%
% arc=0pt,outer arc=0pt,boxsep=0pt,top=0pt,bottom=0pt,left=0pt,right=0pt,boxrule=0pt,%
% bottomtitle=6pt,middle=3pt}}
\tcbset{
noblank/.style={enhanced,frame style={draw,fill=tcbcol@frame}, interior style={draw,fill=tcbcol@back}, segmentation hidden,sharp corners,
%boxrule=1pt, % Change at will
%boxsep=1pt,
}
}
\tcbset{
doc head command={colback=black,noblank} % disable blank here for the fancy stuff
}
\begin{document}
\begin{docCommand}{examplecommand}{}
Test
\end{docCommand}
\end{document}