为什么flextable和officer更新后α符号变成了<U+03B1>?
Why α symbol turns into <U+03B1> after flextable and officer update?
如题:更新前导出的.docx文件包含α符号-更新后导出的.docx文件显示。有谁知道可能是什么原因?
U+03B1
是 the unicode 你提到的字符 α
。
如果您直接在 officer 中使用 α
符号,您可能需要直接使用 \U03B1
.
提供 unicode
# Using the symbol directly
cat("α")
> a
# Using the supplied unicode
cat("\U03B1")
> α
由 reprex package (v0.3.0)
于 2021 年 1 月 21 日创建
如题:更新前导出的.docx文件包含α符号-更新后导出的.docx文件显示。有谁知道可能是什么原因?
U+03B1
是 the unicode 你提到的字符 α
。
如果您直接在 officer 中使用 α
符号,您可能需要直接使用 \U03B1
.
# Using the symbol directly
cat("α")
> a
# Using the supplied unicode
cat("\U03B1")
> α
由 reprex package (v0.3.0)
于 2021 年 1 月 21 日创建