You must add yourself to people.yml and indicate your name, position, a short description and a picture. Resizing your portrait picture to 160x200 and compressing it into WebP format with squoosh is strongly recommended.
You can add publications here: publications.yml and softwares here: softwares.yml
The picture used in the gallery will be matched based on the name in the yaml
file.
For example, this entry:
amlb:
title: "AMLB: An AutoML Benchmark"
authors:
- P. Gijsbers
...
Will use image images/papers/amlb.webp
or .png
.
Blog posts in the form of a Jupyter notebook can be added to the notebooks
folder. However, you must add a "raw" cell at the top of the notebook and fill it with the following content:
---
title: Example of jupyter notebook for Quarto
topic: Example
author: Alexis Cvetkov-Iliev
date: 2025-06-30
format:
html:
code-fold: false
preview: Text that is displayed on the blog overview page.
image: amlb/amlb-boat-or-car.webp # image in the images/blogs subdirectory
---
The topic
field is used to group similar posts into sections.
The date
is in year-month-day format. In each section, the most recent posts are on top.
Note that Quarto won't run again the code, so you must run everything before adding the notebook. An example of blog post is given here.
Convert the images to WebP format before adding them to the notebook.
On mac, you can use for image in *.png; do magick "$image" "${image%.png}.webp";done
to convert all the images in the folder to WebP format. Replace *.png
with the appropriate file extension if needed.