Notes
document default be added to any report.yaml
files:doc_def:
Notes: Notes
formatting:
separator: ","
Table_Order:
- table
- notes
- caption
Figure_Order:
- figure
- notes
- caption
Figure_Seq_Id: "Figure"
Figure_Number: |-
list(officer::run_autonum(pre_label = "",
seq_id = Caption_Seq_Id,
post_label = "",
start_at = Caption_Start_At))
Table_Seq_Id: "Table"
Table_Number: |-
list(officer::run_autonum(pre_label = "",
seq_id = Caption_Seq_Id,
post_label = "",
start_at = Caption_Start_At))
post_processing
option for rdocx
and rpptx
sections. These can be omitted or set to NULL and they will have no effect. Any R code here is evaluated just before saving (when running save_report()
) and you can modify the object rpt
(the officer report object from the obnd
object).rdocx:
post_processing: NULL
rpptx:
post_processing: NULL
Added fig_start_at
and tab_start_at
arguments to report_add_doc_content()
to support this.
Added notes option for tables and figures in Word reporting.
Created ftext
formatting for captions and notes added to figures and tables.
Support for multipage figures and tables (e.g. pagenated figures). By specifying the same key for a figure (or table) the first instance will be the figure and subsequent instances will be references to the first.
Support for crossreferencing figures and tables with markdown.
updated diagnostic messages to include package name
added NEWS.md
Added the function template_details