LL(enumerate = TRUE, text = "clipboard", copy2clip = TRUE)
TRUE
uses the
enumerate environment. If FALSE
itemize is used
instead.TRUE
attempts to
copy the output to the clipboard.Returns a character vector with a LaTeX list formatted text.
Itemizes lines of text into a LaTeX list.
This function formats text for use with LaTeX as a list.
Ligatures parsing is very good, however, these elements my be incorrect. If a warning is thrown check the use of "ff", "fi", "fl", "ffi" and "ffl".
x <- c( "one, two buckle my shoe", "three, four close the door", "five, six pick up sticks") LL(, x)\\begin{enumerate} \\item one, two buckle my shoe \\item three, four close the door \\item five, six pick up sticks \\end{enumerate}\\begin{itemize} \\item one, two buckle my shoe \\item three, four close the door \\item five, six pick up sticks \\end{itemize}