2015-12-30 03:35:20 +01:00
|
|
|
# Tufte Hugo Theme
|
|
|
|
|
|
|
|
Hugo-Tufte is a minimalist blog-like theme for the
|
|
|
|
[static site generator Hugo](https://gohugo.io) that
|
|
|
|
attempts to be a faithful implementation of the
|
|
|
|
[Tufte-css](https://githubcom/edwardtufte/tufte-css) project.
|
|
|
|
It supports mathematical typesetting via [MathJax](https://www.mathjax.org).
|
|
|
|
By utilizing copious partial templates the theme is largely customizable.
|
|
|
|
|
2016-01-01 20:51:23 +01:00
|
|
|
## Math
|
|
|
|
|
2016-02-20 22:09:11 +01:00
|
|
|
Mathjax renders LaTeX written inside of markdown files. LaTeX can be
|
|
|
|
written more or less as normal, but inline and display environments that
|
|
|
|
start with `\` must be escaped. Some examples:
|
|
|
|
|
|
|
|
- `This $\LaTeX$ will be rendered inline.`
|
|
|
|
- `This \\(\LaTeX\\) will be rendered inline.`
|
|
|
|
- `A simple displayed equation: $$f(x, y) := e^{x^2 - y^2}.$$`
|
|
|
|
- `A simple displayed equation: \\[f(x, y) := e^{x^2 - y^2}.\\]`
|
|
|
|
|
|
|
|
There currently seems to be some weirdness with other environments,
|
|
|
|
such as the `align` environment. These environments will render provided
|
|
|
|
they are wrapped in `<p>` tags and blank lines. The snippet below should
|
|
|
|
render correctly.
|
|
|
|
```
|
|
|
|
Let $G$ be a finite group with exponent $2$. Then every element is
|
|
|
|
an involution, hence for any $x$, $y$ in $G$ we have:
|
|
|
|
|
|
|
|
<p>
|
|
|
|
\begin{align*}
|
|
|
|
e &= (xy)^2 \\
|
|
|
|
&=xyxy \implies \\
|
|
|
|
y^{-1} &= xyx \implies \\
|
|
|
|
y^{-1}x^{-1} &= xy,
|
|
|
|
\end{align*}
|
|
|
|
</p>
|
|
|
|
|
|
|
|
establishing that $G$ is abelian.
|
|
|
|
```
|
2016-01-01 20:51:23 +01:00
|
|
|
|
2015-12-30 03:35:20 +01:00
|
|
|
## Site Parameters
|
|
|
|
|
2016-02-20 21:21:01 +01:00
|
|
|
The site specific parameters that this theme recognizes are:
|
2015-12-30 03:35:20 +01:00
|
|
|
|
|
|
|
- `subtitle` string: This is displayed under the main title.
|
|
|
|
- `showPoweredBy` boolean: if true, display a shoutout to Hugo and this theme.
|
|
|
|
- `copyrightHolder` string: Inserts the value in the default copyright notice.
|
|
|
|
- `copyright` string: Custom copyright notice.
|
|
|
|
|
|
|
|
## Page Parameters
|
|
|
|
|
|
|
|
- `hideDate` boolean: if true, do not display a page date. When `meta` is set to
|
|
|
|
true, `hideDate` takes greater precedence.
|
|
|
|
- `hideReadTime` boolean: if true, do not display the page's reading time
|
|
|
|
estimate. When `meta` is set to true, `hideReadTime` takes greater precedence.
|
2016-01-01 20:51:23 +01:00
|
|
|
- `math` boolean: if true, try to render the page's LaTeX code using MatheJax.
|
2016-02-21 18:56:21 +01:00
|
|
|
- `meta` boolean: if true, display page metadata such as author, date, categories provided
|
2015-12-30 03:35:20 +01:00
|
|
|
these page parameters exist and are not overridden. Content in the `/post` directory,
|
|
|
|
(i.e., pages of type "post") ignore this parameter.
|
|
|
|
- `toc` boolean: if true, display the table of contents for the page.
|
|
|
|
|
2015-12-30 05:41:07 +01:00
|
|
|
## Shortcodes
|
|
|
|
|
2016-02-20 21:21:01 +01:00
|
|
|
This theme provides the following shortcodes in an attempt to completely
|
|
|
|
support all the features present in the
|
|
|
|
[Tufte-css](https://github.com/edwardtufte/tufte-css) project.
|
2015-12-31 06:34:52 +01:00
|
|
|
|
2015-12-31 07:10:37 +01:00
|
|
|
- `blockquote`
|
2016-01-01 23:56:52 +01:00
|
|
|
- **Description**: Wrap text in a blockquote and insert optional
|
2015-12-31 07:10:37 +01:00
|
|
|
`cite` or `footer` metadata.
|
2016-01-01 23:56:52 +01:00
|
|
|
- **Usage**: Accepts the named parameters `cite` and `footer`.
|
|
|
|
- **Example**:
|
2015-12-31 07:10:37 +01:00
|
|
|
```html
|
2015-12-31 07:11:35 +01:00
|
|
|
{{% blockquote cite="www.shawnohare.com" footer="Shawn" %}}
|
|
|
|
There is nothing more beautiful than an elegant mathematical proof.
|
|
|
|
{{% /blockquote %}}`
|
2015-12-31 07:10:37 +01:00
|
|
|
```
|
2016-01-01 20:51:23 +01:00
|
|
|
|
|
|
|
- `div`
|
2016-01-01 23:56:52 +01:00
|
|
|
- **Description**: This shortcode is provided as a work-around for wrapping
|
2016-01-01 20:51:23 +01:00
|
|
|
complex blocks of markdown in div tags. The wrapped text can
|
|
|
|
include other shortcodes
|
2016-01-01 23:56:52 +01:00
|
|
|
- **Usage**: Identical to the `section` shortcode.
|
2016-01-01 20:51:23 +01:00
|
|
|
Accepts the style parameters `class` and `id`.
|
2016-02-21 18:56:21 +01:00
|
|
|
If only the positional argument `"end"` is passed, a closing tag
|
2016-01-01 20:51:23 +01:00
|
|
|
will be inserted.
|
2016-01-01 23:56:52 +01:00
|
|
|
- **Example**: `{{< div class="my-class" >}}` inserts a
|
2016-01-01 20:51:23 +01:00
|
|
|
`<div class="my-class">` tag, while
|
|
|
|
`{{<div "end" >}}` inserts the closing `</div>` tag.
|
|
|
|
|
|
|
|
- `epigraph`
|
2016-01-01 23:56:52 +01:00
|
|
|
- **Description**: Create an epigraph with the wrapped text.
|
|
|
|
- **Usage**: To include a footer with source attribution, pass in the
|
2016-01-01 20:56:14 +01:00
|
|
|
optional named parameters `pre`, `cite`, `post`. These parameters
|
2016-01-01 20:51:23 +01:00
|
|
|
make no styling assumptions, so spacing is important. A more compactly
|
|
|
|
styled epigraph will be used if the `type` parameter is set to `compact`.
|
2016-01-01 23:56:52 +01:00
|
|
|
- **Example**:
|
2016-01-01 20:56:14 +01:00
|
|
|
```
|
2016-01-01 20:51:23 +01:00
|
|
|
{{% epigraph pre="Author Writer, " cite="Math is Fun" %}}
|
|
|
|
This is an example of an epigraph with some math
|
2016-01-01 20:56:14 +01:00
|
|
|
\\( \mathbb N \subseteq \mathbb R \\)
|
2016-01-01 20:51:23 +01:00
|
|
|
to start the beginning of a section.
|
|
|
|
{{% /epigraph %}}
|
|
|
|
```
|
|
|
|
|
2015-12-31 06:34:52 +01:00
|
|
|
- `marginnote`
|
2016-01-01 23:56:52 +01:00
|
|
|
- **Description**: Wrap text to produce a numberless margin note.
|
2015-12-31 06:34:52 +01:00
|
|
|
- Usage: Accepts a required positional argument that is the margin note id.
|
|
|
|
`{{% marginnote "<margin note id>"" %}}...{{% /marginnote %}}`
|
2016-01-01 23:56:52 +01:00
|
|
|
- **Example**: `{{% marginnote "mn-example" %}}Some marginnote{{% /marginnote%}}`
|
2015-12-31 06:34:52 +01:00
|
|
|
|
|
|
|
- `section`
|
2016-01-01 23:56:52 +01:00
|
|
|
- **Description**: This shortcode is provided as a work-around for wrapping
|
2016-01-01 20:51:23 +01:00
|
|
|
complex blocks of markdown in section tags. The wrapped text can
|
|
|
|
include other shortcodes
|
2016-01-01 23:56:52 +01:00
|
|
|
- **Usage**: Accepts the style parameters `class` and `id`.
|
2016-02-21 18:56:21 +01:00
|
|
|
If only the positional argument `"end"` is passed, a closing tag
|
2016-01-01 20:51:23 +01:00
|
|
|
will be inserted.
|
2016-01-01 23:56:52 +01:00
|
|
|
- **Example**: `{{< section class="my-class" >}}` inserts a
|
2016-01-01 20:51:23 +01:00
|
|
|
`<section class="my-class">` tag, while
|
2015-12-31 06:34:52 +01:00
|
|
|
`{{<section "end" >}}` inserts the closing `</section>` tag.
|
|
|
|
|
2016-01-01 20:51:23 +01:00
|
|
|
|
2015-12-31 06:34:52 +01:00
|
|
|
- `sidenote`
|
2016-01-01 23:56:52 +01:00
|
|
|
- **Description**: Wrap text to produce an automatically numbered sidenote.
|
|
|
|
- **Usage**: identical to `marginnote`.
|
2015-12-31 06:34:52 +01:00
|
|
|
Accepts a required positional argument that is the side note id.
|
|
|
|
`{{% sidenote "<side note id>"" %}}...{{% /sidenote %}}`
|
2016-01-01 23:56:52 +01:00
|
|
|
- **Example**: `{{% sidenote "sn-example" %}}Some sidenote{{% /sidenote %}}`
|
2015-12-30 05:41:07 +01:00
|
|
|
|
2015-12-31 07:10:37 +01:00
|
|
|
|
2015-12-30 03:35:20 +01:00
|
|
|
## Templates
|
|
|
|
TODO
|
|
|
|
- [ ] Describe the role of each template file, as commenting within the files
|
|
|
|
themselves seems to break the templates.
|