Skip to content
Snippets Groups Projects
Select Git revision
  • bced419b694e6fe49b1dd74b081adef169956658
  • main default protected
  • renovate/jsonschema-4.x
  • renovate/django-5.x
  • koma/feature/preference-polling-form
5 results

slides.tex

  • Benjamin Hättasch's avatar
    Benjamin Hättasch authored and Nadja Geisler committed
    Show type information for each AK if available
    Show applied filter on first slide of presentation (if relevant)
    Add helper method to get stringified list of types for an AK
    Fix documentation comments for AK model properties
    577652a8
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    slides.tex 2.57 KiB
    \documentclass[aspectratio=169]{beamer}
    \usetheme[numbering=fraction, progressbar=foot]{metropolis}
    
    \usepackage{fontspec}
    \usepackage{fontawesome5}
    
    \title{ {{- title -}} }
    \subtitle{ {{- subtitle -}} }
    \date{\today}
    
    \begin{document}
    
    \begin{frame}
    \maketitle
    \end{frame}
    
    \begin{frame}
        \frametitle{ {{- translations.symbols -}} }
    
        \faUser~ {{ translations.who }}
    
        {% if show_types %}
            \faList~ {{ translations.types }}
        {% endif %}
    
        \faClock~ {{ translations.duration }}
    
        \faScroll~{{ translations.reso }}
    
        \faFilter~ {{ translations.category }}
    
    \end{frame}
    
    
    {%for category, ak_list in categories_with_aks %}
    
        \section{ {{- category.name -}} }
    
        {% for ak, next_aks in ak_list %}
    
            {% if not ak.wish %}
    
                %\setbeamertemplate{frame footer}{}
    
                \begin{frame}
                    \frametitle{ {{- ak.name | latex_escape -}} }
    
                    \vspace{1em}
    
                    \faUser~ {{ ak.owners_list | latex_escape }}
    
                    {% if show_types %}
                        \faList~ {{ak.types_list }}
                    {% endif %}
    
                    {% if not result_presentation_mode %}
                        \faClock~ {{ak.durations_list}}
                    {% endif %}
    
                    {% if ak.reso %}
                        \faScroll
                    {% endif %}
    
                    {{ ak.description | truncatechars(280) | latex_escape }}
    
                    \vspace{2em}
    
                    \begin{scriptsize}
                        {% for n_ak in next_aks %}
                            {% if n_ak %}\hfill \faAngleDoubleRight~ {{- n_ak.name | latex_escape_utf8 -}}{% endif %}
                        {% endfor %}
                    \end{scriptsize}
    
                \end{frame}
    
            {% endif %}
    
        {% endfor %}
    
    {% endfor %}
    
    {% if not result_presentation_mode %}
    
        \section{ {{- translations.wishes -}} }
    
        {% for ak, next_aks in wishes %}
    
            %\setbeamertemplate{frame footer}{}
    
            \begin{frame}
                \frametitle{ {{- ak.name | latex_escape -}} }
    
                \vspace{1em}
    
                \faFilter~ {{ ak.category.name | latex_escape }}
    
                {% if space_for_notes_in_wishes %}
                \faUser~
    
                \faClock~
                {% endif %}
    
                {{ ak.description | truncatechars(280) | latex_escape }}
    
                \vspace{2em}
    
                \begin{scriptsize}
                    {% for n_ak in next_aks %}
                        {% if n_ak %}\hfill \faAngleDoubleRight~ {{- n_ak.name | latex_escape_utf8 -}}{% endif %}
                    {% endfor %}
                \end{scriptsize}
    
            \end{frame}
        {% endfor %}
    {% endif %}
    
    \end{document}