Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
315 views
in Technique[技术] by (71.8m points)

r - Why α symbol turns into <U+03B1> after flextable and officer update?

As in the title: before the update exported .docx file contained α symbol - after the update exported .docx file displays <U+03B1>. Does anyone know what could be the reason?

question from:https://stackoverflow.com/questions/65829575/why-%ce%b1-symbol-turns-into-u03b1-after-flextable-and-officer-update

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

U+03B1 is the unicode for the character α, which you mentioned.

If you are using the α symbol directly in officer you might need to instead supply the unicode directly with U03B1.

# Using the symbol directly
cat("α")
> a 

# Using the supplied unicode
cat("U03B1")
> α

Created on 2021-01-21 by the reprex package (v0.3.0)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...