Page Layout ⇒ Put some Stuff into the Page Margin
Put some Stuff into the Page Margin
I'm trying to write a note like in the 2nd page of this document (left side on the bottom):
http://www.iso-chemie.co.uk/material/pr ... strips.pdf
Can anyone help me?!
Thank you!
LMP
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Re: Put some Stuff into the Page Margin
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Put some Stuff into the Page Margin
Possibly on all pages.localghost wrote:Is this note going to appear only on a certain page or possibly on all pages of your document?
Thorsten
Thank you for answering!
Luís
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Put some Stuff into the Page Margin
picture
environment. The example below shows a basic approach.
Code: Select all
% !TeX program = pdflatex
\documentclass[11pt,english]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{graphicx}
\usepackage{eso-pic}
\usepackage{blindtext}
\AddToShipoutPicture{
\AtPageLowerLeft{
\put(40,40){
\tiny%
\rotatebox[origin=l]{90}{Your Note}%
}
}
}
\begin{document}
\blinddocument
\end{document}
Please note that the packages babel (along with its global language option) and blindtext are not part of the solution. They have only been used to create a dummy document with several pages for a demonstration of the concept.
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Put some Stuff into the Page Margin
Thank you very much!
Yours,
Luís