I am trying to compile a poster with posterdown. It was working about a week ago, and I tried removing the text I added in between to see if that was the issue, but it doesn't appear to be.
Below is the error message I get:
pandoc: Cannot decode byte '\x80': Data.Text.Internal.Encoding.decodeUtf8: Invalid UTF-8 stream
Error: pandoc document conversion failed with error 1
Closing browser
Cleaning browser working directory
Execution halted
And here is the beginning of my .Rmd:
---
title: <div style='margin:50px'> Our title</div>
font_family: Calibri
poster_height: "47.24in"
poster_width: "35.43in"
author:
- name: Author1 Name
- name: Author2 Name
- name: Author3 Name
column_numbers: 2
#logoleft_name: ./figures/phase.png
title_textsize: "78px"
author_textsize: "32px"
affiliation_textsize: "15px"
body_textsize: "40px"
output:
posterdown::posterdown_html:
self_contained: true
knit: pagedown::chrome_print
bibliography: packages.bib
---
\```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE, encoding = 'UTF-8')
\```
(Above, I do not truly have the "\" characters, I just added it to post the question to stack overflow.)
# Title1
The only special character I am using in the poster is the sign '%'.
Any idea? Thanks in advance for your help!