[EMAIL PROTECTED] wrote:
Hello fellow Lyx'ers!
I'm relatively new in the Lyx/Latex realm, so this may be a a question
that someone with more experience will find easy to answer: How to
change the size of chapter titles? I'm using the book class, so
chapter titles appear in Huge\Bold fond. I would like to have them in
Large\normal font.
Use the titlesec package, whose documentation is here:
http://www.ctan.org/get/macros/latex/contrib/titlesec/titlesec.pdf
Try this in your preamble:
\usepackage{titlesec}
\titleformat*{\chapter}{\Large}
rh