import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(0, 2*np.pi, 100)
plt.plot(x, np.sin(x))
plt.title("Funรงรฃo Seno")
plt.show()
Blog do Marcellini
June 29, 2025
โ Back to the Programming Reading Guide ๐จโ๐ป
โ Back to the Quarto Section ๐
โ Back to the Programming Section ๐จโ๐ป

This post consolidates, in a single place, the content from โMarkdown Model with Quarto โ Part 1โ and โPart 2โ, removing repetitions and organizing examples in a smoother way.
Quarto Markdown extends traditional Markdown for scientific and technical communication.
It allows mixing formatted text, executable code (R, Python, Julia, Observable), LaTeX equations, graphics, and tables in a .qmd file, automatically generating:
| Feature | Markdown (.md) | Quarto Markdown (.qmd) |
|---|---|---|
| Basic text formatting | โ | โ |
| HTML support | โ | โ |
| LaTeX equations | โ (limited or via extensions) | โ (native) |
| Executable code | โ | โ (R, Python, Julia, Observable) |
| EPUB/PDF/Slides generation | โ | โ |
| YAML support | Partial | โ (metadata and project configuration) |
| Target audience | Simple text | Scientific/technical publications with code |
โ Summary: use traditional Markdown for simple text; use Quarto Markdown when you need code, math, and visualizations in reproducible documents.
Visualization:
Visualization:
You can use bold, italic, or both: bold and italic.
You can also create quotations:
Mathematics is the language with which God has written the universe. โ Galileo
Visualization:
Visualization:
Visualization:
Official Quarto website
Visualizaรงรฃo:

Visualization:
| Name | Age | City |
|---|---|---|
| Alice | 25 | Sรฃo Paulo |
| Bernardo | 30 | Salvador |
| Carla | 22 | Curitiba |
Visualization:
The famous Euler identity: \(e^{i\pi} + 1 = 0\)
Visualization:
\[ \int_0^\infty e^{-x^2} \, dx = rac{\sqrt{\pi}}{2} \]
To show code without executing it, use a regular fenced code block (three backticks) and specify a language for syntax highlighting (for example, python).
You can combine it with collapsible callouts for better organization.
Visualization:
Use callouts to emphasize important information:
Visualization:
This is an informational note.
Visualization:
Tip: use {.callout-tip} for best practices.
Visualization:
Warning: make sure the code is properly indented.
Visualization:
Caution: changes in .qmd files may overwrite generated .md files.
Visualizaรงรฃo:
Important: Quarto replaces RMarkdown with more modern features!
Quarto Markdown is ideal for creating reproducible, beautiful, and interactive work.
With it, you can produce everything from simple notes to complete scientific reports, keeping everything version-controlled and automated.
โ Back to the Programming Reading Guide ๐จโ๐ป
โ Back to the Quarto Section ๐
โ Back to the Programming Section ๐จโ๐ป
๐ Back to Top
Blog do Marcellini โ Exploring Mathematics, Statistics, and Physics with Rigor and Beauty.
Created by Blog do Marcellini with โค๏ธ and code.