ulyngs / oxforddown

Template for writing an Oxford University thesis in R Markdown; uses the OxThesis LaTeX template and was inspired by thesisdown.
https://ulyngs.github.io/oxforddown/
MIT License
220 stars 81 forks source link

Changing chapter title position #52

Closed ulyngs closed 2 years ago

ulyngs commented 2 years ago

From haohua:

Can I change the chapter title position from the "Top Right" corner with a big number, to the "Top Left" corner?

ulyngs commented 2 years ago

This is addressed in #8

Solution: add the following to template.tex after \usepackage{titlesec}:

\titleformat{\chapter}[display]
  { }
  {\flushleft { \fontsize{60}{60}\selectfont  \thechapter }} 
  {10 pt} % spacing before chapter title
  { \huge } % command after chapter number (this will make the chapter title size huge) 

This will give you

image