10

I like to put url in the left/right margin and align it vertically like arXiv (see figure below).

A sample figure

Here is a MWE:

    \documentclass[10pt,a4paper]{article}
    \usepackage{lipsum}

    \begin{document}

    \lipsum

    \end{document}
antmw1361
  • 1,276

2 Answers2

10

One way would be to use the background package:

enter image description here

Code:

\documentclass[10pt,a4paper]{article}
\usepackage[all]{background}
\usepackage{url}
\usepackage{lipsum}

\SetBgContents{\url{http://tex.stackexchange.com/}}% Set contents \SetBgPosition{current page.west}% Select location \SetBgVshift{-1.0cm}% Add vertical shift (results in a shift in x direction due to rotation) \SetBgOpacity{1.0}% Select opacity \SetBgAngle{90.0}% Select rotation of logo \SetBgScale{2.0}% Select scale factor of logo

\begin{document}

\lipsum[1-7]

\end{document}

Peter Grill
  • 223,288
9

I usually use a combination of eso-pic, graphicx and rotating as it is easy to adjust in terms of location, angle and size.

\documentclass[12pt]{scrartcl}
\usepackage{blindtext}
\usepackage{eso-pic, rotating, graphicx}

\AddToShipoutPicture{\put(30,200){\rotatebox{90}{\scalebox{3}{Examiners copy}}}}

\begin{document}
\blindtext[4]

\end{document}

example

Uwe Ziegenhagen
  • 13,168
  • 5
  • 53
  • 93
  • 1
    This solution works with links to labels. – Kadir Nov 05 '14 at 08:06
  • Use \AddToShipoutPictureBG* if you want the mark only once. Also AddToShipoutPicture seems depreciated and repalced by AddToShipoutPictureBG and AddToShipoutPictureFG – Fibo Kowalsky May 12 '20 at 19:17