Text Formattingline under the page

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
marcel0138
Posts: 7
Joined: Wed Feb 21, 2018 10:31 pm

line under the page

Post by marcel0138 »

How do I put a line at the bottom of a page.
The last line, then newpage.

Recommended reading 2024:

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

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

kaiserkarl13
Posts: 707
Joined: Tue Mar 25, 2008 5:02 pm

line under the page

Post by kaiserkarl13 »

It's not 100% clear what you want, but try this:

Code: Select all

\vfill
\hrule
\newpage
marcel0138
Posts: 7
Joined: Wed Feb 21, 2018 10:31 pm

line under the page

Post by marcel0138 »

I want the text "layout LaTeX" at the bottom of the first page in my article.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

line under the page

Post by Stefan Kottwitz »

Hi Marcel,

welcome to the forum!

In that case just replace \hrule by the text layout \LaTeX.

Code: Select all

\vfill
layout \LaTeX
\newpage
Thanks Karl!

Btw. \vfill inserts stretchable space that fills as much as possible, so the stuff afterwards (that text) is pushed down to the end of the page.

Stefan
LaTeX.org admin
marcel0138
Posts: 7
Joined: Wed Feb 21, 2018 10:31 pm

line under the page

Post by marcel0138 »

I have found at this forum.

Code: Select all

\begin{figure}[!b]
\begin{center}
Opmaak LaTeX
\end{center}
\end{figure}
All thanks.
marcel0138
Posts: 7
Joined: Wed Feb 21, 2018 10:31 pm

line under the page

Post by marcel0138 »

This is better. Thanks Stephan and Karl.

Code: Select all

\vfill
\begin{center}
layout \LaTeX
\end{center}
Post Reply