Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change font and point size in bookdown pdf?

I am writing a document with a strict requirement to use arial 12 point. I have modified my output yml in bookdown like this:

site: bookdown::bookdown_site
fontsize: 12pt
fontfamily: arial
documentclass: book
output: 
  bookdown::pdf_book:
    includes:
      in_header: preamble.tex
    keep_tex: yes
    toc_depth: 3
    toc_appendix: yes
clean: [packages.bib, bookdown.bbl]

but it has no effect on the output other than I was forced to install some extra font packages in MikTex package manager, but even after this was done, there was no change to the actual document output, yet the top of the _main.tex looks like this:

\documentclass[12pt,]{book}
\usepackage[]{arial}
\usepackage{amssymb,amsmath}

Why doesn't it honour my choice of font? I also tried Lato, a similar font, but the document always comes back with the default serif family font.

like image 313
julianhatwell Avatar asked Jun 19 '17 19:06

julianhatwell


1 Answers

Try adding the following lines to your preamble.tex:

\usepackage{fontspec}
\setmainfont{Arial}
like image 189
Martin Smith Avatar answered Oct 21 '22 01:10

Martin Smith