Skip to content

Commit de63586

Browse files
authored
Merge pull request #256 from abostroem/issue218
making Latex labels raw strings
2 parents 3aa66f0 + 22a023d commit de63586

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

student_download/episode_functions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ def plot_cmd_selection(df):
124124

125125
plt.plot(x, y, 'ko', markersize=0.7, alpha=0.9)
126126

127-
plt.xlabel('$\phi_1$ [deg]')
128-
plt.ylabel('$\phi_2$ [deg]')
127+
plt.xlabel(r'$\phi_1$ [deg]')
128+
plt.ylabel(r'$\phi_2$ [deg]')
129129
plt.title('Proper motion + photometry selection', fontsize='medium')
130130

131131
plt.axis('equal')

0 commit comments

Comments
 (0)