https://github.com/hofnerb/papeR
A toolbox for writing Sweave or other LaTeX-based papers and reports and to prettify the output of various estimated models.
https://github.com/hofnerb/papeR
cran knitr latex r-language r-package reporting reproducible reproducible-research sweave
Last synced: 4 months ago
JSON representation
A toolbox for writing Sweave or other LaTeX-based papers and reports and to prettify the output of various estimated models.
- Host: GitHub
- URL: https://github.com/hofnerb/papeR
- Owner: hofnerb
- Created: 2014-11-27T17:21:01.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-03-22T15:43:55.000Z (about 4 years ago)
- Last Synced: 2024-09-25T23:29:10.969Z (7 months ago)
- Topics: cran, knitr, latex, r-language, r-package, reporting, reproducible, reproducible-research, sweave
- Language: R
- Homepage: http://cran.r-project.org/package=papeR
- Size: 387 KB
- Stars: 29
- Watchers: 8
- Forks: 4
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog
Awesome Lists containing this project
- jimsghstars - hofnerb/papeR - A toolbox for writing Sweave or other LaTeX-based papers and reports and to prettify the output of various estimated models. (R)
README
papeR
=====[](https://travis-ci.org/hofnerb/papeR)
[](https://ci.appveyor.com/project/hofnerb/paper/branch/master)
[](https://coveralls.io/github/hofnerb/papeR?branch=master)
[](https://cran.r-project.org/package=papeR)
[](https://cran.r-project.org/package=papeR)**papeR** provides a toolbox for writing knitr, Sweave or other LaTeX- or markdown-based papers and reports and to prettify the output of various estimated models.
## Installation:
- Current version (from CRAN):
```r
install.packages("papeR")
```- Latest development version from GitHub:
```r
library("devtools")
install_github("hofnerb/papeR")
```- To be able to use the `install_github()` command, one needs to install `devtools` first:
```r
install.packages("devtools")
```## Using papeR
Tutorials on how to use **papeR** can be found on CRAN:
- [Using papeR with Markdown](https://cran.r-project.org/package=papeR/vignettes/papeR_introduction.html)
- [Using papeR with LaTeX](https://cran.r-project.org/package=papeR/vignettes/papeR_with_latex.pdf)or within R via
```r
## introduction to papeR (in combination with Markdown)
vignette("papeR_introduction", package = "papeR")
## introduction to papeR with LaTeX
vignette("papeR_with_latex", package = "papeR")
```