Skip to content

Commit 7ddf80a

Browse files
authored
Merge branch 'master' into master
2 parents 0d866a5 + 329abca commit 7ddf80a

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

cheatsheets.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,7 @@
754754
%
755755
\vspace{\fill}
756756
%
757-
\begin{myboxed}{Ten Simple Rules \hfill
757+
\begin{myboxed}{Ten simple rules \hfill
758758
\READ{https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1003833}}
759759
1. Know Your Audience\\
760760
2. Identify Your Message\\

handout-beginner.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ \subsection*{\rmfamily Choose}
123123
% -----------------------------------------------------------------------------
124124
\begin{tabular}{@{}m{.821\linewidth}m{.169\linewidth}}
125125
\begin{lstlisting}[belowskip=-\baselineskip]
126-
Z = np.random.uniform(0, 1, (8,8)
126+
Z = np.random.uniform(0, 1, (8,8))
127127

128128
ax.imshow(Z)
129129
\end{lstlisting}
@@ -132,7 +132,7 @@ \subsection*{\rmfamily Choose}
132132
% -----------------------------------------------------------------------------
133133
\begin{tabular}{@{}m{.821\linewidth}m{.169\linewidth}}
134134
\begin{lstlisting}[belowskip=-\baselineskip]
135-
Z = np.random.uniform(0, 1, (8,8)
135+
Z = np.random.uniform(0, 1, (8,8))
136136

137137
ax.contourf(Z)
138138
\end{lstlisting}
@@ -282,7 +282,7 @@ \subsection*{\rmfamily Label \mdseries (everything)}
282282
\subsection*{\rmfamily Explore}
283283
% -----------------------------------------------------------------------------
284284

285-
Figures are shown with a graphical user interface that alllows to zoom
285+
Figures are shown with a graphical user interface that allows to zoom
286286
and pan the figure, to navigate between the different views and to
287287
show the value under the mouse.
288288

handout-intermediate.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ \subsection*{\rmfamily Lines \& markers}
135135
\includegraphics[width=\linewidth]{sine-marker.pdf}
136136

137137
% -----------------------------------------------------------------------------
138-
\subsection*{\rmfamily Scales \& Projections}
138+
\subsection*{\rmfamily Scales \& projections}
139139

140140
\begin{lstlisting}
141141
fig, ax = plt.subplots()
@@ -144,7 +144,7 @@ \subsection*{\rmfamily Scales \& Projections}
144144
\end{lstlisting}
145145
\includegraphics[width=\linewidth]{sine-logscale.pdf}
146146

147-
\subsection*{\rmfamily Text \& Ornaments}
147+
\subsection*{\rmfamily Text \& ornaments}
148148
\begin{lstlisting}[]
149149
ax.fill_betweenx([-1,1],[0],[2*np.pi])
150150
ax.text(0, -1, r" Period $\Phi$")

handout-tips.tex

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,10 @@ \subsection*{\rmfamily Hatching}
233233

234234
\subsection*{\rmfamily Read the documentation}
235235

236-
Matplotlib comes with an extensive documentation explaining details of each command and is generally accompanied by examples. Together with the huge online gallery, this documenation is a gold-mine.
236+
Matplotlib comes with an extensive documentation explaining the
237+
details of each command and is generally accompanied by examples.
238+
Together with the huge online gallery, this documentation is a
239+
gold-mine.
237240

238241
\vfill
239242
%

0 commit comments

Comments
 (0)