Mustafa
Mustafa

Reputation: 31

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?

Upvotes: 3

Views: 1407

Answers (2)

Stefan
Stefan

Reputation: 3620

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 https://tex.stackexchange.com/.

Upvotes: 2

cristobalito
cristobalito

Reputation: 4282

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.

Upvotes: 0

Related Questions