Contents
Test Title
Next we have a Raw-...
And the same string...
A Pandas table
The Latex code:
A Matplotlib figure

➘ Test Title

The reason that the title wasn’t added as part of this multi line string is that if you add a sinle line string which contains a title, it will get an index entry.

  • With Bulletpoints
  • One more

And Some *RAW* MD Code

➘ Next we have a Raw-String representation

'Hello\nWorld'

➘ And the same string printed

Hello
World

➘ A Pandas table

With a little demonstration of caching. (And this will be indented identically to the last MD Code Because there is auto indent detection)

x x-sq
0 0 0
1 1 1
2 2 4
3 3 9
4 4 16

And Some nice MD comments Next to it. There is also a second type of cache, which you can access vial the gated_cache() method. But it’s not used here. It is handy if you want to prevent recomputation under certain circumstances

➘ The Latex code:

\begin{tabular}{rr}
\toprule
x & x-sq \\
\midrule
0 & 0 \\
1 & 1 \\
2 & 4 \\
3 & 9 \\
4 & 16 \\
5 & 25 \\
6 & 36 \\
7 & 49 \\
8 & 64 \\
9 & 81 \\
10 & 100 \\
11 & 121 \\
12 & 144 \\
13 & 169 \\
14 & 196 \\
15 & 225 \\
16 & 256 \\
17 & 289 \\
18 & 324 \\
19 & 361 \\
\bottomrule
\end{tabular}

➘ A Matplotlib figure