Skip to content

Latest commit

 

History

History
713 lines (598 loc) · 23.4 KB

File metadata and controls

713 lines (598 loc) · 23.4 KB
title weight description math chem
Diagrams and Formulae
11
Add generated diagrams and scientific formulae to your site.
true
true

Docsy has built-in support for a number of diagram creation and typesetting tools you can use to add rich content to your site, including \(\KaTeX\), Mermaid, Diagrams.net, PlantUML, and MarkMap.

\(\LaTeX\) support with \(\KaTeX\)

\(\LaTeX\) is a high-quality typesetting system for the production of technical and scientific documentation. Due to its excellent math typesetting capabilities, \(\TeX\) became the de facto standard for the communication and publication of scientific documents, especially if these documents contain a lot of mathematical formulae. Designed and mostly written by Donald Knuth, the initial version was released in 1978. Dating back that far, \(\LaTeX\) has pdf as its primary output target and is not particularly well suited for producing HTML output for the Web. Fortunately, with \(\KaTeX\) there exists a fast and easy-to-use JavaScript library for \(\TeX\) math rendering on the web, which was integrated into the Docsy theme.

With \(\KaTeX\) support enabled in Docsy, you can include complex mathematical formulae into your web page, either inline or centred on its own line. Since \(\KaTeX\) relies on server side rendering, it produces the same output regardless of your browser or your environment. Formulae can be shown either inline or in display mode:

Inline formulae

The following code sample produces a text line with three inline formulae:

When \\(a \ne 0\\), there are two solutions to \\(ax^2 + bx + c= 0\\) and they are \\(x = {-b \pm \sqrt{b^2-4ac} \over 2a}\\).

When \(a \ne 0\), there are two solutions to \(ax^2 + bx + c= 0\) and they are \(x = {-b \pm \sqrt{b^2-4ac} \over 2a}\).

Formulae in display mode

The following code sample produces an introductory text line followed by a formula numbered as (1) residing on its own line:

The probability of getting \\(k\\) heads when flipping \\(n\\) coins is:
```math
\tag*{(1)} P(E) = {n \choose k} p^k (1-p)^{n-k}
```

The formula itself is written inside a GLFM math block. The above code fragment renders to:

The probability of getting \(k\) heads when flipping \(n\) coins is:

$$\tag*{(1)} P(E) = {n \choose k} p^k (1-p)^{n-k}$$

{{% alert title="Warning" color="warning" %}} math code blocks are only supported as of hugo version 0.93.

In case of hugo version 0.92 or lower, use this code snippet to display the formula:

$$
\tag*{(1)} P(E) = {n \choose k} p^k (1-p)^{n-k}
$$

{{% /alert %}}

{{% alert title="Tip" %}} This wiki page provides in-depth information about typesetting mathematical formulae using the \(\LaTeX\) typesetting system. {{% /alert %}}

Activating and configuring \(\KaTeX\) support

Auto activation

As soon as you use a math code block on your page, support of \(\KaTeX\) is automatically enabled.

Manual activation (no math code block present or hugo 0.92 or lower)

If you want to use inline formulae and don't have a math code block present in your page which triggers auto activation, you need to manually activate \(\KaTeX\) support. The easiest way to do so is to add a math attribute to the frontmatter of your page and set it to true:

{{< tabpane >}} {{< tab header="Page front matter:" disabled=true />}} {{< tab header="toml" lang="toml" >}} +++ math = true +++ {{< /tab >}} {{< tab header="yaml" lang="yaml" >}}

math: true

{{< /tab >}} {{< tab header="json" lang="json" >}} { "math": true } {{< /tab >}} {{< /tabpane >}}

If you use formulae in most of your pages, you can also enable sitewide \(\KaTeX\) support inside the Docsy theme. To do so update hugo.toml/hugo.yaml/hugo.json:

{{< tabpane >}} {{< tab header="Site configuration file:" disabled=true />}} {{< tab header="hugo.toml" lang="toml" >}} [params.katex] enable = true {{< /tab >}} {{< tab header="hugo.yaml" lang="yaml" >}} params: katex: enable: true {{< /tab >}} {{< tab header="hugo.json" lang="json" >}} { "params": { "katex": { "enable": true } } } {{< /tab >}} {{< /tabpane >}}

Additionally, you can customize various \(\KaTeX\) options inside hugo.toml/hugo.yaml/hugo.json, if needed:

{{< tabpane >}} {{< tab header="Site configuration file:" disabled=true />}} {{< tab header="hugo.toml" lang="toml" >}} [params.katex]

