當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R Japanese R 中的日語字符


R語言 Japanese 位於 grDevices 包(package)。

說明

Hershey 矢量字體的實現提供了大量日語字符(平假名、片假名和漢字)。

細節

如果沒有鍵盤支持輸入日語字符,生成這些字符的唯一方法是使用特殊的轉義序列:請參閱 Hershey

例如,聲音 "ka" 的平假名字符由“生成”⁠\\#J242b⁠” 這個聲音的片假名字符是由“產生的⁠\\#J252b⁠’。 "one" 的漢字表意文字由 ‘⁠\\#J306c⁠' 或者 '⁠\\#N0001⁠’。

demo(Japanese) 的輸出顯示了可用日語字符的轉義序列表。

例子

require(graphics)

plot(1:9, type = "n", axes = FALSE, frame.plot = TRUE, ylab = "",
     main = "example(Japanese)", xlab = "using Hershey fonts")
par(cex = 3)
Vf <- c("serif", "plain")

text(4, 2, "\\#J244b\\#J245b\\#J2473", vfont = Vf)
text(4, 4, "\\#J2538\\#J2563\\#J2551\\#J2573", vfont = Vf)
text(4, 6, "\\#J467c\\#J4b5c", vfont = Vf)
text(4, 8, "Japan", vfont = Vf)
par(cex = 1)
text(8, 2, "Hiragana")
text(8, 4, "Katakana")
text(8, 6, "Kanji")
text(8, 8, "English")

參考

https://www.gnu.org/software/plotutils/plotutils.html

也可以看看

demo(Japanese) , Hershey , text

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Japanese characters in R。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。