Last active
April 26, 2017 14:04
-
-
Save DevWurm/21c1df27c52b5ff7325e29dddc32e646 to your computer and use it in GitHub Desktop.
Specify different font for section headings / title
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\usepackage{titlesec} | |
\usepackage{titling} | |
% Specify different font for section headings | |
\newfontfamily\headingfont[]{Roboto Bold} | |
\titleformat*{\section}{\LARGE\headingfont} | |
\titleformat*{\subsection}{\Large\headingfont} | |
\titleformat*{\subsubsection}{\large\headingfont} | |
\renewcommand{\maketitlehooka}{\headingfont} % font in \maketitle |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment