Skip to content
Discussion options

You must be logged in to vote

Using {language} means you want the content to be executed.

See "escaping inline/code cell".

Quarto document HTML
---
format: html
---


````markdown
---
title: "A short example"
---

```{{julia}}
#| echo: false
#| code-fold: true
#| output: false
using Pkg;
cd(@__DIR__)
Pkg.activate("."); # for reproducibility use the local tutorial environment.
```

First, load all necessary packages

```{{julia}}
using Manopt, Manifolds
M = Sphere(2)
```
````

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@kellertuer
Comment options

Answer selected by kellertuer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
markdown Related to markdown-like output format
2 participants