tudace / tuda_latex_templates

LaTeX Templates for TU Darmstadt
LaTeX Project Public License v1.3c
214 stars 71 forks source link

tudasciposter change boxstyle within document #449

Closed ChristophReich1996 closed 12 months ago

ChristophReich1996 commented 12 months ago

Is there a clean solution to change the boxstyle of the tudasciposter class within the document? In particular, I would like to use different colors for different blocks. Additionally, is there an option to utilize a different background color (e.g., gray)?

Thanks for the help!

TeXhackse commented 12 months ago

Sure, you can define custom styles. See the tcolorbox documentation for details on the color naming , e.g.

\tcbset{
    TUDa-other-colored/.style =
    {
        TUDa-colored,
        colbacktitle=black!10,
        colback=black!10,
    },
}
ChristophReich1996 commented 12 months ago

Amazing, this works perfectly! Thanks again for the great support :)