I am desperately trying to format an inline equation that contains a hat for estimation. It works when I create a pdf output, but not when I create a learnr shiny prerendered page.
Any idea how to fix this would be appreciated. I tried with all kind of different {}, which seems to have no effect.
Works:
---
title: "Text"
output: pdf_document
---
We estimate the mean $\hat{\mu}$.
Does not work:
---
title: "Text"
output:
learnr::tutorial:
progressive: true
allow_skip: true
runtime: shiny_prerendered
---
We estimate the mean $\hat{\mu}$.