Hello. I'm in the middle of setting up a book in LaTeX. It's pretty elaborate and I had to move the rather lengthy preamble into a .sty file (apparently this is a "package," although I wouldn't call it one) to keep it from cluttering everything up. So far, it's all worked out pretty well.
But I have one problem: I need to shrink the font for \part down a little bit since the pages are 7in by 4.5in and the default seems to be set up for larger ones. Since the project is travel-related, I created a new command and called it "\continent":
Code: Select all
\newcommand{\continent}[1]{\part[#1]{\vspace{-0.5cm} #1 \thispagestyle{empty}}}
This removes the page numbers from the \part pages, which is also important. But I can only seem to change the font size for the actual part title, not where it goes "Part I," "Part II," etc. So, the result is it looks weird with the number several times bigger than the actual title. Of course, I can always set secnumdepth to -2, but this would get rid of the numbering, which I'd prefer to keep. How can I change the overall font size for the entire \part?