Welcome to the Hugo Academic Template Demo!
This Jupyter notebook demonstrates some of the features of the Hugo Academic website template. You can find the source code for this notebook in exampleSite/content/post/academic.md
.
Markdown
This notebook is written in Markdown. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using Markdown, see the Markdown Guide.
Code
This notebook contains code cells. For example, here is a code cell with a Python code snippet that uses the numpy
library to generate a random array and then sorts it:
import numpy as np # Import the numpy library as np
Math
This notebook contains math. For example, here is an equation: $e^{i\pi} + 1 = 0$. For more details on using math in Markdown, see the Math Guide.
Mermaid
This notebook contains diagrams. For example, here is a flowchart made using the mermaid
syntax:
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;