Upgrade to Pro — share decks privately, control downloads, hide ads and more …

RLI Latex beamer example slides

gplssm
December 16, 2019
1k

RLI Latex beamer example slides

gplssm

December 16, 2019
Tweet

Transcript

  1. The RLI L A TEX beamer theme …finally overcoming MS

    Powerpoint Guido Pleßmann Reiner Lemoine Institut December 16, 2019
  2. A new frame Create a new frame with title and

    content # A new frame With content in its body. December 16, 2019 Reiner Lemoine Institut 2
  3. Use formatting syntax The quick brown fox jumps over the

    lazy dog, not the cat. You can also quote it The quick brown fox jumps over the lazy dog, not the cat. Moreover, you can simply write L A TEX code in .md files. December 16, 2019 Reiner Lemoine Institut 3
  4. Use lists and enumerated lists ▶ item a ▶ item

    a.1 ▶ item a.1.a ▶ item a.1.b 1. item 1 1.1 item a 2. item 2 3. item 3 ▶ mix ▶ it December 16, 2019 Reiner Lemoine Institut 4
  5. Presenting code import requests import pandas as pd from tabulate

    import tabulate df = pd.DataFrame(requests.get('http://openenergy-platform.org/api/v0\ /schema/supply/tables/bnetza_eeg_anlagenstammdaten/rows/?limit=100').json df = df[[ '4.11_bundesland', '4.1_energieträger', '4.2_installierte_leistung', '4.16_name_des_netzbetreibers']] df.columns = ["Federal state", "Technology", "Inst. Power", "Grid operator" print(tabulate(df.head(10), tablefmt="pipe", headers="keys")) December 16, 2019 Reiner Lemoine Institut 7
  6. Tables Federal state Technology Inst. Power Grid operator 0 Niedersachsen

    Biomasse 366 Avacon AG 1 Bayern Biomasse 380 Bayernwerk AG 2 Bayern Wasserkraft 6 Bayernwerk AG 3 Hessen Biomasse 380 EnergieNetz Mitte GmbH 4 Bayern Wind Land 3050 Bayernwerk AG 5 Nordrhein-Westfalen Biomasse 400 Westfalen Weser Netz GmbH 6 Nordrhein-Westfalen Biomasse 1200 Westfalen Weser Netz GmbH 7 Schleswig-Holstein Wind Land 2000 Schleswig-Holstein Netz AG 8 Hessen Biomasse 400 EnergieNetz Mitte GmbH 9 Bayern Biomasse 1000 MDN Main-Donau Netzgesellschaft mbH December 16, 2019 Reiner Lemoine Institut 8
  7. Math SinkDSM following “On the representation of demand-side management in

    power system models” Zerrahn and Schill (2015) ̇ = + − + ∑ =− , ∀ ∈ (1) December 16, 2019 Reiner Lemoine Institut 9
  8. Math SinkDSM following “On the representation of demand-side management in

    power system models” Zerrahn and Schill (2015) ̇ = + − + ∑ =− , ∀ ∈ (1) = + ∑ =− , ∀ ∈ (2) December 16, 2019 Reiner Lemoine Institut 10
  9. Math SinkDSM following “On the representation of demand-side management in

    power system models” Zerrahn and Schill (2015) ̇ = + − + ∑ =− , ∀ ∈ (1) = + ∑ =− , ∀ ∈ (2) ≤ ∀ ∈ (3) December 16, 2019 Reiner Lemoine Institut 11
  10. Math SinkDSM following “On the representation of demand-side management in

    power system models” Zerrahn and Schill (2015) ̇ = + − + ∑ =− , ∀ ∈ (1) = + ∑ =− , ∀ ∈ (2) ≤ ∀ ∈ (3) + ∑ =− , ≤ ∀ ∈ (4) December 16, 2019 Reiner Lemoine Institut 12
  11. Math SinkDSM following “On the representation of demand-side management in

    power system models” Zerrahn and Schill (2015) ̇ = + − + ∑ =− , ∀ ∈ (1) = + ∑ =− , ∀ ∈ (2) ≤ ∀ ∈ (3) + ∑ =− , ≤ ∀ ∈ (4) + + ∑ =− , ≤ { , } ∀ ∈ (5) December 16, 2019 Reiner Lemoine Institut 13
  12. Use columns to organize your content A ▶ Explain ▶

    what’s December 16, 2019 Reiner Lemoine Institut 16
  13. Use columns to organize your content A ▶ Explain ▶

    what’s ▶ to December 16, 2019 Reiner Lemoine Institut 17
  14. Use columns to organize your content A ▶ Explain ▶

    what’s ▶ to ▶ see December 16, 2019 Reiner Lemoine Institut 18
  15. Aligning images A B C A B December 16, 2019

    Reiner Lemoine Institut 19
  16. Drawing with Tikz: animated energy system block diagram Household busbar

    Assuming we have a household including December 16, 2019 Reiner Lemoine Institut 20
  17. Drawing with Tikz: animated energy system block diagram Household busbar

    Assuming we have a household including ▶ Demand December 16, 2019 Reiner Lemoine Institut 21
  18. Drawing with Tikz: animated energy system block diagram Household busbar

    Assuming we have a household including ▶ Demand ▶ PV December 16, 2019 Reiner Lemoine Institut 22
  19. Drawing with Tikz: animated energy system block diagram Household busbar

    Assuming we have a household including ▶ Demand ▶ PV ▶ Grid connection December 16, 2019 Reiner Lemoine Institut 23
  20. Drawing with Tikz: animated energy system block diagram Household busbar

    Assuming we have a household including ▶ Demand ▶ PV ▶ Grid connection ▶ Demand-side management unit December 16, 2019 Reiner Lemoine Institut 24
  21. How to use the theme ▶ You need the .sty

    files and the img/ folder right next to your slides.md file ▶ Recommended workflow ▶ Have the clone of https://github.com/rl-institut/beamer_theme/ git clone [email protected]:rl-institut/beamer_theme.git ▶ Keep it up-to-date ▶ Copy required files to your slides path cp -r beamer_theme/img/ beamer_theme/*.sty <path-of-slide.md> December 16, 2019 Reiner Lemoine Institut 27
  22. Command to build these slides pandoc -t beamer--pdf-engine=xelatex -o example-slides.pdf

    example-slides. with frontmatter --- - title: <Title> - ... - theme: rli --- December 16, 2019 Reiner Lemoine Institut 28
  23. Information must be provided in markdown header Requires the following

    L A TEX code in - header-includes --- header-includes: - | \newcommand{\tel}{+49 (0)30 1208 434 72} \newcommand{\email}{[email protected]} \newcommand{\twitter}{\href{https://twitter.com/gplssm}{@gplssm}} \newcommand{\finalstatement}{Enjoy stating a final statement ;-)} --- December 16, 2019 Reiner Lemoine Institut 29
  24. Find help ▶ Pandoc manual: https://pandoc.org/MANUAL.html ▶ Useful overview of

    commands for formatting with Markdown and pandoc: http://www.flutterbys.com.au/stats/tut/tut17.3.html ▶ Theme repository: https://github.com/rl-institut/beamer_theme December 16, 2019 Reiner Lemoine Institut 30
  25. Enjoy stating a final statement ;-) License Except where otherwise

    noted, this work and its content (texts and illustrations) are licensed under the Attribution 4.0 International (CC BY 4.0). See license text for further information. Please cite as ”The RLI L A TEX beamer theme: …finally overcoming MS Powerpoint” © Reiner Lemoine Institut | CC BY 4.0 Guido Pleßmann Tel: +49 (0)30 1208 434 72 E-Mail: [email protected] Web: www.reiner-lemoine-institut.de Twitter: @gplssm
  26. References Zerrahn, Alexander, and Wolf-Peter Schill. 2015. “On the Representation

    of Demand-Side Management in Power System Models.” Energy 84: 840–45. https://doi.org/https://doi.org/10.1016/j.energy.2015.03.037. December 16, 2019 Reiner Lemoine Institut 33