search for: bibentry

Displaying 19 results from an estimated 19 matches for "bibentry".

2012 Aug 06
1
bibtex::read.bib -- extracting bibentry keys
I have two versions of a bibtex database which have gotten badly out of sync. I need to find find all the entries in bib2 which are not contained in bib1, according to their bibtex keys. But I can't figure out how to extract a list of the bibentry keys in these databases. A minor question: Is there someway to prevent read.bib from ignoring entries that do not contain all required fields? A suggestion: it would be nice if bibtex provided some extractor functions for bibentry fields. > bib1 <- read.bib("C:/localtexmf/bibtex/b...
2018 May 13
0
BUG: 'bibentry' methods change default bibstyle
Hi, Some 'bibentry' methods have the side effect of changing the default bibstyle. Background: tools::bibstyle() defines and registers bibtex styles for formatting 'bibentry' objects. It optionally (and by default) sets a default style. It is also used to get a particular style. The last feature of bib...
2011 Jan 07
1
print.citation, small bug?
Hi, I use Sweave extensively in my consulting work. When submitting reports to the scientists I work with I like to use the citation function to reference any packages I use, to give proper acknowledgement. I noted in the documentation that a citation inherits from bibentry, and indeed, > citr<- citation() > class(citr) [1] "citation" "bibentry" However, following this line I would assume citation should fully inherit the methods of bibentry. But that is not the case, > print(citr, style="latex") still gives style='citat...
2019 May 29
3
Making a package CITATION file from BibTeX
Dear Colleagues, I would like to provide a CITATION file for my package nat.nblast [1]. I have the correct citation in BibTeX format [2]. How can I convert this BibTeX to the format needed by R for a package CITATION file (I have a lot of other packages needing citations ...). I think what I need is the opposite of RefManageR::toBiblatex [3]. This seems like it should be a common need, so I
2014 May 22
1
citEntry handling of encoded URLs
...Adoi%2F10.1371%2Fjournal.pcbi.1003118}.> Warning message: In parse_Rd(Rd, encoding = encoding, fragment = fragment, ...) : <connection>:5: unexpected END_OF_INPUT ' ' A work-around is, apparently, to quote the %, \\%3A etc., but is this the intention? Also, citEntry points to bibentry points to *Entry Fields*, but the 'url' tag is not mentioned there, even though url appears in the examples; if the list of supported tags is not easy to enumerate, perhaps some insight can be provided at this point as to how the supported tags are determined? Thanks Martin Morgan --...
2019 May 29
0
Making a package CITATION file from BibTeX
...w can I convert this > BibTeX to the format needed by R for a package CITATION file (I have a > lot of other packages needing citations ...). (1) You can use read.bib() from the "bibtex" package to read the .bib file containing the relevant reference. (2) This gives you a "bibentry" object that can be turned into the R code generating it with format(..., style = "R") from the basic "utils" package. (3) Then you can writeLines() this R code on the console or writeLines(..., "CITATION") to a CITATION file. (4) Optionally you can also incl...
2011 Dec 16
2
R package BibTex entries: looking for a more general solution
Back in 2010 I raised this issue, and there was some discussion, https://stat.ethz.ch/pipermail/r-devel/2010-November/058987.html The goal, then, as now is to have a way to produce a bibtex-clean .bib file (i.e., not requiring manual editing except in unusual circumstances) reflecting installed packages for use in writing where one often needs/wants to cite all packages used in a given
2017 Apr 19
1
c documentation after change
In R 3.4.0 RC, argument list of 'c' as S4 generic function has become (x, ...) . However, "S4 methods" section in documentation of 'c' (c.Rd) is not updated yet. Also, in R 3.4.0 RC, 'c' method of class "Date" ('c.Date') is still not explicitly documented.
2015 Oct 07
2
authorship and citation
On 07/10/2015 1:39 PM, Tim Keitt wrote: > On Wed, Oct 7, 2015 at 11:29 AM, Spencer Graves <spencer.graves at prodsyse.com >> wrote: > >> Another example: The "Author" of the Ecdat package is Yves Croissant < >> yves.croissant at let.ish-lyon.cnrs.fr>. I'm the Maintainer. At some >> point, I may add my name to the list of Authors but I
2023 Apr 21
0
[Rd] R 4.3.0 is released
...factor and sort = TRUE now works regularly, fixing PR#17863 by Timothy Bates, thanks to the 'R Contributors' working group. * Printing 0-length objects of class "factor", "roman", "hexmode", "octmode", "person", "bibentry", or "citation" now prints something better, one of which fixes PR#18422, reported by Benjamin Feakins. * Sys.timezone() queries timedatectl only if systemd is loaded; addressing a report by Jan Gorecki in PR#17421. * The formula method of cor.test() had s...
2023 Apr 21
0
[Rd] R 4.3.0 is released
...factor and sort = TRUE now works regularly, fixing PR#17863 by Timothy Bates, thanks to the 'R Contributors' working group. * Printing 0-length objects of class "factor", "roman", "hexmode", "octmode", "person", "bibentry", or "citation" now prints something better, one of which fixes PR#18422, reported by Benjamin Feakins. * Sys.timezone() queries timedatectl only if systemd is loaded; addressing a report by Jan Gorecki in PR#17421. * The formula method of cor.test() had s...
2013 Apr 03
0
R 3.0.0 is released
...uoting. o as.tclObj() has been extended to handle raw vectors. Previously, it only worked in the other direction. (Contributed by Charlie Friedemann, PR#14939.) o New functions cite() and citeNatbib() have been added, to allow generation of in-text citations from "bibentry" objects. A cite() function may be added to bibstyle() environments. o A sort() method has been added for "bibentry" objects. o The bibstyle() function now defaults to setting the default bibliography style. The getBibstyle() function has been added to re...
2013 Apr 03
0
R 3.0.0 is released
...uoting. o as.tclObj() has been extended to handle raw vectors. Previously, it only worked in the other direction. (Contributed by Charlie Friedemann, PR#14939.) o New functions cite() and citeNatbib() have been added, to allow generation of in-text citations from "bibentry" objects. A cite() function may be added to bibstyle() environments. o A sort() method has been added for "bibentry" objects. o The bibstyle() function now defaults to setting the default bibliography style. The getBibstyle() function has been added to re...
2016 Sep 26
2
Undocumented 'use.names' argument to c()
By "an argument named 'use.names' is included for concatenation", I meant something like this, that someone might try. > c(as.Date("2016-01-01"), use.names=FALSE) use.names "2016-01-01" "1970-01-01" See, 'use.names' is in the output. That's precisely because 'c.Date' doesn't have 'use.names', so
2010 Oct 15
0
R 2.12.0 is released
...ge utils now uses a given/family scheme in preference to first/middle/last, is vectorized to handle an arbitrary number of persons, and gains a role argument to specify person roles using a controlled vocabulary (the MARC relator terms). ? Package utils adds a new "bibentry" class for representing and manipulating bibliographic information in enhanced BibTeX style, unifying and enhancing the previously existing mechanisms. ? A bibstyle() function has been added to the tools package with default JSS style for rendering "bibentry" o...
2010 Oct 15
0
R 2.12.0 is released
...ge utils now uses a given/family scheme in preference to first/middle/last, is vectorized to handle an arbitrary number of persons, and gains a role argument to specify person roles using a controlled vocabulary (the MARC relator terms). ? Package utils adds a new "bibentry" class for representing and manipulating bibliographic information in enhanced BibTeX style, unifying and enhancing the previously existing mechanisms. ? A bibstyle() function has been added to the tools package with default JSS style for rendering "bibentry" o...
2010 Nov 03
3
R package BibTex entries: looking for a more general solution
== Summary == * Problem: BibTeX entries extracted from R packages via citation() require too much manual editing to be of general use. * Proposal: Date: fields should be made mandatory in package DESCRIPTION files, perhaps beginning with warnings from R CMD check * Proposal: Package authors should be encouraged to use a (new) Contributors: field in the DESCRIPTION file rather than packing all
2012 Mar 30
0
R 2.15.0 is released
...o pdf() accepts forms like file = "|lpr" in the same way as postscript(). o pdf() accepts file = NULL. This means that the device does NOT create a PDF file (but it can still be queried, e.g., for font metric info). o format() (and hence print()) on "bibentry" objects now uses options("width") to set the output width. o legend() gains a text.font argument. (Suggested by Tim Paine, PR#14719.) o nchar() and nzchar() no longer accept factors (as integer vectors). (Wish of PR#6899.) o summary() behaves slight...
2012 Mar 30
0
R 2.15.0 is released
...o pdf() accepts forms like file = "|lpr" in the same way as postscript(). o pdf() accepts file = NULL. This means that the device does NOT create a PDF file (but it can still be queried, e.g., for font metric info). o format() (and hence print()) on "bibentry" objects now uses options("width") to set the output width. o legend() gains a text.font argument. (Suggested by Tim Paine, PR#14719.) o nchar() and nzchar() no longer accept factors (as integer vectors). (Wish of PR#6899.) o summary() behaves slight...