matze / mtheme

A modern LaTeX Beamer theme
6.39k stars 843 forks source link

Placement of institute on title slide #180

Open twsh opened 8 years ago

twsh commented 8 years ago

This is a very subjective issue, so I make the following suggestion tentatively. To me it seems that the institute belongs conceptually with the author. Currently it appears a long way away. I think it would be better appearing immediately after with nothing intervening.

benjamin-weiss commented 8 years ago

In my opinion the page layout doesn't look very good if the order of date and institute is changed. Here is quick sketch.

metro verschoben

twsh commented 8 years ago

I prefer it that way.

rchurchley commented 8 years ago

It's definitely a subjective issue, so I'm not sure whether we're likely to reach a consensus. For what it's worth, I quite like @twsh's suggestion of grouping the author and institute together.

I think we can do it elegantly if we adjust the spacing and slightly mute the colour of the institute:

screen shot 2016-02-23 at 1 04 03 pm

matze commented 8 years ago

This is indeed a very subjective issue which is why we should postpone it until we can come up with a flexible solution that satisfies everyone. For now, I'd say, it looks "good enough".

nomeata commented 8 years ago

I’m about to start mtheme and this was my first stumbling step.

I worked (hacked) around it this way:

\title{Actual title}
\subtitle{Conference name\\Date of talk}
\author{Joachim Breitner}
\date{}% needs to be empty
\institute{Author’s institute}

This groups the date with the talk, and the institute with the author.

notmatthancock commented 8 years ago

Combining @rchurchley 's suggestion with @nomeata 's to give a lighter-grayish-teal subtitle and date:

\documentclass{beamer}
\usepackage{xcolor}
\definecolor{LightGray}{rgb}{0.45,0.5,0.45}
\usetheme{metropolis}
\title{A correlation study between burrito girth and tortilla fail point: how many beans is too many?}
\subtitle{\vspace{5pt} \textcolor{LightGray}{Burrito Con \\ Jan 1, 2048}}
\date{}
\author{Author 1, Author 2}
\institute{Institute for Advanced Burrito Studies}
\begin{document}
  \maketitle
\end{document}