Advanced features

Published

February 10, 2023

About Quarto

Quarto is a markdown Pandoc variaton. Markdown is a plain text format designed to be easy to write and easy to read.


Text Formatting

italics text
bold text
superscript2
subscript2
outdated text
verbatim text

Headings

Title 1

Title 2

Title 3

Title 4

Title 5
Title 6

Lists

  • No order list

    • To-Do 1
    • To-Do 2
      • To-Do 2.1
  • List starts

    and here continues the list with identation

  1. First item
  2. Second item
    1. sub-item
      1. sub-sub-item
    2. second sub-item from Second item
  1. I can start a list of tasks here

break the listing to insert new text

  1. and don’t lose the list

Tables

A B C D E
1 2 3 4 5
6 7 8 9 10

Source code

Quarto allows to show blocks of code and run it!

Source code:

print("Hello world!")
Hello world!

Or you can display plain code:

public class Main {
  public static void main(String[] args) {
    System.out.println("Hello World");
  }
}

Math

With Quarto you can write math fomulas:

\[ P(E) = {n \choose k} p^k (2-p)^{n - k} \]