作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在R中输出楔形符号?
例如,如果我想要 C ∧ W,我可能会在 LaTeX 中使用 $𝐶\wedge 𝑊$
。当我必须使用 R 编写因子结构图时,这很有用。
最佳答案
楔形运算符显然不包含在 R ?plotmath
功能中。您可以使用 Unicode 符号来执行此操作,尽管可以想象它可能对系统上可用的字体/特定输出格式敏感。 (为了找出合适的代码,我在网络上搜索了“Unicode wedge”并找到了例如 wikipedia page ;另请参阅 here )
png("wedge.png")
plot(0:1,0:1, type="n", ann=FALSE,axes=FALSE)
text(0.5, 0.5, "A \u2227 B", cex=5)
dev.off()
如果您想使用成熟的 LaTeX 解决方案,您可以使用 tikzDevice
包:
library(tikzDevice)
tikz("wedge.tex", standAlone = TRUE)
plot(0:1,0:1, type="n", ann=FALSE,axes=FALSE)
text(0.5, 0.5, "$A \\wedge B$", cex=5)
dev.off()
system("pdflatex wedge; pdfcrop wedge.pdf; convert wedge-crop.pdf wedge2.png")
关于r - 如何在 R 中输出\楔形?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68101248/
我是一名优秀的程序员,十分优秀!