如何在 apa_table() 中更改 table 注释的默认名称?
How to change default name for table note in apa_table()?
我正在尝试使用 papaja
r 包编写 .pdf 报告。它不是英文的,所以我需要将一些固定部分翻译成波兰语。由于 问题,我设法翻译了图形和 table 名称,使用:
\renewcommand{\figurename}{Rysunek}
\renewcommand{\tablename}{Tabela}
但我不知道如何将 table note from apa_table()
翻译成“Note”。到“Adnotacja”。解决方法是保留 .tex 文件,在 RStudio 外部查找和替换并渲染。可以在RMarkdown文件里面设置吗?
其中一些词是在名为 papaja.terms
的全局选项中定义的,您甚至可能想要更改的不仅仅是此处的注释,以避免一起使用 latex 快速修复。请在此处查看选项:
> getOption("papaja.terms")
$author_note
[1] "Author note"
$abstract
[1] "Abstract"
$keywords
[1] "Keywords"
$word_count
[1] "Word count"
$table
[1] "Table"
$figure
[1] "Figure"
$note
[1] "Note"
$correspondence
[1] "Correspondence concerning this article should be addressed to "
$email
[1] "E-mail"
为了改变'note'对应的单词的语言。
例如
polish_terms <- getOption("papaja.terms")
polish_terms$note <- "Adnotacja"
options("papaja.terms" = polish_terms)
我正在尝试使用 papaja
r 包编写 .pdf 报告。它不是英文的,所以我需要将一些固定部分翻译成波兰语。由于
\renewcommand{\figurename}{Rysunek}
\renewcommand{\tablename}{Tabela}
但我不知道如何将 table note from apa_table()
翻译成“Note”。到“Adnotacja”。解决方法是保留 .tex 文件,在 RStudio 外部查找和替换并渲染。可以在RMarkdown文件里面设置吗?
其中一些词是在名为 papaja.terms
的全局选项中定义的,您甚至可能想要更改的不仅仅是此处的注释,以避免一起使用 latex 快速修复。请在此处查看选项:
> getOption("papaja.terms")
$author_note
[1] "Author note"
$abstract
[1] "Abstract"
$keywords
[1] "Keywords"
$word_count
[1] "Word count"
$table
[1] "Table"
$figure
[1] "Figure"
$note
[1] "Note"
$correspondence
[1] "Correspondence concerning this article should be addressed to "
$email
[1] "E-mail"
为了改变'note'对应的单词的语言。
例如
polish_terms <- getOption("papaja.terms")
polish_terms$note <- "Adnotacja"
options("papaja.terms" = polish_terms)