Making an Rpresentation in Rstudio with knitr I have a slide with just one picture, which I want to fill out the whole screen/slide. How do I do that?
The second sli
knitr version: 1.16
RStudio version: 1.0.143
problem description: when knitr parses the R code, even if you set a custom css page width, the output an html file has a constant max-width: 940px;
knitr output :
max-width: 940px;
My css setting file
max-width: 2000px;
min-width: 700px;
knitr does recognise the custom css file, but it does not create an output according to my css settings. I know this because When I deliberately misspell the css file, knitr produces an error during output.
The solution that worked for me was to go to the file created by knitr and change by hand the max-width: 2000px; min-width: 700px;
Better solution would be of course to find the root of the problem in the knitr /pandoc program