Skip to content

Commit 56c1693

Browse files
authored
Merge pull request #118 from radarFudan/master
Update the beginner tex file for the issue #117
2 parents ad12e57 + c1f9725 commit 56c1693

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

handout-beginner.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ \subsection*{\rmfamily Organize}
240240
% -----------------------------------------------------------------------------
241241
\begin{tabular}{@{}m{.821\linewidth}m{.169\linewidth}}
242242
\begin{lstlisting}[belowskip=-\baselineskip]
243-
fig, (ax1, ax2) = plt.subplots((2,1))
243+
fig, (ax1, ax2) = plt.subplots(2,1)
244244
ax1.plot(X, Y1, color="C1")
245245
ax2.plot(X, Y2, color="C0")
246246
\end{lstlisting}
@@ -249,7 +249,7 @@ \subsection*{\rmfamily Organize}
249249
% -----------------------------------------------------------------------------
250250
\begin{tabular}{@{}m{.821\linewidth}m{.169\linewidth}}
251251
\begin{lstlisting}[belowskip=-\baselineskip]
252-
fig, (ax1, ax2) = plt.subplots((1,2))
252+
fig, (ax1, ax2) = plt.subplots(1,2)
253253
ax1.plot(Y1, X, color="C1")
254254
ax2.plot(Y2, X, color="C0")
255255
\end{lstlisting}

0 commit comments

Comments
 (0)