-
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.
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]>
- Loading branch information
Showing
8 changed files
with
353 additions
and
22 deletions.
There are no files selected for viewing
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: | ||
|
@@ -39,4 +43,4 @@ Depends: | |
VignetteBuilder: knitr | ||
BugReports: https://github.com/ropensci/RefManageR/issues | ||
URL: https://github.com/ropensci/RefManageR/ | ||
RoxygenNote: 7.2.1 | ||
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
Oops, something went wrong.