JULIA语言中的原生PGFPlots改变字体大小

时间:2018-06-15 07:33:12

标签: plot julia

我正在使用Julia语言中的原生PGFPlots.jl绘图软件。

如果您能让我知道如何更改字体大小,我将非常感激:

  1. 标题(我怀疑传说风格= {font = \ small})
  2. 说明
  3. xlabel
  4. ylabel
  5. 我的代码:

    pushPGFPlotsOptions("scale=1.5")
    Plot1 = GroupPlot(2, 2, groupStyle = "horizontal sep = 1.6cm, vertical sep = 2.cm")
    push!(Plot1b, Axis([
    Plots.Linear(Se, H_Kg, mark="none", style="red, very thick"),
    Plots.Linear(Se, H_Vg, mark="none", style="dashed, blue, very thick"),
    ], title="Se(H)", xlabel=L"$Se[-]$", ylabel=L"$H[cm]$", style="smooth", xmin=Se_Min, xmax=Se_Max, ymin=H_Min, ymode="log"))
    
    push!(Plot1, Axis([
    Plots.Linear(Se, Kunsat_Kg, mark="none", style="red, very thick", legendentry=L"$KG$"),
                Plots.Linear(Se, Kunsat_Vg, mark="none", style="dashed, blue, very thick", legendentry=L"$VG$"),
    ], title="K(Se)", xlabel=L"$Se[-]$", ylabel=L"$K(Se)[cm/h]$", style="smooth", xmin=Se_Min, xmax=Se_Max, ymin=K_Min, legendStyle = "{at={(-0.3,-0.4)}, anchor=south west, legend columns=-1}"))
    save(Path, Plot1)
    

    非常感谢您提供的任何帮助,

0 个答案:

没有答案