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. > > path <- system.file("rsp_examples", package="R.rsp") > print(path) [1] "D:/RCompile/CRANincoming/R-devel/lib/R.rsp/rsp_examples" > print(dir(path=path)) [1] "LoremIpsum.bib" [2] "LoremIpsum.tex.rsp" [3] "R_packages-Static_PDF_and_HTML_vignettes.pdf.asis.rsp" [4] "R_packages-Static_PDF_and_HTML_vignettes.tex.rsp" [5] "favicon.md.rsp" > > args <- rargs(file="LoremIpsum.tex.rsp", path=path) > print(args) 'twocolumn' [logical]: Default: 'FALSE' Specifies whether a two- or one-column layout should be used. > str(args) Classes 'RspArguments' and 'data.frame': 1 obs. of 4 variables: $ name : chr "twocolumn" $ type : chr "logical" $ default : logi FALSE $ description: chr "Specifies whether a two- or one-column layout should be used." > > > proc.time() user system elapsed 0.45 0.12 0.54