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
2
votes
0 answers

Making R package vignettes discoverable by browseVignettes

I'm using Rstudio and devtools to build vignettes for an R packge. All vignettes are in the /vignettes directory. However, when I run R CMD check I get a warning: > checking files in 'vignettes' ... WARNING Files in the 'vignettes' directory but…
zdebruine
  • 3,687
  • 6
  • 31
  • 50
2
votes
1 answer

Retro, Lomo, Vignette filter in C/C++?

I am trying to apply image filtering to images, like lomo, retro, vignette. Can anyone show me some sample codes in C / C++? Or is there any ready-to-use libraries implementing image filtering? Thanks
bitbybit
  • 579
  • 1
  • 6
  • 16
2
votes
0 answers

Equation numbering in R package vignette?

What is the idiomatic way to include dynamically numbered equations in the vignette for an R package? I see that there are options with pandoc-crossref and bookdown. I created my vignette using usethis::use_vignette() and trying to find a…
Michael Roswell
  • 1,300
  • 12
  • 31
2
votes
1 answer

Build a vignette for an R package only 1 time

I am developing a package on 2 separate computers in a repo path that are not identical. When I call devtools::document() and pkgdown::build_site(), I noticed that the entire vignette is re-rendered. The problem is that depending on the machine, the…
MeeraWhy
  • 93
  • 6
2
votes
1 answer

R: How to include static pdf in vignette for CRAN?

I tried to follow the instructions in https://cran.r-project.org/web/packages/R.rsp/vignettes/R_packages-Static_PDF_and_HTML_vignettes.pdf which shows how to include static pdf in vignette for cran. However, after following the instructions and…
xiaodai
  • 14,889
  • 18
  • 76
  • 140
2
votes
1 answer

How to embed an rgl snapshot in Rmarkdown package vignette

I created an R vignette for my package. This vignette embed an interactive rgl figure with webGL. --- title: "title" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{title} %\VignetteEngine{knitr::rmarkdown} …
JRR
  • 3,024
  • 2
  • 13
  • 37
2
votes
1 answer

Vignettes that generate then embed external files: or, best practices for html widgets in vignettes

I just submitted drake 4.0.0 to CRAN, and the vignettes did not come out properly. To include visNetwork widgets, I used code chunks to write external HTML files and then iframe tags to embed the HTML back into the vignettes. (Self-contained…
landau
  • 5,636
  • 1
  • 22
  • 50
2
votes
1 answer

Leftovers from knitr

I am using knitr to write a vignette for my package. In R CMD CHECK I got the following NOTE: The following directories look like leftovers from 'knitr' ‘cache’, ‘figure’ These are indeed directories created by knitr. But I don't understand how I…
ClementWalter
  • 4,814
  • 1
  • 32
  • 54
2
votes
0 answers

“R CMD build” fails with “Error in texi2dvi”

I'm having new problems with the “sos” package that has been on CRAN since 2009. One problem is that “R CMD build sos” fails as follows: >* creating vignettes ... ERROR > >Error in texi2dvi(file = file, pdf = TRUE, > clean = clean,…
2
votes
1 answer

Error: processing vignette ...: 'what' must be a character string or a function

I'm trying to tie up the loose ends of a package, and I'm pretty much down to just the vignettes. I have four vignettes in the package. For references we'll call them Vignettes A - D. When I run R CMD check, I get the error Error: processing…
Benjamin
  • 16,897
  • 6
  • 45
  • 65
2
votes
0 answers

How to make a vignette appear in an R package

I've spent some time making an informative vignette for an R package: https://github.com/Robinlovelace/stplanr/blob/master/vignettes/introducing-stplanr.Rmd It compiles fine in all the tests, but does not appear when I download…
RobinLovelace
  • 4,799
  • 6
  • 29
  • 40
2
votes
1 answer

Getting portletSessionScope attributes in a JSR 286 Portlet

I am working on a JSR 286 Portlet (Portlet spec 2.0). I have some values I am trying to set on the JSP, which I am setting in my Java code via session.setAttribute(). However, I cannot seem to be able to get the attribute back out of the…
CodeChimp
  • 8,016
  • 5
  • 41
  • 79
2
votes
0 answers

Simulate user input in R for readline() on a Sweave tex document

I'm writing a vignette documentation for an R package, i.e. using Sweave to generate a tex file (and finally a PDF). I want to document a function that requests to the user some input in the console (standard input). To simplify the function…
WoDoSc
  • 2,598
  • 1
  • 13
  • 26
2
votes
1 answer

R: How to tell which packages in a Task View have associated vignettes or demos

Without installing the packages, is there a quick way to find out which packages in a given Task View have vignettes or demos associated with them? I've figured out how to tell which packages are in a given Task View from R: library(ctv) # get all…
Jota
  • 17,281
  • 7
  • 63
  • 93
2
votes
0 answers

Error creating R 3.0.1 package "Vignette product ‘Sample.tex’ does not have a known filename extension (‘NA’)"

I'm trying to build my own custom R package under R 3.0.1. This package builds fine in previous versions of R. It works successfully except I'm getting an error creating the vignette. I have a Sample.Rnw in my inst/doc directory that includes some…
Dave DeCaprio
  • 2,051
  • 17
  • 31