reveal.js
needs JavaScript to work properly!
Please enable JavaScript in your browser.
🏠 Go Back
🖶 Export
# The RUB theme for reveal.js ## This is a html sample --- # Sliding ## Even vertical stacking should work as you will see below # Largest ## Larger ### Large #### Small ##### Smaller Demo Note: These are speaker notes! --- # Lists ## Some stuff with lists Was ist eigentlich mit
\\(\phi\left(5\right) = 4\\)
? ### Only unordered - Level one - Level two * And Level three * with stuff - More - And even more ### Unordered in ordered 1. Level one - Level two 2. Level three - More 3. And even more ### Ordered in unordered + Level one 1. Level two - Level three 2. More + And even more ### Only ordered 2. Level one 1. Level two 6. And level three 3. with stuff 2. More 3. And even more ---
And this is inline html
Resulting in a list
at least I hope so
this should be second
---
And even more html
In the Form of
Numbered Lists
--- # Code Highlights ## We can even do code highlighting ### Some python code ``` def main(): print("Hello World!") # Start directly if __name__ == '__main__': main() ``` Very important!!! ### Just a cup of Java ``` public class HelloWorld { /* Say hello to all our friends * out there in the wild! :) */ public static void main(String[] args) { System.out.println("Hello World!"); } } ``` - This is cool - And can be themed ### I can't C # # ``` #include <stdio.h> // The entry point int main() { printf("Hello World!\n"); return 0; } ```