You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
thank you so much for writing this tutorial. It helped me to understand the Rmarkdown to Latex process.
I found something that may be useful in the ms.Rmd document.
This will not work in Windows: knitr::include_graphics(path = paste0(normalizePath(getwd()), "/Figs/plot.pdf")),
while this other, will: knitr::include_graphics(path = file.path(getwd(), "Figs/plot.pdf", fsep = .Platform$file.sep))
Hello,
thank you so much for writing this tutorial. It helped me to understand the Rmarkdown to Latex process.
I found something that may be useful in the ms.Rmd document.
This will not work in Windows:
knitr::include_graphics(path = paste0(normalizePath(getwd()), "/Figs/plot.pdf"))
,while this other, will:
knitr::include_graphics(path = file.path(getwd(), "Figs/plot.pdf", fsep = .Platform$file.sep))
knitr::include_graphics(path = file.path(getwd(), "/Figs/plot.pdf", fsep = .Platform$file.sep))
The text was updated successfully, but these errors were encountered: