A hugo theme which looks like a LaTeX document.
Live Demo: https://hugotex.netlify.app/
This theme is heavily inspired by latex-css.
This fork is aiming at Polish language and Indieweb.
git clone https://github.com/pgronkievitz/HugoTeX
cd HugoTeX/exampleSite
hugo server -t ../..
# open http://localhost:1313/
Hugo (>= 0.77.0) is required.
example
baseURL = "https://hugotex.netlify.app/"
title = "HugoTeX"
paginate = 3
languageCode = "en"
DefaultContentLanguage = "en"
enableInlineShortcodes = true
footnoteReturnLinkContents = "^"
[author]
name = "Kaito Sugimoto"
abstract = "I'm a software engineer and a coffee enthusiast in Japan. My primary interest lies in the area of natural language processing."
[taxonomies]
category = "categories"
tag = "tags"
series = "series"
LaTeX.css, which HugoTeX is using, defines syntax for sidenotes. However, as it is a little verbose to write, we provide a Hugo shortcode for that:
A sentence deserving a sidenote.{{% sidenote %}}The note itself.{{% /sidenote %}}.
The note will be displayed on the right margin on larger screens. On smaller screns the note will be hidden by default and will open when clicking on the superscript number marking the existence of the note.
Any issues or pull requests are welcome.
MIT