tlfs <- data.frame(
section = c("Section", NA_character_),
subsection = c("One", "Two"),
path = c("Folder/file.pdf", "Folder/file2.pdf")
)
test_that("", {
expect_equal(add_section("section", tlfs),
c("\\phantomsection\n\\addcontentsline{toc}{section}{Section}\n", ""))
})
test_that("Middle is created with only sections", {
expect_snapshot(cat(paste_middle(tlfs)))
})
test_that("Tex is created", {
expect_snapshot(cat(paste_tex(tlfs, toc = FALSE, coverpage = NULL)))
})
test_that("Tex is created with a table of contents", {
expect_snapshot(cat(paste_tex(tlfs, toc = TRUE, coverpage = NULL)))
})
test_that("Tex is created with a cover page", {
expect_snapshot(cat(
paste_tex(tlfs,
toc = FALSE,
coverpage = "\n\n\\begin{titlepage}\n\nThis is not really a cover page\n\n\\end{titlepage}\n\n")
))
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.