We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ad12e57 + c1f9725 commit 56c1693Copy full SHA for 56c1693
handout-beginner.tex
@@ -240,7 +240,7 @@ \subsection*{\rmfamily Organize}
240
% -----------------------------------------------------------------------------
241
\begin{tabular}{@{}m{.821\linewidth}m{.169\linewidth}}
242
\begin{lstlisting}[belowskip=-\baselineskip]
243
- fig, (ax1, ax2) = plt.subplots((2,1))
+ fig, (ax1, ax2) = plt.subplots(2,1)
244
ax1.plot(X, Y1, color="C1")
245
ax2.plot(X, Y2, color="C0")
246
\end{lstlisting}
@@ -249,7 +249,7 @@ \subsection*{\rmfamily Organize}
249
250
251
252
- fig, (ax1, ax2) = plt.subplots((1,2))
+ fig, (ax1, ax2) = plt.subplots(1,2)
253
ax1.plot(Y1, X, color="C1")
254
ax2.plot(Y2, X, color="C0")
255
0 commit comments