LyX ⇒ Why is there a blank first page on my book?
-
- Posts: 128
- Joined: Wed Jul 04, 2012 5:34 pm
Why is there a blank first page on my book?
Why is it doing that, and how can I delete the blank page?
I'm using windows with LyX 2.0 and MiKTeX 2.9
I'm designing a book using the Koma-script class
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
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Why is there a blank first page on my book?
There are more possible reasons, but I need to see how the beginning is done before I know which issue causes it. Perhaps post a reduced copy of the LyX document (same settings, just with the cover), as attachment, if it shows that behavior. Or a LaTeX exported file which does, as a

Stefan
-
- Posts: 128
- Joined: Wed Jul 04, 2012 5:34 pm
Re: Why is there a blank first page on my book?
- Attachments
-
- Alternative Crops for Drylands - Ebook - Copy.lyx
- (63.08 KiB) Downloaded 2526 times
I'm using windows with LyX 2.0 and MiKTeX 2.9
I'm designing a book using the Koma-script class
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Why is there a blank first page on my book?
Otherwise, please also post the file you include in your cover, for a real test.
Stefan
-
- Posts: 128
- Joined: Wed Jul 04, 2012 5:34 pm
Re: Why is there a blank first page on my book?
Even if I select the jpg file using pdfpages, I will still get a blank first page.
I'm using windows with LyX 2.0 and MiKTeX 2.9
I'm designing a book using the Koma-script class
-
- Posts: 128
- Joined: Wed Jul 04, 2012 5:34 pm
Why is there a blank first page on my book?
What do you mean by this? You want me to attach the one-page pdf file of the cover? The cover was produced by creating a new document, setting all margins to zero, and then inserting the jpg file as a graphic float. Then I opened up a new document and used pdf pages to select the second page of that document, since the first page was the auto-generated blank page.Stefan_K wrote: Otherwise, please also post the file you include in your cover, for a real test.
Either way, it's too complicated.
If I insert the jpg using pdfpages I get the first page blank.
If I insert the pdf using pdfpages I get the first page blank.
If I insert the jpg as a float I get the first page blank. (even when I set all margins to zero for the entire document).
If I just insert the jpg as a graphic (no float) I get the first page blank.
I think your original hypothesis is correct, and it has something to do with document thinking what I insert is too big.
I'm using windows with LyX 2.0 and MiKTeX 2.9
I'm designing a book using the Koma-script class
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Why is there a blank first page on my book?
Perhaps there are further ideas, or a fix could be tested if the cover would also be attached to a post here.
Stefan
Why is there a blank first page on my book?
From what I see the problem is that the cover page you want to insert is placed centered as normal text. This has at least two possible problems. The first: the
{center}
environment that LyX uses might insert additional vertical space which is unwanted here. So revert the paragraph for the included page to normal (= justified) settings and make also sure that no indent is inserted. The second: the page has none-zero margins which means the inserted pdf is still to big.However, since you already use custom page settings LyX has loaded geometry which will allow us to temporarily set the page margins to zero and restore the previous geometry after inserting the pdf. For this place
\newgeometry{margin=0pt}
before the include pdf and \restoregeometry
after it. Keep in mind that \restoregeometry
internally calls \clearpage
which means that now you'll get an empty page after the cover page. If you don't want that (although it is very common for many books) some patching is necessary. Put the following code into your preamble:
Code: Select all
\usepackage{etoolbox}
\let\oldgeometry\restoregeometry
\patchcmd\oldgeometry{\clearpage}{}{}{}
\oldgeometry
after the included pdf instead.This worked for me in a test file based on the one you posted earlier.
Regards
-
- Posts: 128
- Joined: Wed Jul 04, 2012 5:34 pm
Why is there a blank first page on my book?
Cgnieder, you are telling me many things. I'm not sure if I'm supposed to pick one specific thing you mentioned. Or do I do all of those things at the same time?
Edit: I figured out I needed to set paragraph settings to default (left justified) and then enter the preamble:
Code: Select all
\usepackage{etoolbox}
\let\oldgeometry\restoregeometry
\patchcmd\oldgeometry{\clearpage}{}{}{}
as well as \newgeometry{margin=0pt} before and \oldgeometry after the inserted document. This actually worked, but now I have the problem I described above where the title on the second page is also automatically left justified.
I would upload the cover file, but apparently the pdf version and the jpg version each exceed the maximum allowed size of 400KiB
I'm using windows with LyX 2.0 and MiKTeX 2.9
I'm designing a book using the Koma-script class
-
- Posts: 128
- Joined: Wed Jul 04, 2012 5:34 pm
Why is there a blank first page on my book?
Just thought I'd bump this, because I'm still completely stumped by this. When I left justify the cover image I get the desired outcome (no blank first page), however the left justification also automatically left justifies the title on the following page, which needs to be centered. It's as if Lyx is treating the cover image and the title on the following page as one unit.insipidtoast wrote: I figured out I needed to set paragraph settings to default (left justified) and then enter the preamble:Code: Select all
\usepackage{etoolbox} \let\oldgeometry\restoregeometry \patchcmd\oldgeometry{\clearpage}{}{}{}
as well as \newgeometry{margin=0pt} before and \oldgeometry after the inserted document. This actually worked, but now I have the problem I described above where the title on the second page is also automatically left justified.
I would upload the cover file, but apparently the pdf version and the jpg version each exceed the maximum allowed size of 400KiB
How can I get lyx so that it does not left justify the title on the following page when I left justify the cover image?
I'm using windows with LyX 2.0 and MiKTeX 2.9
I'm designing a book using the Koma-script class