Welcome to the Power Users community on Codidact!
Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.
Post History
If ones uses RStudio to convert a rmarkdown file to pdf, RStudio will call pandoc with arguments like this: /opt/homebrew/bin/pandoc +RTS -K512m -RTS Untitled.knit.md --to beamer --from markdown+a...
#2: Post edited
If ones uses RStudio to convert an rmarkdown file to pdf, RStudio will call pandoc with arguments like this:- ```
- /opt/homebrew/bin/pandoc +RTS -K512m -RTS Untitled.knit.md --to beamer --from markdown+autolink_bare_uris+tex_math_single_backslash --output Untitled.tex --lua-filter /Library/Frameworks/R.framework/Versions/4.1-arm64/Resources/library/rmarkdown/rmarkdown/lua/pagebreak.lua --lua-filter /Library/Frameworks/R.framework/Versions/4.1-arm64/Resources/library/rmarkdown/rmarkdown/lua/latex-div.lua --highlight-style tango --pdf-engine pdflatex --embed-resources --standalone
- ```
- Is there an environment variable or setting which can be used to add the `--verbose` option to this call?
I'm aware that one can set pandoc arguments within the yaml header of an rmarkdown file, but I'm looking for a way to automatically invoke the verbose option for all files.- ---
- RStudio version: 2021.09.0+351
- If ones uses RStudio to convert a rmarkdown file to pdf, RStudio will call pandoc with arguments like this:
- ```
- /opt/homebrew/bin/pandoc +RTS -K512m -RTS Untitled.knit.md --to beamer --from markdown+autolink_bare_uris+tex_math_single_backslash --output Untitled.tex --lua-filter /Library/Frameworks/R.framework/Versions/4.1-arm64/Resources/library/rmarkdown/rmarkdown/lua/pagebreak.lua --lua-filter /Library/Frameworks/R.framework/Versions/4.1-arm64/Resources/library/rmarkdown/rmarkdown/lua/latex-div.lua --highlight-style tango --pdf-engine pdflatex --embed-resources --standalone
- ```
- Is there an environment variable or setting which can be used to add the `--verbose` option to this call?
- I'm aware that one can set pandoc arguments within the yaml header of a rmarkdown file, but I'm looking for a way to automatically invoke the verbose option for all files.
- ---
- RStudio version: 2021.09.0+351
#1: Initial revision
Adding option to pandoc call from RStudio
If ones uses RStudio to convert an rmarkdown file to pdf, RStudio will call pandoc with arguments like this: ``` /opt/homebrew/bin/pandoc +RTS -K512m -RTS Untitled.knit.md --to beamer --from markdown+autolink_bare_uris+tex_math_single_backslash --output Untitled.tex --lua-filter /Library/Frameworks/R.framework/Versions/4.1-arm64/Resources/library/rmarkdown/rmarkdown/lua/pagebreak.lua --lua-filter /Library/Frameworks/R.framework/Versions/4.1-arm64/Resources/library/rmarkdown/rmarkdown/lua/latex-div.lua --highlight-style tango --pdf-engine pdflatex --embed-resources --standalone ``` Is there an environment variable or setting which can be used to add the `--verbose` option to this call? I'm aware that one can set pandoc arguments within the yaml header of an rmarkdown file, but I'm looking for a way to automatically invoke the verbose option for all files. --- RStudio version: 2021.09.0+351