Document ClassesTitle too long ...

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
paulosousa
Posts: 90
Joined: Sun Jun 24, 2012 8:48 pm

Title too long ...

Post by paulosousa »

Hello,

I have a problem with the title too long to be at bottom of page ... but I really need it there. how can I solve this ? (using this theme if possible)

other problem is that the university logo is not where I need it... between author and institute! Any idea how I can solve this?

Code: Select all

\documentclass[11pt, compress, spanish]{beamer}
\usepackage{beamerthemeshadow}
\usepackage[spanish]{babel}
\usepackage[applemac]{inputenc}
\usepackage{amsmath,amssymb,amsfonts,textcomp,setspace,graphicx,lipsum,hanging,url,hyperref,textpos}
\usepackage[bottom]{footmisc}
\usepackage[none]{hyphenat}

\usetheme{Warsaw}
\usecolortheme[named=purple]{structure}

\expandafter\def\expandafter\insertshorttitle\expandafter{%
  \insertshorttitle\hfill%
  \insertframenumber\,/\,\inserttotalframenumber}
  
  
 \setbeamertemplate{footnote}{%
 \hangpara{0.25cm}{1}%
 \makebox[0.25cm][l]{\insertfootnotemark}\footnotesize\insertfootnotetext\par%
 }

\renewcommand*{\footnoterule}{}


\title{\textbf{A motivação e o desenvolvimento da competência de leitura no ensino das línguas}} 
\author{\textbf{Susana Isabel Morais da Silva}}
\titlegraphic{\includegraphics[width=1cm]{figuras/logo1UM.png}\hspace*{0cm}~%
\includegraphics[width=1cm]{figuras/logo2UM.png}}
\institute {Universidade do Minho \\ Instituto de Educação}
\date{\footnotesize{julho 2013}}

\begin{document}
\setbeamertemplate{caption}[numbered]
\frame{\titlepage}
\frame{\tableofcontents}

\begin{frame}
...
\end{frame}
\end{document}

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

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Title too long ...

Post by Johannes_B »

Your code is not compilable (loaded graphics).

Concerning your title problem: You can use a short title, just like you can do with captions.

\title[short title]{long long title}


You can take a look here to see a possible solution for your second problem.
Last edited by Johannes_B on Tue May 07, 2013 10:31 am, edited 1 time in total.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Title too long ...

Post by Stefan Kottwitz »

You could use the optional argument of \title for a shorter version for the footer. (edit: now I saw that Johannes said it a minute earlier, very good)

Code: Select all

\title[A motivação e o desenvolvimento da competência]{\textbf{A motivação
    e o desenvolvimento da competência de leitura no ensino das línguas}}
Regarding the logo, you could use \includegraphics also within \author or \institute, together with a line break, to get it positioned where you want. Also here, it might then be a good idea to use the optional argument to not have the logo in the footer too.

Stefan
LaTeX.org admin
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Title too long ...

Post by localghost »

The problem with the logo has also been posted in another thread. So the discussion can continue there in order not to mix up topics here. Proposed solutions should be posted there subsequently.
paulosousa
Posts: 90
Joined: Sun Jun 24, 2012 8:48 pm

Title too long ...

Post by paulosousa »

Hi Stefan, thanks a lot. Could you please give me more help to do this?
Stefan_K wrote: Regarding the logo, you could use \includegraphics also within \author or \institute, together with a line break, to get it positioned where you want. Also here, it might then be a good idea to use the optional argument to not have the logo in the footer too.

Stefan
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Title too long ...

Post by localghost »

I have posted a possible solution in the other thread as already mentioned in my last reply.
Post Reply