Text FormattingHow to format the Author with Thanks To

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
The Kings Raven
Posts: 1
Joined: Sun Dec 19, 2010 10:54 am

How to format the Author with Thanks To

Post by The Kings Raven »

High there.

I've got a document that where pretty much all the work was done by myself but several people made suggestions so I want to include them in the credits. What's usual Latex command for this? I found the \thanks but that seemed to be some sort of footnote. I was thinking more along the lines of

By Author Name
With thanks to
name1, name2
name3, name4,

for Reason

What's the way to set that up?
Last edited by The Kings Raven on Mon Dec 20, 2010 2:31 pm, edited 1 time in total.

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

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

How to format the Author with Thanks To

Post by localghost »

I see several possible solutions which allow to create a title.
  • Use the \maketitle command to format the title of your document. Formatting would be quite restricted due to the limitations of this command.

    Code: Select all

    \documentclass[11pt,a4paper,english]{report}
    \usepackage[T1]{fontenc}
    \usepackage[utf8]{inputenc}
    \usepackage{babel}
    
    \title{A Document}
    \author{%
      by The Author\\
      \small with thanks to\\
      \normalsize Another Author, One more Author\\
      \small for their enriching thoughts
    }
    
    \begin{document}
      \maketitle
    \end{document}
    The titling package might help to go beyond these limitations.
  • Use the titlepage environment to create a title on your own that is not bounded to the above mentioned command.
  • Take a look at the document »Some Examples for Title Pages« to get some inspiration. The introduced examples can be used in conjunction with the above mentioned environment.

Best regards and welcome to the board
Thorsten
Post Reply