knitr::opts_chunk$set(echo = F)
library(fidelis)
setup2cols(50,50)
# create two column support, each with 50% width.
#later call begin_left() ... end_left() to add something to a specific column

This is text

A

AA {.tabset .tabset-pills}

Plot 1

plot(1:50)

Plot 2

plot(50:1)

AAA

begin_left()
  cat('This text should be on the left')
br()
  plot(1:50)
end_left()

begin_right()
  cat('This text should be on the right')
br()
  plot(50:1)
end_right()

B

BB

plot((1:50)^-1)

BBB

plot((1:50)^-2)

C

CC

plot((1:50)^-(1/2))

CCC

plot((1:50)^(1/2))

A

AA

plot(1:50)

AAA

plot((1:50)^2)

B

BB

plot((1:50)^-1)

BBB

plot((1:50)^-2)

C

CC

plot((1:50)^-(1/2))

CCC

plot((1:50)^(1/2))

Four

This is text!



joshua-ruf/fidelis documentation built on July 20, 2019, 1:56 a.m.