enable/disable KaTeX support

enable = true

Element(s) scanned by auto render extension. Default: document.body

html_dom_element = "document.body"

[params.katex.options]

If true (the default), KaTeX will throw a ParseError when it encounters an

unsupported command or invalid LaTeX. If false, KaTeX will render unsupported

commands as text, and render invalid LaTeX as its source code with hover text

giving the error, in the color given by errorColor.

throwOnError = false errorColor = "#CD5C5C"

This is a list of delimiters to look for math, processed in the same order as

the list. Each delimiter has three properties:

left: A string which starts the math expression (i.e. the left delimiter).

right: A string which ends the math expression (i.e. the right delimiter).

display: Whether math in the expression should be rendered in display mode.

[[params.katex.options.delimiters]] left = "$$" right = "$$" display = true [[params.katex.options.delimiters]] left = "$" right = "$" display = false [[params.katex.options.delimiters]] left = "\(" right = "\)" display = false [[params.katex.options.delimiters]] left = "\[" right = "\]" display = true {{< /tab >}} {{< tab header="hugo.yaml" lang="yaml" >}} params: katex: enable: true # enable/disable KaTeX support html_dom_element: document.body # Element(s) scanned by auto render extension. Default: document.body options:

  # If true (the default), KaTeX will throw a ParseError when it encounters an
  # unsupported command or invalid LaTeX. If false, KaTeX will render unsupported
  # commands as text, and render invalid LaTeX as its source code with hover text
  # giving the error, in the color given by errorColor.
  throwOnError: false
  errorColor: '#CD5C5C'

  # This is a list of delimiters to look for math, processed in the same order as
  # the list. Each delimiter has three properties:
  #   left:    A string which starts the math expression (i.e. the left delimiter).
  #   right:   A string which ends the math expression (i.e. the right delimiter).
  #   display: Whether math in the expression should be rendered in display mode.
  delimiters:
    - left: $$
      right: $$
      display: true
    - left: $
      right: $
      display: false
    - left: \(
      right: \)
      display: false
    - left: \[
      right: \]
      display: true

{{< /tab >}} {{< tab header="hugo.json" lang="json" >}} { "params": { "katex": { "enable": true, "html_dom_element": "document.body", "options": { "throwOnError": false, "errorColor": "#CD5C5C", "delimiters": [ { "left": "$$", "right": "$$", "display": true }, { "left": "$", "right": "$", "display": false }, { "left": "\(", "right": "\)", "display": false }, { "left": "\[", "right": "\]", "display": true } ] } } } } {{< /tab >}} {{< /tabpane >}}

For a complete list of options and their detailed description, have a look at the documentation of \({\KaTeX}'s\) Rendering API options and of \({\KaTeX}'s\) configuration options.

Display of Chemical Equations and Physical Units

mhchem is a \(\LaTeX\) package for typesetting chemical molecular formulae and equations. Fortunately, \(\KaTeX\) provides the mhchem extension that makes the mhchem package accessible when authoring content for the web. With mhchem extension enabled, you can easily include chemical equations into your page. An equation can be shown either inline or can reside on its own line. The following code sample produces a text line including a chemical equation:

*Precipitation of barium sulfate:* \\(\ce{SO4^2- + Ba^2+ -> BaSO4 v}\\)

Precipitation of barium sulfate: \(\ce{SO4^2- + Ba^2+ -> BaSO4 v}\)

More complex equations need to be displayed on their own line. Use a code block adorned with chem in order to achieve this:

```chem
\tag*{(2)} \ce{Zn^2+  <=>[+ 2OH-][+ 2H+]  $\underset{\text{amphoteric hydroxide}}{\ce{Zn(OH)2 v}}$  <=>[+ 2OH-][+ 2H+]  $\underset{\text{tetrahydroxozincate}}{\ce{[Zn(OH)4]^2-}}$}
```
\tag*{(2)} \ce{Zn^2+  <=>[+ 2OH-][+ 2H+]  $\underset{\text{amphoteric hydroxide}}{\ce{Zn(OH)2 v}}$  <=>[+ 2OH-][+ 2H+]  $\underset{\text{tetrahydroxozincate}}{\ce{[Zn(OH)4]^2-}}$}

{{% alert title="Warning" color="warning" %}} chem code blocks are only supported as of hugo version 0.93.

In case of hugo version 0.92 or lower, use this code snippet to display the formula:

