How to change font and point size in bookdown pdf?
Asked Answered
I

2

12

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.

Indicator answered 19/6, 2017 at 19:19 Comment(3)
it seems that the font size = 12 does change things, but there are only two possible font sizes, 12 and 'not 12'. If I had to produce a document with 14, 16, 20 etc, it would just revert to the smaller unknown font size.Indicator
Still can't see to change the font though. Very frustrating.Indicator
Have you tried adding \renewcommand{\familydefault}{\sfdefault} to preamble.tex? See also tex.stackexchange.com/questions/23957/….Bremer
S
3

Try adding the following lines to your preamble.tex:

\usepackage{fontspec}
\setmainfont{Arial}
Stowage answered 16/4, 2018 at 10:59 Comment(0)
B
0

The default article documentclass (but even the book one you selected) only supports 10, 11 and 12. If you want more choice you should use the KOMA equivalents.

Barrens answered 23/8, 2019 at 12:31 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.