Questions tagged [vignette]

Vignette is software that offers content management, portal, collaboration, document management, and records management.

Vignette Corporation is a company headquartered in Austin, Texas, that offers a suite of content management, portal, collaboration, document management, and records management software.

Vignette's Platform consists of several suites of products allowing non-technical business users to create, edit and track content through workflows and publish this content through Web or portal sites.

120 questions
4
votes
1 answer

Does the SVG filter feFlood 'flood-color' property support gradient as input?

I am experimenting with SVG filters while trying to create a vignette effect. I've found a snippet in an old repo where the author did it like this, but feFlood doesn't pick up the filter for me. I tried flood-color="url(#gradient_toaster)" too but…
Edmond Tamas
  • 3,148
  • 9
  • 44
  • 89
4
votes
0 answers

knitr does not build vignette

I am writing a package vignette with Rmarkdown. I tried to follow all the tuto from Hadley, Yihui, Rstudio cheat sheet... but I still don't manage to embed the vignette correctly. For now I have a .Rmd file which compiles fine by pressing Rstudio…
ClementWalter
  • 4,814
  • 1
  • 32
  • 54
4
votes
1 answer

VignetteBuilder entry forcing "prebuild" of index when releasing R package to CRAN

I am building a new R package. I have the same problem given here. I have also gone through the links suggested. But I keep getting rejections because the note says "Package has a VignetteBuilder field but no prebuilt vignette index. So…
4
votes
0 answers

.rda object not recognized in R vignette

I am creating an R package, and have a graph.rda file inside my data folder. In RStudio in the .rmd vignette file, I read the data in: data(graph) head(graph) but when I "Knit HTML" the .rmd vignette file, I get an error on these above two lines…
user1830307
3
votes
1 answer

how to list vignettes in a package in a README or related

In several packages, most recently the matlib package on github, https://github.com/friendly/matlib, I have a README.{md,Rmd} file that says something like A small collection of vignettes is now available. Use browseVignettes("matlib") to see…
user101089
  • 3,756
  • 1
  • 26
  • 53
3
votes
1 answer

R package vignettes

I am a little confused as to why there are multiple possible locations for "vignettes" in an R package. I don't understand which locations are used for what and when. For example: devtools::use_vignettes() creates a vignettes folder under the root…
andy
  • 185
  • 9
3
votes
1 answer

How to include static Vignettes in R Package using R.rsp

I would like to include static vignettes in my R package that will show up for users using the R function browseVignettes(). I need the vignettes to be static because the vignettes take too long to build, causing me to fail CRAN checks on…
acn
  • 65
  • 1
  • 5
3
votes
1 answer

How to put a link to another vignette in the same R package in a vignette

I have a package on Bioconductor and I'm in the process of adding a second vignette to it. I want to link the second vignette to the first vignette, as one vignette is on the general workflow of the package and the second is on fine parameter…
3
votes
0 answers

How to resolve NOTE in `R CMD check` when include static PDF file in vignette?

I wish to include a static PDF file in vignette of my R package biglasso. I followed the instruction here and here. However when I run R CMD check, there is always a NOTE saying: Vignette sources in 'inst/doc' with no 'vignettes' directory: …
SixSigma
  • 2,808
  • 2
  • 18
  • 21
3
votes
1 answer

best way to link to a vignette from manual in an R package

I'm developing an R package, and I'm trying to make a link from the manual of the package to its vignette (a pdf). I've make this in the R function code, and it works: \link[=../doc/package.pdf]{package's User Manual} The problem is that the…
circulosmeos
  • 424
  • 1
  • 6
  • 19
3
votes
1 answer

R package warning: Files in the 'vignettes' directory newer than all files in 'inst/doc'

In an R package I have two legacy Sweave vignettes as .Rnw files. When I check the package locally (in R Studio: Build -> Check), there are no errors, or warnings, and the same thing goes when my package is checked on R-Forge using R version 3.3.1…
user101089
  • 3,756
  • 1
  • 26
  • 53
3
votes
1 answer

showing vignettes link upon building and reloading an R package

I have created a vigentte folder for an R package I am developing by running the code devtools::use_vignette("my-vignette"). I am using Rmarkdown and knitr packages. When I build & reload the package, I don't get a hyperlink for the title of the…
daragh
  • 173
  • 1
  • 11
3
votes
0 answers

How to include a large data file in an R package to speed up R CMD check

I am preparing an R package for submission to CRAN that includes two demos and a vignette (that essentially explains the two demos). One demo runs relatively quickly, the other takes quite some time (more than 30 minutes). To speed up the demo and…
jbryer
  • 1,747
  • 3
  • 16
  • 29
2
votes
1 answer

How to have `pkgdown` use figure numbers and cross-references in vignettes?

I've created several vignettes for a package, with figures I want to reference in the text. Using the template for a .Rmd vignette, I can do this by using bookdown::html_document2 as follows in my yaml header: output: bookdown::html_document2: …
user101089
  • 3,756
  • 1
  • 26
  • 53
2
votes
0 answers

Bibliography Style Vignette in R

I am developing vignette for a package in r and wish to include some citations in the document. I want the citations to look like this `Author (year) unfortunately what I have is (Author year) --- title: "MNP: My New Package" output:…
Daniel James
  • 1,381
  • 1
  • 10
  • 28