$$
\tag*{(2)} \ce{Zn^2+  <=>[+ 2OH-][+ 2H+]  $\underset{\text{amphoteric hydroxide}}{\ce{Zn(OH)2 v}}$  <=>[+ 2OH-][+ 2H+]  $\underset{\text{tetrahydroxozincate}}{\ce{[Zn(OH)4]^2-}}$}
$$

{{% /alert %}}

{{% alert title="Note" %}} The manual for mchem’s input syntax provides in-depth information about typesetting chemical formulae and physical units using the mhchem tool. {{% /alert %}}

Use of mhchem is not limited to the authoring of chemical equations, using the included \pu command, pretty looking physical units can be written with ease, too. The following code sample produces two text lines with four numbers plus their corresponding physical units:

* Scientific number notation: \\(\pu{1.2e3 kJ}\\) or \\(\pu{1.2E3 kJ}\\) \\
* Divisions: \\(\pu{123 kJ/mol}\\) or \\(\pu{123 kJ//mol}\\)
  • Scientific number notation: \(\pu{1.2e3 kJ}\) or \(\pu{1.2E3 kJ}\)
  • Divisions: \(\pu{123 kJ/mol}\) or \(\pu{123 kJ//mol}\)

For a complete list of options when authoring physical units, have a look at the section on physical units in the mhchem documentation.

Activating rendering support for chemical formulae

Auto activation

As soon as you use a chem code block on your page, rendering support for chemical equations is automatically enabled.

Manual activation (no chem code block present or hugo 0.92 or lower)

If you want to use chemical formulae inline and don't have a chem code block present in your page which triggers auto activation, you need to manually activate rendering support for chemical formulae. The easiest way to do so is to add a chem attribute to the frontmatter of your page and set it to true:

{{< tabpane >}} {{< tab header="Page front matter:" disabled=true />}} {{< tab header="toml" lang="toml" >}} +++ chem = true +++ {{< /tab >}} {{< tab header="yaml" lang="yaml" >}}

chem: true

{{< /tab >}} {{< tab header="json" lang="json" >}} { "chem": true } {{< /tab >}} {{< /tabpane >}}

If you use formulae in most of your pages, you can also enable sitewide rendering support for chemical formulae inside the Docsy theme. To do so, enable mhchem inside your hugo.toml/hugo.yaml/hugo.json:

{{< tabpane >}} {{< tab header="Site configuration file:" disabled=true />}} {{< tab header="hugo.toml" lang="toml" >}} [params.katex] enable = true

[params.katex.mhchem] enable = true {{< /tab >}} {{< tab header="hugo.yaml" lang="yaml" >}} params: katex: enable: true mhchem: enable: true {{< /tab >}} {{< tab header="hugo.json" lang="json" >}} { "params": { "katex": { "enable": true, "mhchem": { "enable": true } } } } {{< /tab >}} {{< /tabpane >}}

Diagrams with Mermaid

Mermaid is a Javascript library for rendering simple text definitions to useful diagrams in the browser. It can generate a variety of different diagram types, including flowcharts, sequence diagrams, class diagrams, state diagrams, ER diagrams, user journey diagrams, Gantt charts and pie charts.

With Mermaid support enabled in Docsy, you can include the text definition of a Mermaid diagram inside a code block, and it will automatically be rendered by the browser as soon as the page loads.

The great advantage of this is anyone who can edit the page can now edit the diagram - no more hunting for the original tools and version to make a new edit.

For example, the following defines a sequence diagram:

```mermaid
sequenceDiagram
    autonumber
    Docsy user->>Discussion board: Ask question
    Discussion board->>Community member: read question
    loop Different strategies
    Community member->>Test instance: Investigate issue raised
    end
    Note right of Community member: After hours of investigation:
    Test instance-->>Community member: Come up with solution
    Community member-->>Discussion board: Propose solution
    Discussion board-->>Docsy user: check proposed solution
    Docsy user->>Discussion board: Mark question as resolved
    Docsy user->>Docsy user: Being happy
```

which is automatically rendered to:

sequenceDiagram
    autonumber
    Docsy user->>Discussion board: Ask question
    Discussion board->>Community member: read question
    loop Different strategies
    Community member->>Test instance: Investigate issue raised
    end
    Note right of Community member: After hours of investigation:
    Test instance-->>Community member: Come up with solution
    Community member-->>Discussion board: Propose solution
    Discussion board-->>Docsy user: check proposed solution
    Docsy user->>Discussion board: Mark question as resolved
    Docsy user->>Docsy user: Being happy
Loading

Support of Mermaid diagrams is automatically enabled as soon as you use a mermaid code block on your page.

By default, docsy pulls in the latest officially released version of Mermaid at build time. If that doesn't fit your needs, you can specify the wanted mermaid version inside your configuration file hugo.toml/hugo.yaml/hugo.json:

{{< tabpane >}} {{< tab header="Configuration file:" disabled=true />}} {{< tab header="hugo.toml" lang="toml" >}} [params.mermaid] version = "10.9.0" {{< /tab >}} {{< tab header="hugo.yaml" lang="yaml" >}} params: mermaid: version: 10.9.0 {{< /tab >}} {{< tab header="hugo.json" lang="json" >}} { "params": { "mermaid": { "version": "10.9.0" } } } {{< /tab >}} {{< /tabpane >}}

If needed, you can define custom settings for your diagrams, such as themes, padding in your hugo.toml/hugo.yaml/hugo.json.

{{< tabpane >}} {{< tab header="Configuration file:" disabled=true />}} {{< tab header="hugo.toml" lang="toml" >}} [params.mermaid] theme = "neutral"

[params.mermaid.flowchart] diagramPadding = 6 {{< /tab >}} {{< tab header="hugo.yaml" lang="yaml" >}} params: mermaid: theme: neutral flowchart: diagramPadding: 6 {{< /tab >}} {{< tab header="hugo.json" lang="json" >}} { "params": { "mermaid": { "theme": "neutral", "flowchart": { "diagramPadding": 6 } } } } {{< /tab >}} {{< /tabpane >}}

See the Mermaid documentation for a list of defaults that can be overridden.

Settings can also be overridden on a per-diagram basis by making use of a frontmatter config block at the start of the diagram definition.

UML Diagrams with PlantUML

PlantUML is an alternative to Mermaid that lets you quickly create UML diagrams, including sequence diagrams, use case diagrams, and state diagrams. Unlike Mermaid diagrams, which are entirely rendered in the browser, PlantUML uses a PlantUML server to create diagrams. You can use the provided default demo server (not recommended for production use), or run a server yourself. PlantUML offers a wider range of image types than Mermaid, so may be a better choice for some use cases.

Diagrams are defined using a simple and intuitive language. (see PlantUML Language Reference Guide).

The following example shows a use case diagram:

```plantuml
participant participant as Foo
actor       actor       as Foo1
boundary    boundary    as Foo2
control     control     as Foo3
entity      entity      as Foo4
database    database    as Foo5
collections collections as Foo6
queue       queue       as Foo7
Foo -> Foo1 : To actor
Foo -> Foo2 : To boundary
Foo -> Foo3 : To control
Foo -> Foo4 : To entity
Foo -> Foo5 : To database
Foo -> Foo6 : To collections
Foo -> Foo7: To queue
```

Automatically renders to:

participant participant as Foo
actor       actor       as Foo1
boundary    boundary    as Foo2
control     control     as Foo3
entity      entity      as Foo4
database    database    as Foo5
collections collections as Foo6
queue       queue       as Foo7
Foo -> Foo1 : To actor
Foo -> Foo2 : To boundary
Foo -> Foo3 : To control
Foo -> Foo4 : To entity
Foo -> Foo5 : To database
Foo -> Foo6 : To collections
Foo -> Foo7: To queue

To enable/disable PlantUML, update hugo.toml/hugo.yaml/hugo.json:

{{< tabpane >}} {{< tab header="Configuration file:" disabled=true />}} {{< tab header="hugo.toml" lang="toml" >}} [params.plantuml] enable = true {{< /tab >}} {{< tab header="hugo.yaml" lang="yaml" >}} params: plantuml: enable: true {{< /tab >}} {{< tab header="hugo.json" lang="json" >}} { "params": { "plantuml": { "enable": true } } } {{< /tab >}} {{< /tabpane >}}

Other optional settings are:

{{< tabpane >}} {{< tab header="Configuration file:" disabled=true />}} {{< tab header="hugo.toml" lang="toml" >}} [params.plantuml] enable = true theme = "default"

Set url to plantuml server

svg_image_url = "https://www.plantuml.com/plantuml/svg/"

By default the plantuml implementation uses tags to display UML diagrams.

When svg is set to true, diagrams are displayed using tags, maintaining functionality like links e.g.

default = false

svg = true {{< /tab >}} {{< tab header="hugo.yaml" lang="yaml" >}} params: plantuml: enable: true theme: default # Set url to plantuml server # default is http://www.plantuml.com/plantuml/svg/ svg_image_url: 'https://www.plantuml.com/plantuml/svg/' # By default the plantuml implementation uses tags to display UML diagrams. # When svg is set to true, diagrams are displayed using tags, maintaining functionality like links e.g. # default = false svg: true {{< /tab >}} {{< tab header="hugo.json" lang="json" >}} { "params": { "plantuml": { "enable": true, "theme": "default", "svg_image_url": "https://www.plantuml.com/plantuml/svg/", "svg": true } } } {{< /tab >}} {{< /tabpane >}}

MindMap support with MarkMap

MarkMap is a Javascript library for rendering simple text definitions to MindMap in the browser.

For example, the following defines a simple MindMap:

```markmap
# markmap

## Links

- <https://markmap.js.org/>
- [GitHub](https://github.com/gera2ld/markmap)

## Related

- [coc-markmap](https://github.com/gera2ld/coc-markmap)
- [gatsby-remark-markmap](https://github.com/gera2ld/gatsby-remark-markmap)

## Features

- links
- **inline** ~~text~~ *styles*
- multiline
  text
- `inline code`
-
    ```js
    console.log('code block');
    ```
- Katex - $x = {-b \pm \sqrt{b^2-4ac} \over 2a}$
```

Automatically renders to:

# markmap

## Links

- <https://markmap.js.org/>
- [GitHub](https://github.com/gera2ld/markmap)

## Related

- [coc-markmap](https://github.com/gera2ld/coc-markmap)
- [gatsby-remark-markmap](https://github.com/gera2ld/gatsby-remark-markmap)

## Features

- links
- **inline** ~~text~~ *styles*
- multiline
  text
- `inline code`
-
    ```js
    console.log('code block');
    ```
- Katex - $x = {-b \pm \sqrt{b^2-4ac} \over 2a}$

To enable/disable MarkMap, update hugo.toml/hugo.yaml/hugo.json:

{{< tabpane >}} {{< tab header="Configuration file:" disabled=true />}} {{< tab header="hugo.toml" lang="toml" >}} [params.markmap] enable = true {{< /tab >}} {{< tab header="hugo.yaml" lang="yaml" >}} params: markmap: enable: true {{< /tab >}} {{< tab header="hugo.json" lang="json" >}} { "params": { "markmap": { "enable": true } } } {{< /tab >}} {{< /tabpane >}}

Diagrams with Diagrams.net

Diagrams.net (aka draw.io) provides a free and open source diagram editor that can generate a wider range of diagrams than Mermaid or PlantUML using a web or desktop editor.

SVG and PNG files exported with the tool contain the source code of the original diagram by default, which allows the diagrams.net site to import those images again for edit in the future. With draw.io enabled, Docsy will detect this and automatically add an Edit button over any image that can be edited using the online site.

Hover over the image below and click edit to instantly start working with it. Clicking the Save button will cause the edited diagram to be exported using the same filename and filetype, and downloaded to your browser.

{{%alert title="Note" color="primary" %}} If you're creating a new diagram, be sure to File -> Export in either svg or png format (svg is usually the best choice) and ensure the Include a copy of my diagram is selected so it can be edited again later. {{%/alert%}}

As the diagram data is transported via the browser, the diagrams.net server does not need to access the content on your Docsy server directly at all.

{{< figure src="docsy-diagrams.svg" caption="Mouse over the above image and click the Edit button!">}}

To enable detection of diagrams, update hugo.toml/hugo.yaml/hugo.json:

{{< tabpane >}} {{< tab header="Configuration file:" disabled=true />}} {{< tab header="hugo.toml" lang="toml" >}} [params.drawio] enable = true {{< /tab >}} {{< tab header="hugo.yaml" lang="yaml" >}} params: drawio: enable: true {{< /tab >}} {{< tab header="hugo.json" lang="json" >}} { "params": { "drawio": { "enable": true } } } {{< /tab >}} {{< /tabpane >}}

You can also deploy and use your own server for editing diagrams, in which case update the configuration to point to that server:

{{< tabpane >}} {{< tab header="Configuration file:" disabled=true />}} {{< tab header="hugo.toml" lang="toml" >}} [params.drawio] drawio_server = "https://app.mydrawioserver.example.com" {{< /tab >}} {{< tab header="hugo.yaml" lang="yaml" >}} params: drawio: drawio_server: 'https://app.mydrawioserver.example.com' {{< /tab >}} {{< tab header="hugo.json" lang="json" >}} { "params": { "drawio": { "drawio_server": "https://app.mydrawioserver.example.com" } } } {{< /tab >}} {{< /tabpane >}}