LyX ⇒ How to make the first page almost blank with some text
How to make the first page almost blank with some text
I wrote an article, but I need to make the first page almost plank: I only need to put some text somewhere in the middle left of the page and somewhere lower right of the page. What is the best way to make this happen in Lyx?
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
How to make the first page almost blank with some text
- 1. Insert a vertical space using VFill in "Spacing" drop-down list, with "Protect" checked (without "Protect", vertical spacing without any chars before it is getting ignored at the beginning of a page).
2. Type the middle text. Right click > Paragraph Settings for fine-tuning the text. And if you don't want that page number, press Ctrl+L and type in:3. Insert another vertical space (VFill).Code: Select all
\thispagestyle{empty}
4. Type the bottom text.
5. Insert a page break (or double-page break), also from Insert > Formatting menu ("Clear page" or "Clear double page" commands).