Skip to content

Instantly share code, notes, and snippets.

@Pakillo
Created January 22, 2015 22:32
Show Gist options
  • Save Pakillo/8b46a48ea806572566d9 to your computer and use it in GitHub Desktop.
Save Pakillo/8b46a48ea806572566d9 to your computer and use it in GitHub Desktop.
Changing font sizes of HTML ouput in Rmarkdown
---
title: "Untitled"
author: "Francisco Rodriguez-Sanchez"
date: "Thursday, January 22, 2015"
output: html_document
---
<style type="text/css">
body, td {
font-size: 14px;
}
code.r{
font-size: 12px;
}
pre {
font-size: 12px
}
</style>
- body, td, is for normal text
- code.r is for r code
- pre is for output of knitr chunks
This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.
When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
```{r}
summary(cars)
```
You can also embed plots, for example:
```{r, echo=FALSE}
plot(cars)
```
Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.
@CyrusYip
Copy link

It works well. Thank you.

@Aphale5
Copy link

Aphale5 commented Jan 24, 2021

This works correctly, Thank you for the code!

@yinglia
Copy link

yinglia commented Oct 2, 2021

Thank you

@Quirinms
Copy link

This does not work for ioslides. Could you recommend alternatives for ioslides?

@JSARIASH
Copy link

Nice 👍

@reddylee
Copy link

reddylee commented Sep 1, 2022

How about the font style? Can change it? Many thanks.

@Pakillo
Copy link
Author

Pakillo commented Sep 2, 2022

Hi @reddylee

Yes, just add the font name in font-family. For example:

<style type="text/css">

body, td {
  font-family: Calibri;
  font-size: 12px;
}
code.r{
  font-size: 9px;
}
pre {
  font-size: 10px
}
</style>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment