Esempio titolo prima riga
Seconda riga
Esempio sottotitolo prima riga
seconda riga
25 ottobre 2025
--- ## Esempio di divisoria Esempio di sottotitolo --- ## Esempio di divisoria Esempio di sottotitolo --- Agenda Titolo 1. **Titolo lorem ipsum dolor** 2. Titolo lorem ipsum dolor 3. Titolo lorem ipsum dolor 4. Titolo lorem ipsum dolor --- ## One paragraph
Luiss University has currently **19 double degree programs** with prestigious universities from every corner of the world, as well as several structured partnerships and international networks, such as the **QTEM** - Quantitative Techniques for Economics and Management.
--- ## Two columns
This slide demonstrates the `col`, `top-col` and `no-column` tags.
Luiss University has currently **19 double degree programs** with prestigious universities from every corner of the world, as well as several structured partnerships and international networks, such as the **QTEM** - Quantitative Techniques for Economics and Management.
Luiss University has currently **19 double degree programs** with prestigious universities from every corner of the world, as well as several structured partnerships and international networks, such as the **QTEM** - Quantitative Techniques for Economics and Management.
This sentence is not part of the columns
--- ## Fragments list
You can reveal bullet points progressively using `fragment` tags.
- Item 1 - Item 2: this is shown with item 1
- Item 3
- Item 4
This sentend is shown at the beginning of the slide!
--- ## Fragments with custom order
You can also control fragment order using `fragment-index-N` tags.
- Item 1 (index 3)
- Item 2 (index 1)
- Item 3 (index 2)
--- ## Alerts (NOTE, HINT, WARNING, RECALL)
The following cells use alert tags to render styled callouts:
mysum += i
is the same as
mysum = mysum + i2
.
Use
mysum += i
to make your code shorter.
Be careful: changing the operator changes the meaning of the expression.
--- ## Text with footnote
Luiss University has currently **19 double degree programs** with prestigious universities from every corner of the world, as well as several structured partnerships and international networks, such as the **QTEM**
1
.
1
Quantitative Techniques for Economics and Management. Quantitative Techniques for Economics and Management. Quantitative Techniques for Economics and Management. Quantitative Techniques for Economics and Management.
--- ## Inline math and block math
Luiss University has currently **19 double degree programs** with prestigious universities from every corner of the world, as well as several structured partnerships and international networks, such as $\\sum_{i=1}^{n} i^2$. $$ E = mc^2 $$
--- ## Two paragraphs
Luiss University has currently **19 double degree programs** with prestigious universities from every corner of the world, as well as several structured partnerships and international networks, such as the **QTEM** - Quantitative Techniques for Economics and Management. Luiss University has currently **19 double degree programs** with prestigious universities from every corner of the world, as well as several structured partnerships and international networks, such as the **QTEM** - Quantitative Techniques for Economics and Management.
--- ## One paragraph with image
Luiss University has currently **19 double degree programs** with prestigious universities from every corner of the world, as well as several structured partnerships and international networks, such as the **QTEM** - Quantitative Techniques for Economics and Management.
--- ## Short source code
Some pretty code: ```java public void test() { String words = "Hello world!"; int[] numbers = {0, 1, 42, 1337}; System.out.println(words); } ```
--- ## Table
| Column 1 | Column 2 | Column 3 | | :------: | :------: | :------: | | Row 1 | Row 1 | Row 1 | | Row 2 | Row 2 | Row 2 | | Row 3 | Row 3 | Row 3 |
--- ## Three paragraphs
Luiss University has currently **19 double degree programs** with prestigious universities from every corner of the world, as well as several structured partnerships and international networks, such as the **QTEM** - Quantitative Techniques for Economics and Management. Luiss University has currently **19 double degree programs** with prestigious universities from every corner of the world, as well as several structured partnerships and international networks, such as the **QTEM** - Quantitative Techniques for Economics and Management. Luiss University has currently **19 double degree programs** with prestigious universities from every corner of the world, as well as several structured partnerships and international networks, such as the **QTEM** - Quantitative Techniques for Economics and Management.
--- ## One paragraph with nested lists
Luiss University has currently **19 double degree programs** with prestigious universities from every corner of the world, as well as several structured partnerships and international networks, such as the **QTEM** - Quantitative Techniques for Economics and Management. 1. A - one - two - three - one - two - three 2. B 3. C
--- ## Image on top
Luiss University has currently **19 double degree programs** with prestigious universities from every corner of the world, as well as several structured partnerships and international networks, such as the **QTEM** - Quantitative Techniques for Economics and Management.
--- ## Image on bottom
Luiss University has currently **19 double degree programs** with prestigious universities from every corner of the world, as well as several structured partnerships and international networks, such as the **QTEM** - Quantitative Techniques for Economics and Management.
--- ## Two images (top and bottom)
Luiss University has currently **19 double degree programs** with prestigious universities from every corner of the world, as well as several structured partnerships and international networks, such as the **QTEM** - Quantitative Techniques for Economics and Management.
--- ## Two images side by side
This slide corresponds to the template with two images side by side:
--- ## Two columns (text)
This corresponds to the "Two columns" slide in the markdown template.
Luiss University has currently **19 double degree programs** with prestigious universities from every corner of the world, as well as several structured partnerships and international networks, such as the **QTEM** - Quantitative Techniques for Economics and Managemen
Luiss University has currently **19 double degree programs** with prestigious universities from every corner of the world, as well as several structured partnerships and international networks, such as the **QTEM** - Quantitative Techniques for Economics and Management.
--- ## Two columns with image on the left
Luiss University has currently **19 double degree programs** with prestigious universities from every corner of the world, as well as several structured partnerships and international networks, such as the **QTEM** - Quantitative Techniques for Economics and Management.
--- ## Two columns with resized image on the right
Luiss University has currently **19 double degree programs** with prestigious universities from every corner of the world, as well as several structured partnerships and international networks, such as the **QTEM** - Quantitative Techniques for Economics and Management.
--- ## Inline code examples
Variables `iso`, `iso_size` and `destination` belong to function `copy_iso_to_usb()`.
--- ## Short code with line numbers
```java [] public void test() { String words = "Hello world!"; int[] numbers = {0, 1, 42, 1337}; System.out.println(words); } ```
--- ## Short code with highlighted lines
```java [1, 3] public void test() { String words = "Hello world!"; int[] numbers = {0, 1, 42, 1337}; System.out.println(words); } ```
--- ## Long source code variants
```java public void test() { String words = "Hello world!"; int[] numbers = {0, 1, 42, 1337}; System.out.println(words); // Print each number in the array for (int n : numbers) { System.out.println(n); } System.out.println("Well this is a very long line of code, I wonder how it will wrap? Do you know? I am very curious ... . Well, let's find out, shall we!"); } public void test2() { String words = "Hello world!"; int[] numbers = {0, 1, 42, 1337}; System.out.println(words); // Print each number in the array for (int n : numbers) { System.out.println(n); } System.out.println("Well this is a very long line of code, I wonder how it will wrap? Do you know? I am very curious ... . Well, let's find out, shall we!"); } ```
--- ## Code with output
```java public void test() { String words = "Hello world!"; int[] numbers = {0, 1, 42, 1337}; System.out.println(words); // Print each number in the array for (int n : numbers) { System.out.println(n); } System.out.println("Well this is a very long line of code, I wonder how it will wrap? Do you know? I am very curious ... . Well, let's find out, shall we!"); } ``` Output example: ```text 0 1 42 1337 "Well this is a very long line of code, I wonder how it will wrap? Do you know? I am very curious ... . Well, let's find out, shall we!" ```
--- ## Table without header
Row 1
Row 1
Row 1
Row 2
Row 2
Row 2
Row 3
Row 3
Row 3
--- ## Table with images
| Column 1 | Column 2 | Column 3 | | :------: | :------: | :------: | |
|
|
| | A | B | C |
--- ## Text with footnotes
Luiss University has currently **19 double degree programs** with prestigious universities from every corner of the world, as well as several structured partnerships and international networks, such as the **QTEM**
1,2,3
.
1
Quantitative Techniques for Economics and Management. Quantitative Techniques for Economics and Management. Quantitative Techniques for Economics and Management. Quantitative Techniques for Economics and Management.
2
Quantitative Techniques for Economics and Management. Quantitative Techniques for Economics and Management.
3
Quantitative Techniques for Economics and Management. Quantitative Techniques for Economics and Management.
--- ## Math examples
Inline math: $\\sum_{i=1}^{n} i^2$. Block math: $$ E = mc^2 $$
--- ## Images with fragment effects
--- ## Website embed
Anything that allows you to embed a website can be used, for example Google Maps:
---
Auto-animate example (slide 1)
---
Auto-animate example (slide 2)