Add a column break into a section

addColumnBreak(doc, ...)

# S3 method for docx
addColumnBreak(doc, ...)

Arguments

doc

document object

...

further arguments passed to other methods

Value

a document object

Details

addColumnBreak only works with docx documents.

See also

docx, addSection

Examples

doc.filename = "add_col_break.docx" doc = docx( ) doc = addSection(doc, ncol = 2, columns.only = TRUE ) doc = addParagraph( doc = doc, "Text 1.", "Normal" ) doc = addColumnBreak(doc ) doc = addParagraph( doc = doc, "Text 2.", "Normal" ) writeDoc( doc, file = doc.filename )