Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 493 Bytes

template_Slides.md

File metadata and controls

40 lines (27 loc) · 493 Bytes

title: "Vorlesung Webengineering 1 - XXXX" topic: "Webengineering_1_X" author: "Lukas Panni" theme: "Berlin" colortheme: "dove" fonttheme: "structurebold" fontsize: 12pt urlcolor: olive linkstyle: boldslanted aspectratio: 169 lang: de-DE section-titles: true plantuml-format: svg ...

New Section

New Slide

Subheading

  • Actual Content text

New Slide

New Section

Code Example:

fib n = 
    | n < 2 = 1
    | otherwise = fib (n-1) + fib (n-2)