在R表达式中放大单个符号(/)

时间:2019-01-24 00:40:14

标签: r plot

我有以下代码:

truckList = (from truck in _dbcontext.Truck
             where truck.EquipmentId > 0 && truck.FieldId > 0 && truck.ClientId == clientId
             join comp in _dbcontext.TruckComponent on truck.Equipment.ProtId equals comp.ComponentId
             select NewTruckVmFromDbTruck(truck, comp)).AsEnumerable();

这导致了这个剧情:

rplot

是否可以使分隔符号(“ /”)更高,以便正确地分隔两个表达式并且看起来像不是从D 2 射出?

我尝试使用cex> 1手动绘制它时,导致出现一个难看且肥胖的划分符号。我不希望它更高,只是更高。

我正在寻找使用基本绘图方法的解决方案。

1 个答案:

答案 0 :(得分:3)

如果您不介意使用latex,则可以使用tickz导出图。这将释放乳胶格式化的全部功能。例如。带有标准尺寸的划分标志,看起来像这样:

library(devtools)
install_github('daqana/tikzDevice')
library(tikzDevice)

tikz('test.tex', width = 4, height = 3)
par(mar=c(3,6,3,3))
plot(x = 1, y = 1, 
  xlim = c(1,2), ylim = c(1,2),
  ylab = '$(A_B^C)_{D_2} / (E_F^G)_{H}$')
dev.off()

enter image description here

或者,如果您想要更大的除号,则可以使用一种乳胶代码(按大小升序)\big/\Big/\bigg/或{{1 }}:

\Bigg/

enter image description here