Text Formattingmaketitle adjustment

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
xbender
Posts: 9
Joined: Thu Aug 26, 2010 10:39 pm

maketitle adjustment

Post by xbender »

Hello,
I would like to ask if it is possible to adjust some settings of "maketitle" command. I have "title" and "author" (in which I have 2 authors as I am one of co-authors). I would like to adjust (increase) the vertical spacing between Title and Authors. Is it possible? how can I do that?

I would also welcome a possibility to change the fontsize of "author" tag. I would like the names to be bigger than the name of institutions that we are from.

example of my code

Code: Select all

\title{Title}
\author
{
   Name author 1 
\\ Institution 
\\ Department
\\ University %author 1 works in "institution" and studies for PhD at University (so he is active in both)
\and 
Name author 2 \\
Institution \\
Department
}
\date{}
\maketitle
I will appreciate any help! thank you

Recommended reading 2024:

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

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

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

maketitle adjustment

Post by frabjous »

Depending on what document class you're using (which you didn't tell us...) you might be able use the titling package to customize the effects of \maketitle.
pepperedmoth
Posts: 9
Joined: Sun Nov 16, 2008 5:32 am

maketitle adjustment

Post by pepperedmoth »

I, personally, would forego the whole "maketitle" bit and manually format the title. It's not hard. As you can see, you can specify the space between lines and the font of each line.

Code: Select all

\documentclass[12pt]{article}
\begin{document}
\begin{titlepage}
\begin{center}
\Huge{Very Big Title}\\[1cm]
\Large{Author One and Author Two}\\[5cm]
\large{Your College\\Your University\\{\today}}
\end{center}
\end{titlepage}
\stepcounter{page}
\end{document}
Post Reply