Brent Thorne | 0136eb7 | 2018-11-30 12:50:57 -0500 | [diff] [blame^] | 1 | #' Return latex control text if rendering latex |
2 | #' | ||||
3 | #' @param txt | ||||
4 | #' | ||||
5 | #' @return a string | ||||
6 | #' @export | ||||
7 | #' | ||||
8 | #' @examples | ||||
9 | #' \dontrun{ | ||||
10 | #' iflatex("\\vspace*{\\fill}") | ||||
11 | #' } | ||||
12 | #' | ||||
13 | iflatex <- function(txt){ | ||||
14 | if (knitr::opts_knit$get("rmarkdown.pandoc.to") == "latex"){ | ||||
15 | return(txt) | ||||
16 | } else { | ||||
17 | return("") | ||||
18 | } | ||||
19 | } |