Some potentially useful document hooks
A document hook is a function to post-process the output document.
hook_movecode(x)
x |
A character string (the whole output document). |
hook_movecode()
is a document hook to move code chunks out of LaTeX
floating environments like figure and table when the chunks
were actually written inside the floats. This function is primarily designed
for LyX: we often insert code chunks into floats to generate figures or
tables, but in the final output we do not want the code to float with the
environments, so we use regular expressions to find out the floating
environments, extract the code chunks and move them out. To disable this
behavior, use a comment % knitr_do_not_move
in the floating
environment.
The post-processed document as a character string.
These functions are hackish. Also note hook_movecode()
assumes
you to use the default output hooks for LaTeX (not Sweave or listings), and
every figure/table environment must have a label.
## Not run: knit_hooks$set(document = hook_movecode) ## End(Not run) # see example 103 at https://github.com/yihui/knitr-examples
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.