--- title: "Systematic investing" subtitle: "PRIME Q presentation template" author: "Presenter Name" date: today date-format: "MMMM YYYY" lang: en format: revealjs: footer: "PRIME Q · presentation template" --- # How this template works {.section-divider} [01]{.eyebrow} ## When to reach for Quarto over PowerPoint - Quarto, when a slide has to carry the result of a calculation - The chart is computed at render time, so it cannot drift from the data - PowerPoint, when someone else will edit the deck after you - The same `.qmd` file renders to slides and to a document ## What the theme carries - The palette, the typeface and the slash-shaped bullet - The rule that opens a slide, with its red lead-in - Tables, quotes and code blocks already have their look > If a slide needs a paragraph of explanation, it is two slides. ## A chart computed at render time ```{python} #| fig-width: 10 #| fig-height: 4.2 # Sample data, shown only to fix the chart style. import matplotlib.pyplot as plt labels = ["Strongly agree", "Agree", "Neutral", "Disagree", "Strongly disagree"] values = [34, 58, 21, 12, 7] colours = ["#041E42"] * len(values) colours[1] = "#E11D2E" # one bar carries the accent fig, ax = plt.subplots() ax.bar(labels, values, color=colours, width=0.62) ax.set_ylabel("Responses", color="#6B7280") ax.spines[["top", "right"]].set_visible(False) ax.spines[["left", "bottom"]].set_color("#E5E7EB") ax.tick_params(colors="#6B7280", length=0) ax.grid(axis="y", color="#E5E7EB", linewidth=0.8) ax.set_axisbelow(True) fig.tight_layout() ``` Sample data. The source line always goes under the chart. ## One slide carries one idea. {.statement} The rest belongs in the speaker notes. ## Legal notice {.legal} PRIME Q is a project. The entity does not exist in legal form and holds no permission from the Polish Financial Supervision Authority (KNF) to conduct regulated activity. This material is for information only. It is not an offer, an invitation to treat, an investment recommendation or investment advice. No historical or simulated performance is published. No figure in this deck is a promise of a result. # Let us talk. {.section-divider} kontakt@primeq.pl · primeq.pl · Warsaw, Poland