append seq field
append seq field into a paragraph of an rdocx object. This feature is only available when document are edited with Word, when edited with Libre Office or another program, seq field will not be calculated and not displayed.
slip_in_seqfield(x, str, style = NULL, pos = "after")
x |
an rdocx object |
str |
seq field value |
style |
text style |
pos |
where to add the new element relative to the cursor, "after" or "before". |
This function will be deprecated in a next release because it is not
efficient and make users write complex code. Use instead fpar()
to build
formatted paragraphs.
x <- read_docx() x <- body_add_par(x, "Time is: ", style = "Normal") x <- slip_in_seqfield(x, str = "TIME \u005C@ \"HH:mm:ss\" \u005C* MERGEFORMAT", style = 'strong') x <- body_add_par(x, " - This is a figure title", style = "centered") x <- slip_in_seqfield(x, str = "SEQ Figure \u005C* roman", style = 'Default Paragraph Font', pos = "before") x <- slip_in_text(x, "Figure: ", style = "strong", pos = "before") x <- body_add_par(x, " - This is another figure title", style = "centered") x <- slip_in_seqfield(x, str = "SEQ Figure \u005C* roman", style = 'strong', pos = "before") x <- slip_in_text(x, "Figure: ", style = "strong", pos = "before") x <- body_add_par(x, "This is a symbol: ", style = "Normal") x <- slip_in_text(x, str = "SYMBOL 100 \u005Cf Wingdings", style = 'strong') print(x, target = tempfile(fileext = ".docx"))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.