2 slide presentation
.slides
Thank you for your attention
AutoAnimation = AnimatePlot[Sum[(Sin[2π(2j - 1) x])/(2j), {j, 1.0, n}], {x, -1, 1}, {n, 1, 30, 1}];
.slide
# Hello World
<AutoAnimation/>
square[{{imin_, imax_}, {jmin_, jmax_}}] :=
Table[
UnitStep[i - imin, imax - i] UnitStep[j - jmin, jmax - j],
{i, 0, 20}, {j, 0, 20}
]
{Graph1, Graph2} = {
ListPlot3D[square[{{2, 5}, {3, 7}}], Mesh -> None]
,
ListPlot3D[Abs@Fourier@square[{{2, 5}, {3, 7}}], Mesh -> None, ColorFunction -> "Rainbow"]
};
.slide
# 3D plots
<div class="flex flex-row justify-between">
<Graph1/>
<Graph2/>
</div>