texblocks_opts: texblock operators

Description Usage Arguments Details Value Examples

Description

combine texblock object into bigger texblock objects

Usage

1
2
3
4
5
## S3 method for class 'tb'
e1 + e2

## S3 method for class 'tb'
e1 / e2

Arguments

e1

texblock object, right hand side object

e2

texblock object, left hand side object

Details

/ : joins e1 to e2 vertically with no hline betweet them (rbind)

Value

texblock object

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
x <- '$\\alpha$'
y <- 'cindy'
class(x) <- 'tb'
class(y) <- 'tb'
x1 <- x+y+x
x1
x1 + x1
x1 / x1
x2 <- x1 / x1
x2 + x2
x3 <- x2/x2
x2 + x3

metrumresearchgroup/texblocks documentation built on July 18, 2020, 1:45 a.m.