On Tue, Nov 30, 2021 at 11:26:06AM +0900, Akira Yokosawa wrote: > Width of 5.5in does not fit in eb and 1c builds. > The width of .96\textwidth works for both of them. > > Note: > Strictly speaking, 1c builds don't need the scaling factor of .96. > But an additional conditional for them would not change the result > so much. > > Signed-off-by: Akira Yokosawa <akiyks@xxxxxxxxx> Queued and pushed, thank you! Thanx, Paul > --- > defer/rcuusage.tex | 7 ++++++- > 1 file changed, 6 insertions(+), 1 deletion(-) > > diff --git a/defer/rcuusage.tex b/defer/rcuusage.tex > index e4c478f1..bc0d8778 100644 > --- a/defer/rcuusage.tex > +++ b/defer/rcuusage.tex > @@ -201,7 +201,12 @@ that of the ideal synchronization-free workload. > > \begin{figure*} > \centering > -\resizebox{5.5in}{!}{\includegraphics{defer/RCUusecases}} > +\IfTwoColumn{ > + \resizebox{5.5in}{!}{\includegraphics{defer/RCUusecases}} > +}{ > + \resizebox{.96\textwidth}{!}{\includegraphics{defer/RCUusecases}} > + % eb builds require .96 > +} > \caption{Relationships Between RCU Use Cases} > \label{fig:defer:Relationships Between RCU Use Cases} > \end{figure*} > > base-commit: 7d9743376122167a9cdd9acc0decfe41e17a2a93 > -- > 2.17.1 >