Presentations and PostersMetropolis theme

Beamer, Powerdot and KOMA-Script presentations, Conference posters (a0poster, baposter, tikzposter)
Post Reply
Athene_47
Posts: 15
Joined: Fri Apr 06, 2018 5:02 pm

Metropolis theme

Post by Athene_47 »

Hi guys :)
I am using for a conference presentation metropolis theme. I need to insert the name of the two authors with the institute references like in the image below. How can I do ?

Thanks guys

Code: Select all

\documentclass[10pt]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[english]{babel}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usetheme{metropolis}
\usepackage{appendixnumberbeamer}
\usepackage{booktabs}
\usepackage[scale=2]{ccicons}
\usepackage{pgfplots}
\usepackage{xspace}
\newcommand{\themename}{\textbf{\textsc{metropolis}}\xspace}

\title{Prove with metropolis theme}
\subtitle{A modern beamer theme}
\date{\today}
\author{Daniela Cialfi Emiliano Colantonio}
\institute{Center for modern beamer themes}
%\titlegraphic{\hfill\includegraphics[height=1.5cm]{logo.pdf}}
Attachments
esempio_da_ricreare.JPG
esempio_da_ricreare.JPG (41.79 KiB) Viewed 21289 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
kaiserkarl13
Posts: 707
Joined: Tue Mar 25, 2008 5:02 pm

Metropolis theme

Post by kaiserkarl13 »

Here's a minimal working example that seems to do what you want:

Code: Select all

\documentclass[10pt]{beamer}
\usetheme{metropolis}
\title{Prove with metropolis theme}
\subtitle{A modern beamer theme}
\author{Daniela Cialfi$^1$ \and Emiliano Colantonio$^2$}
\institute{$^1$Center for modern beamer themes\\
  $^2$Other center for less modern beamer themes}
\begin{document}
\begin{frame}[plain]
\titlepage
\end{frame}
\end{document}
Post Reply