Theses, Books, Title pages ⇒ How do I change the font to Arial and size 12?
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
How do I change the font to Arial and size 12?
Kind regards and thanks, Chris
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
How do I change the font to Arial and size 12?
To use 12pt Arial change the first uncommented line in
main.tex
to:Code: Select all
\documentclass[12pt, a4paper, oneside]{Thesis}
\usepackage{fontspec}
\setmainfont{Arial}
Code: Select all
\documentclass[12pt, a4paper, oneside]{Thesis}
\usepackage{helvet}
\renewcommand{\familydefault}{\sfdefault}
Vel