R Under development (unstable) (2024-01-28 r85838 ucrt) -- "Unsuffered Consequences" Copyright (C) 2024 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > library("R.rsp") R.rsp v0.46.0 successfully loaded. See ?R.rsp for help. > > cat("Tools supported by the package:\n") Tools supported by the package: > print(capabilitiesOf(R.rsp)) Ihre Berechtigungen reichen nicht aus, um diesen Vorgang auszuführen. asciidoc knitr latex markdown pandoc sweave FALSE TRUE TRUE TRUE TRUE TRUE Warning message: In system(cmd, intern = intern, wait = wait | intern, show.output.on.console = wait, : running command 'C:\Windows\system32\cmd.exe /c mklink /D "RtmpOKtj23" "D:/RCompile/CRANincoming/R-devel/lib/R.rsp/rsp_LoremIpsum"' had status 1 > > # Check capabilities one by one > for (what in c("asciidoc", "knitr", "markdown", "latex", "pandoc", "sweave", "unknown")) { + cat(sprintf(" - %s: %s\n", what, isCapableOf(R.rsp, what))) + } - asciidoc: FALSE - knitr: TRUE - markdown: TRUE - latex: TRUE - pandoc: TRUE - sweave: TRUE - unknown: FALSE > > proc.time() user system elapsed 1.34 10.32 22.00