Skip to content

Commit b666b6b

Browse files
committed
missing ), and include_labels arg for appendices
1 parent 7baf128 commit b666b6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

py/controler/build_tex_figs_by_run.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def build_tex_figs_by_run(run_id, include_cartesian=False, include_dynamic=False
9898
z_location, av.velocity_fs, station_id)
9999
tfp.add_scatter_plot('r_mesh', 'turb_visc_ettap_top', caption, scatter_width, create_kwargs=kwargs, write_unique=True)
100100

101-
kwargs = merge_dicts(log_kwargs, {"title": r"$\frac{d^2\bar{t}}{dr^2} + \frac{d}{dr}(\frac{\bar{t}}{r}$"})
101+
kwargs = merge_dicts(log_kwargs, {"title": r"$\frac{d^2\bar{t}}{dr^2} + \frac{d}{dr}(\frac{\bar{t}}{r})$"})
102102
caption = "Scatter plot of $\nu_T$ velocity gradient term vs radius at $z/c$={0}, $V_{{free}}$={1}, station {2}.".format(
103103
z_location, av.velocity_fs, station_id)
104104
tfp.add_scatter_plot('r_mesh', 'turb_visc_ettap_bot', caption, scatter_width, create_kwargs=kwargs, write_unique=True)
@@ -128,7 +128,7 @@ def build_tex_figs_by_run(run_id, include_cartesian=False, include_dynamic=False
128128
tfp.add_dynamic_plot('ctke', caption, scatter_width, special_tag="005r", create_kwargs=dynamic_kwargs, write_unique=True)
129129

130130
# and write the appendix index file with all of the plots.
131-
tfp.write()
131+
tfp.write(include_labels=False)
132132

133133

134134
def main():

0 commit comments

Comments
 (0)