blob: 35b1bef2b0ef81b96116d0bc7a50b324c90ac052 [file] [log] [blame]
Brent Thorne0136eb72018-11-30 12:50:57 -05001#' 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#'
13iflatex <- function(txt){
14 if (knitr::opts_knit$get("rmarkdown.pandoc.to") == "latex"){
15 return(txt)
16 } else {
17 return("")
18 }
19}