tags:

views:

70

answers:

2
+3  Q: 

LaTeX, footnote

I am writing a document in which I want to have a footnote with this text:

University of xyz
Email: [email protected]
[email protected]

I have entered this command:

\footnote{University of xyz \\ Email: [email protected] \\ [email protected]}

and the result is as follows:

   1. University of xyz
Email: [email protected]
[email protected]

This does not look nice. I want it to come line under line like this:

1. University of xyz
   Email: [email protected]
          [email protected]

How can I get this?

A: 

Try using the \thanks command and see if that works.

Otherwise, have a read of this documentation. While it doesn't answer your question, it may give you a pointer or two for further research.

cristobalito
+2  A: 

You could use \parbox and also tabular in a footnote text. This allows such formatting. You're also kindly invited to discuss this with us on http://tex.stackexchange.com/.

Stefan