-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve encoding non-ASCII characters to LaTeX in toBiblatex (#113)
* Remove appveyor CI Signed-off-by: Mathew W. McLean <[email protected]> * Avoid msg about page numbers in ReadPDFs for 1page PDFs * Always use pdfinfo to determine number of pages in each PDF in ReadPDFs even when use.metadata is FALSE * This avoids a message from pdftotext about incorrect pages * Refactor test-readPDF.R to make it clearer when tests are skipped if poppler is not installed Signed-off-by: Mathew W. McLean <[email protected]> * Fix pkg documentation for latest roxygen2 Signed-off-by: Mathew W. McLean <[email protected]> * Fixes for non-ASCII name list fields in toBiblatex and toBibtex * Add latexify() from dplR instead of tools::encoded_text_to_latex to improve conversion of non-ASCII characters to valid latex * Fixes #102, #105, #106 Signed-off-by: Mathew W. McLean <[email protected]> * Update documentation for latexify author Signed-off-by: Mathew W. McLean <[email protected]> * Add website to DESCRIPTION Signed-off-by: Mathew W. McLean <[email protected]> * Use default value for rettype in ReadPubMed * c.f. https://www.ncbi.nlm.nih.gov/books/NBK25499/table/chapter4.T._valid_values_of__retmode_and/ * Add mock response for one GetPubMedByID test Signed-off-by: Mathew W. McLean <[email protected]> * Add more sleep for PubMed/Entrez test Signed-off-by: Mathew W. McLean <[email protected]> --------- Signed-off-by: Mathew W. McLean <[email protected]>
- Loading branch information
Showing
16 changed files
with
449 additions
and
144 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
Package: RefManageR | ||
Version: 1.4.0 | ||
Version: 1.4.3 | ||
Title: Straightforward 'BibTeX' and 'BibLaTeX' Bibliography Management | ||
Authors@R: person(c("Mathew", "W."), "McLean", role = c("aut", "cre"), | ||
Authors@R: c(person(c("Mathew", "W."), "McLean", role = c("aut", "cre"), | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0002-7891-9645")) | ||
comment = c(ORCID = "0000-0002-7891-9645")), | ||
person("Andy", "Bunn", role = "ctb", | ||
email = "[email protected]", comment = "function latexify used by toBiblatex")) | ||
Maintainer: Mathew W. McLean <[email protected]> | ||
Description: Provides tools for importing and working with bibliographic | ||
references. It greatly enhances the 'bibentry' class by providing a class | ||
|
@@ -27,6 +29,8 @@ Imports: | |
httr, | ||
lubridate (>= 1.5.0), | ||
stringr, | ||
stringi, | ||
R.utils, | ||
methods, | ||
bibtex (>= 0.4.1) | ||
Suggests: | ||
|
@@ -38,5 +42,5 @@ Depends: | |
R (>= 3.0) | ||
VignetteBuilder: knitr | ||
BugReports: https://github.com/ropensci/RefManageR/issues | ||
URL: https://github.com/ropensci/RefManageR/ | ||
RoxygenNote: 7.2.1 | ||
URL: https://github.com/ropensci/RefManageR/, https://docs.ropensci.org/RefManageR/ | ||
RoxygenNote: 7.3.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.