Document Classes[Beamer] Promoter's surname on titlepage

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
dagna
Posts: 16
Joined: Wed Mar 03, 2010 7:28 pm

[Beamer] Promoter's surname on titlepage

Post by dagna »

Hi!

I'm preparing presentation on defend my thesis. I have problem with title page. I have got:
* \title{my thesis title}
* \author{my name and surname}
* \institute{my university}
* \date{the day when I will defend my thesis}

But I have one problem. I need insert the my promoter's surname, for example:
Promoter: Dr Daniel Smith
I think in should be between author and institute, but I need some space under author.

It can't compile:

Code: Select all

\author{my name and surname\\ \vspace{5pt} \footnotesize Promoter: Dr Daniel Smith}
Has anybody an idea how can I do it?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

[Beamer] Promoter's surname on titlepage

Post by frabjous »

Please provide a minimal working example.

For what it's worth, I have no trouble compiling:

Code: Select all

\author{my name and surname\\ \vspace{5pt} \footnotesize Promoter: Dr Daniel Smith}
though it doesn't do what you want.

You could try, e.g.:

Code: Select all

\author{my name and surname \\[15pt]{\footnotesize Promoter: Dr Daniel Smith}}
Change "15pt" to whatever.

Or you could put that info inside the \institute line:

Code: Select all

\institute{Promoter: Dr. Daniel Smith \\[12pt] my university}
But you should really follow board rules and provide a MWE.
dagna
Posts: 16
Joined: Wed Mar 03, 2010 7:28 pm

Re: [Beamer] Promoter's surname on titlepage

Post by dagna »

Thanks a lot for help :)
Post Reply