Skip to content

Commit

Permalink
Merge pull request #118 from radarFudan/master
Browse files Browse the repository at this point in the history
Update the beginner tex file for the issue #117
  • Loading branch information
timhoffm authored Oct 11, 2022
2 parents ad12e57 + c1f9725 commit 56c1693
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions handout-beginner.tex
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ \subsection*{\rmfamily Organize}
% -----------------------------------------------------------------------------
\begin{tabular}{@{}m{.821\linewidth}m{.169\linewidth}}
\begin{lstlisting}[belowskip=-\baselineskip]
fig, (ax1, ax2) = plt.subplots((2,1))
fig, (ax1, ax2) = plt.subplots(2,1)
ax1.plot(X, Y1, color="C1")
ax2.plot(X, Y2, color="C0")
\end{lstlisting}
Expand All @@ -249,7 +249,7 @@ \subsection*{\rmfamily Organize}
% -----------------------------------------------------------------------------
\begin{tabular}{@{}m{.821\linewidth}m{.169\linewidth}}
\begin{lstlisting}[belowskip=-\baselineskip]
fig, (ax1, ax2) = plt.subplots((1,2))
fig, (ax1, ax2) = plt.subplots(1,2)
ax1.plot(Y1, X, color="C1")
ax2.plot(Y2, X, color="C0")
\end{lstlisting}
Expand Down

0 comments on commit 56c1693

Please sign in to comment.