accessr
Command Line Tools to Produce Accessible Documents using R markdown
Science Score: 13.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (17.6%) to scientific vocabulary
Keywords
accessibility
command-line
digital-accessibility
rmarkdown
rmarkdown-document
rmarkdown-slide
Last synced: 6 months ago
·
JSON representation
Repository
Command Line Tools to Produce Accessible Documents using R markdown
Basic Info
- Host: GitHub
- Owner: paulnorthrop
- License: gpl-3.0
- Language: R
- Default Branch: main
- Homepage: https://paulnorthrop.github.io/accessr/
- Size: 1.12 MB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 2
Topics
accessibility
command-line
digital-accessibility
rmarkdown
rmarkdown-document
rmarkdown-slide
Created over 4 years ago
· Last pushed 11 months ago
Metadata Files
Readme
Changelog
License
README.Rmd
---
output: github_document
---
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
# accessr
[](https://ci.appveyor.com/project/paulnorthrop/accessr)
[](https://github.com/paulnorthrop/accessr/actions/workflows/R-CMD-check.yaml)
[](https://app.codecov.io/github/paulnorthrop/accessr?branch=master)
[](https://cran.r-project.org/package=accessr)
[](https://cran.r-project.org/package=accessr)
[](https://cran.r-project.org/package=accessr)
## Command Line Tools to Produce Accessible Documents using R Markdown
This package provides functions to produce accessible html slides, html, Word and PDF documents from input R markdown files. Accessible PDF files are produced only on a Windows Operating System. One aspect of accessibility is providing headings that are recognised by a screen reader, providing a navigational tool for a blind or partially-sighted person. A main aim is to enable documents of different formats to be produced from a **single** R markdown source file using one function call. The `render()` function from the [rmarkdown package](https://cran.r-project.org/package=rmarkdown) is used to render R markdown files. A zip file containing multiple files can be produced from one function call. A user-supplied template Word document can be used to determine the formatting of the output Word document. Accessible PDF files are produced from Word documents using [OfficeToPDF](https://github.com/cognidox/OfficeToPDF). A convenience function, `install_otp()` is provided to install this software. The option to print html output to (non-accessible) PDF files is also available.
**Additional features**. When the output format is a Word document the function `ext_img()` enables the knitr chunk options `out.width` and/or `out.height` to be used to set the dimensions of a figure (R-generated or external image). Passing (the default) `slide_level = 1` to `rmd2ioslides()` enables the use of the level one header # to separate slides in an ioslides presentation without producing grey segue slides.
## The main functions
The main functions are:
* `rmd2word()`: create word documents and accessible PDF files.
* `rmd2ioslides()`, `rmd2slidy()`: create ioslides/slidy presentations and perhaps print to (non-accessible) PDF documents.
* `rmd2html()`: create html documents and perhaps print to (non-accessible) PDF documents.
* `rmd2many()`: create HTML slides, PDF slides, Word and PDF documents from a single R markdown file.
### Rmd to Word to PDF
Suppose that in your current working directory you have the R markdown files `file1.Rmd` and `file2.Rmd`, a template Word file `your_template.docx` and that the file `OfficeToPDF.exe` downloaded from [OfficeToPDF releases](https://github.com/cognidox/OfficeToPDF/releases) can be accessed. The following code creates files `file1.docx`, `file2.docx`, `file1.pdf` and `file2.pdf` in your working directory and, unless you supply `zip = FALSE`, a zip file `accessr_word.zip` containing the two PDF files will also be created.
```{r, eval = FALSE}
rmd2word(c("file1", "file2"), doc = "your_template.docx")
```
A path to the Word template document can be provided using the `doc` argument. If `doc` is not provided then a default template is used. See `?rmd2word` for details. If you include figures then the `knitr` chunk option `fig.alt` can be used to set the alternative text. You may find you need to enclose LaTeX maths environments in \$\$ ... \$\$ when typesetting mathematics.
A path to `OfficeToPDF.exe` can be provided using an argument `dir`. If `dir` is missing then `rmd2word` will look for OfficeToPDF.exe in the default installation directory `dir` of `install_otp`.
### Rmd to ioslides
Similarly, the function `rmd2ioslides` produces HTML [ioslides](https://bookdown.org/yihui/rmarkdown/ioslides-presentation.html) presentations.
```{r, eval = FALSE}
rmd2ioslides(c("file1", "file2"))
```
If the argument `pdf = TRUE` is supplied then the `chrome_print` function in the `pagedown` package is used to produce (non-accessible) PDF files from these slides. This requires a secure internet connection. See `?rmd2ioslides`.
`rmd2slidy` (see [slidy](https://bookdown.org/yihui/rmarkdown/slidy-presentation.html) presentations) and `rmd2html` work in a similar way.
## A basic example Rmd file
Executing the following code will copy the file `example.Rmd` to the working directory and create from it output as a Word document, an html document and ioslides and slidy presentations. In the working directory there will also be the files `example.docx`, `example.pdf` and `example.html`. The latter contains the slidy presentation because the final three calls each create `example.html`, which is overwritten.
```{r exampleRmd, eval = FALSE}
rmd_file <- system.file(package = "accessr", "examples", "example.Rmd")
file.copy(from = rmd_file, to = getwd())
rmd2word("example")
rmd2html("example")
rmd2ioslides("example")
rmd2slidy("example")
```
This example file includes examples of creating figures and tables and notes potential issues with typesetting mathematics when creating Word output. In particular, the `knitr` chunk options `fig.alt` and `fig.cap` can be used to create a separate alternative text and caption for a figure. It also features the use of an input list `params` of named parameters, with a component `hide` that can be used to hide selected parts of the output.
## Suggested workflow
I have used `rmd2ioslides` to create HTML lecture presentations and `rmd2word` to create accessible PDF document versions of these presentations for upload, pre- and post- lecture, to a Virtual Learning Environment (Moodle). The default setting of `rmd2many` produces these files and Word document with 18pt bold text. The latter may be particularly useful for some students. I use `params$hide` (see above) to hide selected content from the file that I share with the students prior to the lecture.
## Installation
To get the current released version from CRAN:
```{r installation, eval = FALSE}
install.packages("accessr")
```
Owner
- Name: Paul Northrop
- Login: paulnorthrop
- Kind: user
- Repositories: 17
- Profile: https://github.com/paulnorthrop
GitHub Events
Total
- Create event: 3
- Issues event: 1
- Release event: 3
- Issue comment event: 2
- Push event: 9
Last Year
- Create event: 3
- Issues event: 1
- Release event: 3
- Issue comment event: 2
- Push event: 9
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 1
- Total pull requests: 0
- Average time to close issues: 1 day
- Average time to close pull requests: N/A
- Total issue authors: 1
- Total pull request authors: 0
- Average comments per issue: 2.0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 1
- Pull requests: 0
- Average time to close issues: 1 day
- Average time to close pull requests: N/A
- Issue authors: 1
- Pull request authors: 0
- Average comments per issue: 2.0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- ABSOD (1)
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- cran 250 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 4
- Total maintainers: 1
cran.r-project.org: accessr
Command Line Tools to Produce Accessible Documents using 'R Markdown'
- Homepage: https://paulnorthrop.github.io/accessr/
- Documentation: http://cran.r-project.org/web/packages/accessr/accessr.pdf
- License: GPL (≥ 3)
-
Latest release: 1.1.3
published 11 months ago
Rankings
Dependent packages count: 27.8%
Forks count: 28.7%
Dependent repos count: 35.7%
Stargazers count: 35.8%
Average: 42.6%
Downloads: 84.9%
Maintainers (1)
Last synced:
6 months ago
Dependencies
DESCRIPTION
cran
- R >= 3.3.0 depends
- rmarkdown * imports
- dplyr * suggests
- flextable * suggests
- huxtable * suggests
- jpeg * suggests
- knitr * suggests
- officedown * suggests
- officer * suggests
- pagedown * suggests
- png * suggests
- tools * suggests
- utils * suggests
- zip * suggests
.github/workflows/R-CMD-check.yaml
actions
- actions/checkout v3 composite
- r-lib/actions/check-r-package v2 composite
- r-lib/actions/setup-pandoc v2 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite