Displaying 7 results from an estimated 7 matches for "vignettepackag".
Did you mean:
vignettepackage
2014 Aug 25
1
vignette index going AWOL
...to PDF. mosaic also uses R.rsp to include static PDFs.
$ grep -i vig mosaic/DESCRIPTION
VignetteBuilder: knitr, R.rsp
[09:22][rpruim at Mac21521:~/projects/github]
$ grep -i vig fastR/DESCRIPTION
VignetteBuilder: knitr
$ grep Vig mosaic/vignettes/*Rnw
%\VignetteIndexEntry{mosaic resources}
%\VignettePackage{mosaic}
%\VignetteKeywords{mosaic, vignettes, resources, references}
%\VignetteEngine{knitr::knitr}
$ grep Vig fastR/vignettes/*Rnw
fastR/vignettes/Errata.Rnw:%\VignetteEngine{knitr::knitr}
fastR/vignettes/Errata.Rnw:%\VignetteIndexEntry{Errata}
fastR/vignettes/Errata.Rnw:%\VignettePackage{fas...
2012 Jul 03
2
Problem in vignette packaging of Sweave in utils package
...t; library(help=utils)
does not refer to any vignettes.
The vignette does not appear in the main page for utils in help.start().
I checked the source code for the Sweave vignette, but I don't see
anything wrong. It has all of the required elements:
%\VignetteIndexEntry{Sweave User Manual}
%\VignettePackage{utils}
%\VignetteDepends{tools}
%\VignetteDepends{datasets}
%\VignetteDepends{stats}
Am I accessing it incorrectly, or is there something wrong in my
install of R-2.15.1?
> sessionInfo()
R version 2.15.1 (2012-06-22)
Platform: x86_64-pc-linux-gnu (64-bit)
locale:
[1] LC_CTYPE=en_US.UTF-8...
2008 May 27
0
vignette help
Could someone please point me to where information about
the two entries %\VignetteDepends{} and %\VignettePackage{}
are documented?
I'm getting an error with %\VignetteDepends{} with my
package name in braces. Looking at the vignettes on my
system, some include the package name and some don't.
Should it be there? If so, why might I be getting an error
doing so?
$ R CMD check SuperCurve
* checking fo...
2009 Feb 07
1
vignettes are installed but not viewable?
...lling the
package (in my personal R library location) doing
vignette('rcdk')
says
Warning message:
vignette 'rcdk' *not* found
But I can see the PDF file located under rcdk/doc in the R library
directory. The header of the Rnw file is
% \VignetteIndexEntry{rcdk Tutorial}
% \VignettePackage{rcdk}
% \VignetteKeywords{}
I am totally stumped by this - could anybody shed some light on what
I'm doing wrong?
Thanks,
-------------------------------------------------------------------
Rajarshi Guha <rguha at indiana.edu>
GPG Fingerprint: D070 5427 CC5B 7938 929C DD13 66A1 92...
2007 Jul 18
1
possible bug R CMD check: No space(s) allowed after \VignetteDepends{}
...%+[[:space:]]*\\\\Vignette",
tag,"\\{([^}]*)\\}[[:space:]]*", sep = "")
Details:
The test package I'm using has only one vignette:
\documentclass[oneside,letterpaper,12pt]{book}
%\VignetteIndexEntry{some entry}
%\VignetteDepends{stats}
%\VignetteKeyWords{mymodel}
%\VignettePackage{testpkg}
\begin{document}
<<test>>=
print("test")
@
\end{document}
R CMD build, R CMD check and R CMD INSTALL run successfully.
If I add an extra space after %\VignetteDepends{stats} then "R CMD check"
fails
w5:falimadh [~/work/mypkg]> R CMD check testpkg
* ch...
2003 Dec 26
1
Problems converting output from Sweave to PDf
...help.
...
l.9 \begin
{document}
?
-------------- TEX FILE ------------------
% \VignetteIndexEntry{GeneSpring contents}
% \VignetteDepends{GeneSpring}
% \VignetteKeywords{Interface}
% \VignettePackage{GeneSpring}
\documentclass{article}
\usepackage{C:/PROGRA~1/SILICO~1/GENESP~1/data/rw1081/share/texmf/Sweave}
\begin{document}
\author{Thon de Boer}
\title{Using R with GeneSpring}
\maketitle
\copyright{2003 Silicon Genetics}
\section{Introduction}
This package contains a number of functio...
2010 Nov 16
1
Vignette Questions
...d in the R-extensions manual section "Writing package vignettes".
I have some questions with regards to that:
- would it be possible to include into the section "Writing package
vignettes" some hint that besides \VignetteIndexEntry also
\VignetteDepends{}
\VignetteKeywords{}
\VignettePackage{}
exist (and should be used)?
Also a link to the R-News Paper "Sweave, Part II: Package Vignettes" may
be very helpful.
- Is the documentation of these somewhere else where I didn't find it?
- Are there more such commands?
- Is there a way to ask R CMD check to check whether all...