R/templates.R

Defines functions template

Documented in template

#	laTex template to warp around output of Latex method
template <- function() {
	file <- system.file("extdata", "template.tex", package = "vegsoup")
	con <- file(file)
		r <- readLines(con)
	close(con)
	return(r)
}

Try the vegsoup package in your browser

Any scripts or data that you put into this service are public.

vegsoup documentation built on Feb. 24, 2021, 3 a.m.