如何使用Mathematica为二维图形制作标签

时间:2015-07-22 07:46:43

标签: wolfram-mathematica

目标:获取这样的数字格式,图5中的图C. enter link description here

假设:我们绘制Sin [x],范围从0到2Pi。

Plot[Sin[2 x], {x, 0, 2 Pi}, AxesLabel -> {Style["time (hr)", 20], Style["Concentration (nM)", 20]},AxesStyle -> Directive[Thick, FontSize -> 15]]

问题:如何在不添加恼人帧的情况下为x和y轴制作标签?

更重要的是:

Plot[Sin[2 x], {x, 0, 2 Pi}, AxesLabel -> {Style["hr", 20], Style["nM", 20]},AxesStyle -> Directive[Thick, FontSize -> 20]]
像这样的代码无法获得图6的A中的类似格式,特别是对于“hr”和“nM”。

请帮我一个忙!

1 个答案:

答案 0 :(得分:0)

<div class="col-sm-10 col-sm-offset-1">

enter image description here

Labeled[
 Plot[Sin[2 x], {x, 0, 2 Pi},
  AxesStyle -> Directive[Thick, FontSize -> 15]],
 {Style["time (hr)", 20, FontFamily -> "Arial", Darker@Gray],
  Rotate[
   Style["Concentration (nM)", 20, FontFamily -> "Arial", Darker@Gray],
   90 Degree]},
 {Bottom, Left}]

enter image description here

<强> 重新。导出PNG的问题

没有明显的问题: -

enter image description here