The function creates a representation of the dimensions of a page. The dimensions are defined by length, width and orientation. If the orientation is in landscape mode then the length becomes the width and the width becomes the length.
page_size(
width = 11906/1440,
height = 16838/1440,
orient = "portrait",
unit = "in"
)
Other functions for section definition:
page_mar()
,
prop_section()
,
section_columns()
page_size(orient = "landscape")
#> $width
#> [1] 11.69306
#>
#> $height
#> [1] 8.268056
#>
#> $orient
#> [1] "landscape"
#>
#> attr(,"class")
#> [1] "page_size"