I'm working on a "Novel" template with some custom pages (\titlepage and a custom Copyright page). Now I'm looking to customize fonts, etc. of a specific chapter based on the chapter title.
More specifically I'd like something along the lines of:
Code: Select all
if \@chapapp{About the Author} then \small
I'm actually creating a LaTeX template for use with Pandoc and Pandoc puts all of the content in with it's own
Code: Select all
$body$
As an example, I'm importing my content using a custom macro \body, the contents of which are 7 chapters. I'd like to change the font family, font size, and margins of the contents of "Chapter 6: About the Author" but not affect the other chapters. Is this possible given my limitations?