Code Blocks (PDF): option to configure style and other things for float type codelisting
#7477
-
DescriptionHello I'm creating a template for my upcoming industry thesis & bachelor thesis. I've noticed, that the style of the float type Inside a config file, which is attached via \usepackage{floatrow}
\DeclareFloatStyle{MyListingStyle}
{
style=plaintop,
captionskip=1pt
} In the main Quarto-document right at the beginning of it, I update the style to my own one: % beginning of main qmd-document
\floatsetup[codelisting]{style=MyListingStyle}
% other content Is there an easier way to do this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
That's most likely the easiest way. Because you're making changes to the LaTeX rendering, you'll need to, eventually somewhere, make LaTeX changes. |
Beta Was this translation helpful? Give feedback.
That's most likely the easiest way. Because you're making changes to the LaTeX rendering, you'll need to, eventually somewhere, make LaTeX changes.