officer (version 0.1.8)

slip_in_seqfield: append seq field

Description

append seq field into a paragraph of an rdocx object

Usage

slip_in_seqfield(x, str, style = NULL, pos = "after")

Arguments

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".

Examples

Run this code
# NOT RUN {
library(magrittr)
x <- read_docx() %>%
  body_add_par("Time is: ", style = "Normal") %>%
  slip_in_seqfield(
    str = "TIME \u005C@ \"HH:mm:ss\" \u005C* MERGEFORMAT",
    style = 'strong') %>%

  body_add_par(" - This is a figure title", style = "centered") %>%
  slip_in_seqfield(str = "SEQ Figure \u005C* roman",
    style = 'Default Paragraph Font', pos = "before") %>%
  slip_in_text("Figure: ", style = "strong", pos = "before") %>%

  body_add_par(" - This is another figure title", style = "centered") %>%
  slip_in_seqfield(str = "SEQ Figure \u005C* roman",
    style = 'strong', pos = "before")  %>%
  slip_in_text("Figure: ", style = "strong", pos = "before") %>%
  body_add_par("This is a symbol: ", style = "Normal") %>%
  slip_in_seqfield(str = "SYMBOL 100 \u005Cf Wingdings",
    style = 'strong')

print(x, target = "seqfield.docx")
# }

Run the code above in your browser using DataCamp Workspace