diff --git a/vignettes/align_test_sounds.Rmd b/vignettes/align_test_sounds.Rmd index 046664d..cd0b807 100644 --- a/vignettes/align_test_sounds.Rmd +++ b/vignettes/align_test_sounds.Rmd @@ -6,10 +6,12 @@ author: date: "`r Sys.Date()`" output: rmarkdown::html_document: - # rmarkdown::html_vignette: self_contained: yes toc: true toc_depth: 3 + toc_float: + collapsed: false + smooth_scroll: true vignette: > %\VignetteIndexEntry{1. Synthesize and align test sounds} %\usepackage[utf8]{inputenc} @@ -57,15 +59,18 @@ registerS3method("knit_print", "data.frame", .print_df) # global option chunks knitr::opts_chunk$set( - dpi = 70, - fig.width = 8, - fig.height = 4, - out.width = "100%", + fig.width = 5, + fig.height = 3.5, + dpi = 40, + comment = "", + out.width = "80%", fig.align = "center", message = TRUE, warning = TRUE ) +options(width = 100, max.print = 100) + ``` diff --git a/vignettes/quantify_degradation.Rmd b/vignettes/quantify_degradation.Rmd index eab3bb4..0f8db4b 100644 --- a/vignettes/quantify_degradation.Rmd +++ b/vignettes/quantify_degradation.Rmd @@ -6,10 +6,12 @@ author: date: "`r Sys.Date()`" output: rmarkdown::html_document: - # rmarkdown::html_vignette: self_contained: yes toc: true toc_depth: 3 + toc_float: + collapsed: false + smooth_scroll: true editor_options: chunk_output_type: console vignette: > @@ -61,15 +63,15 @@ library(knitr) # global option chunks knitr::opts_chunk$set( - dpi = 70, - fig.width = 8, - fig.height = 4, - out.width = "100%", + fig.width = 5, + fig.height = 3.5, + dpi = 40, + comment = "", + out.width = "80%", fig.align = "center", message = TRUE, warning = TRUE ) - ```