<div dir="ltr">Dear yt users, <div><br></div><div>I am running the following script:</div><div><i><br></i></div><div><div><i>from yt.mods import *</i></div><div><i>import matplotlib.pyplot as plt</i></div><div><i>import numpy as np</i></div><div><i>import math</i></div><div><i>import os</i></div><div><i>from mpl_toolkits.axes_grid1 import AxesGrid</i></div><div><i><br></i></div><div><i>#enable/disables yt output</i></div><div><i>mylog.disabled = True #no yt screen outputs</i></div><div><i>#mylog.disabled = False</i></div><div><i><br></i></div><div><i>#SIMULATIONS: this is the P12 but in a bigger box with 512 on a side.</i></div><div><i>root_dir = "/disks/ceres/makemake/acomp/riaconi/rxi552/Binary-JC_primary-0.6Msun_companion-1_stellar_radii-512grid/"</i></div><div><i>fns = [root_dir+"DD0014/data0014",root_dir+"DD0030/data0030",root_dir+"DD0041/data0041"]</i></div><div><i><br></i></div><div><i>plot_dir = "/disks/ceres/makemake/acomp/riaconi/shared/"</i></div><div><i><br></i></div><div><i>#setup for each plot in the figure (grid[i] will point to plot i)</i></div><div><i>#axes_pad is padding between axes in inches</i></div><div><i>fig = plt.figure()</i></div><div><i>grid = AxesGrid(fig, (0.075,0.075,0.85,0.85),</i></div><div><i><span class="" style="white-space:pre">                 </span>nrows_ncols = (1, 3),</i></div><div><i><span class="" style="white-space:pre">                   </span>axes_pad = 0.15,</i></div><div><i><span class="" style="white-space:pre">                        </span>label_mode = "L",</i></div><div><i><span class="" style="white-space:pre">                     </span>share_all = False,</i></div><div><i><span class="" style="white-space:pre">                      </span>cbar_location="right",</i></div><div><i><span class="" style="white-space:pre">                        </span>cbar_mode="single",</i></div><div><i><span class="" style="white-space:pre">                   </span>cbar_size="3%",</i></div><div><i><span class="" style="white-space:pre">                       </span>cbar_pad="0%")</i></div><div><i><br></i></div><div><i>for i, fn in enumerate(fns):</i></div><div><i>    pf = load(fn)</i></div><div><i>    common_envelope = pf.h.all_data()</i></div><div><i>    print "|----------|"</i></div><div><i>    print "simulation time: ", pf.current_time, "time code units"</i></div><div><i>    print "|----------|"</i></div><div><i><br></i></div><div><i>    s = SlicePlot(pf,'z',fields=["Density"])</i></div><div><i>    plot = s.plots['Density']</i></div><div><i><br></i></div><div><i>    plot.figure = fig</i></div><div><i>    plot.axes = grid[i].axes</i></div><div><i>    plot.cax = grid.cbar_axes[i]</i></div><div><i>    s._setup_plots()</i></div><div><i><br></i></div><div><i>plt.savefig(plot_dir+'CELMO-Density_difftimes.png')</i></div><div><br></div></div><div>However, when I visualise my image or insert it in a latex document the label on the right results cut off (see attached image).</div><div><br></div><div>I am not able to find a solution for this and I would like to ask if anyone solved this problem before or has any suggestion on how to solve it.</div><div><br></div><div>Cheers,</div><div>Roberto</div></div>