hidingTOC {Hmisc} | R Documentation |
Moving and Hiding Table of Contents
Description
Moving and hiding table of contents for Rmd HTML documents
Usage
hidingTOC(
buttonLabel = "Contents",
levels = 3,
tocSide = c("right", "left"),
buttonSide = c("right", "left"),
posCollapse = c("margin", "top", "bottom"),
hidden = FALSE
)
Arguments
buttonLabel |
the text on the button that hides and unhides the
table of contents. Defaults to |
levels |
the max depth of the table of contents that it is desired to have control over the display of. (defaults to 3) |
tocSide |
which side of the page should the table of contents be placed
on. Can be either |
buttonSide |
which side of the page should the button that hides the TOC
be placed on. Can be either |
posCollapse |
if |
Logical should the table of contents be hidden at page load
Defaults to |
Details
hidingTOC
creates a table of contents in a Rmd document that
can be hidden at the press of a button. It also generate buttons that allow
the hiding or unhiding of the diffrent level depths of the table of contents.
Value
a HTML formated text string to be inserted into an markdown document
Author(s)
Thomas Dupont
Examples
## Not run:
hidingTOC()
## End(Not run)