Hi,
I would like to ask how i can reduce the size of the main title of the article so that it takes fewer lines. Also is it possible to break the title at one point somehow? Thanks.
Lazaros
Text Formatting ⇒ Change Title Size in Article
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
Change Title Size in Article
Hi Lazaros,
welcome to the board!
Do you use the standard
minimal working example, so we can directly work on this example code.
In general, you could use the
Stefan
welcome to the board!
Do you use the standard
article
class? Do you use \maketitle
? You could always show what you do by posting a 
In general, you could use the
{titlepage}
environment for designing your own title page.Stefan
LaTeX.org admin
Re: Change Title Size in Article
Yes i'm using the standard article class and the \maketitle command to create the title. The only thing i need is to change the size of the title so that it occupies 2 instead of 3 lines.
Lazaros
Lazaros
- Stefan Kottwitz
- Site Admin
- Posts: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
Change Title Size in Article
I would use a
It should work, though I generally don't recommend to use font commands in macros which are intended to contain only text. I just don't wanted to complicate it here. But if you like to learn another way, we could do it.
Stefan
titlepage
environment. Alternatively, I would redefine or patch the \maketitle
command. However, a quick and easy way would be using the font size changing command within the argument of \title
, such asCode: Select all
\title{\Large The very long title}
Stefan
LaTeX.org admin