Text Formatting ⇒ line under the page
-
- Posts: 7
- Joined: Wed Feb 21, 2018 10:31 pm
line under the page
How do I put a line at the bottom of a page.
The last line, then newpage.
The last line, then newpage.
NEW: TikZ book now 40% off at Amazon.com for a short time.

-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
line under the page
It's not 100% clear what you want, but try this:
Code: Select all
\vfill
\hrule
\newpage
-
- Posts: 7
- Joined: Wed Feb 21, 2018 10:31 pm
line under the page
I want the text "layout LaTeX" at the bottom of the first page in my article.
- Stefan Kottwitz
- Site Admin
- Posts: 10337
- Joined: Mon Mar 10, 2008 9:44 pm
line under the page
Hi Marcel,
welcome to the forum!
In that case just replace \hrule by the text layout \LaTeX.
Thanks Karl!
Btw.
Stefan
welcome to the forum!
In that case just replace \hrule by the text layout \LaTeX.
Code: Select all
\vfill
layout \LaTeX
\newpage
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
-
- Posts: 7
- Joined: Wed Feb 21, 2018 10:31 pm
line under the page
I have found at this forum.
All thanks.
Code: Select all
\begin{figure}[!b]
\begin{center}
Opmaak LaTeX
\end{center}
\end{figure}
-
- Posts: 7
- Joined: Wed Feb 21, 2018 10:31 pm
line under the page
This is better. Thanks Stephan and Karl.
Code: Select all
\vfill
\begin{center}
layout \LaTeX
\end{center}