LyX ⇒ Removing space after end of title
-
- Posts: 2
- Joined: Sat Nov 10, 2018 12:24 am
Removing space after end of title
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Removing space after end of title
\maketitle
, which LyX propably uses internally. But you don't need to use a Title at all. If it is just for one document, just do it like you would do with a word processor. Put some bold text where you need it. In my opinion,
\maketitle
is one of the most mis-used, over-used, confused commands that ever existed.You could also be interested in Customize the titlepage and Title Creation.
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Removing space after end of title
Stefan
-
- Posts: 2
- Joined: Sat Nov 10, 2018 12:24 am
Removing space after end of title
That's... annoying.Johannes_B wrote:The space is hardcoded when using\maketitle
, which LyX propably uses internally.
Yeah, I'm going with this. Unfortunate, but thanks for your help.Johannes_B wrote:But you don't need to use a Title at all. If it is just for one document, just do it like you would do with a word processor. Put some bold text where you need it.
I was trying to fit the title onto the same page as the content to make a one-page document, that's the thing.Stefan Kottwitz wrote:Also I think, perhaps just don't make a predefined title page. You could write a simple normal text page in LyX, with centered text, large and big text, bold if needed, and then you start your actual document on the next page. A title page is nothing special, it's a simple text page. No references, no gimmicks, just a bit (usually centered) text that's a bit arranged on the page.
Stefan
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Removing space after end of title
You can do that to. As you use LyX, you are limited to LyX templates or need to change them yourself. If you would use LaTeX, I could easily give a code line to fix. LyX is nice and easy but a somehow template-ish.pizzapasta wrote:I was trying to fit the title onto the same page as the content to make a one-page document, that's the thing.
Anyway, after the title you could insert negative space (if LyX can do) or ERT (TeX code)
\vspace{-50pt}
for example.Stefan