Skip to content

Commit

Permalink
Fix LaTeX syntax error in plot labels
Browse files Browse the repository at this point in the history
  • Loading branch information
lkluft committed Nov 16, 2022
1 parent a4c52af commit 8f09e79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions howto/ozone.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ for Ts in [285, 295, 305]:
color=l.get_color(),
ax=ax1,
)
ax1.set_xlabel(r"$\rmO_3$ / ppmv")
ax1.set_xlabel(r"$\rm O_3$ / ppmv")
ax1.set_xlim(0, 11)
ax1.legend(title=r"$T_\mathrm{s}$", fontsize="x-small")
```
Expand Down Expand Up @@ -94,7 +94,7 @@ for Ts in [285, 295, 305]:
color=l.get_color(),
ax=ax1,
)
ax1.set_xlabel(r"$\rmO_3$ / ppmv")
ax1.set_xlabel(r"$\rm O_3$ / ppmv")
ax1.set_xlim(0, 11)
ax1.legend(title=r"$T_\mathrm{s}$", fontsize="x-small")
```

0 comments on commit 8f09e79

Please sign in to comment.