As of title, I need to increase MathJax's font size globally for my Shiny app. I tried as written in the answer to this question, so I put
tags$head(
tags$style(
HTML(
".MathJax {
font-size: 2em;
}"
)
)
)
inside my ui
's fluidPage
, but that doesn't seem to work.
I reckon that I could also write \\large{...}
for each piece of MathJax code, but my app has a lot of formulas and that would be very expensive.
Any ideas?