General ⇒ absolute vertical positioning
absolute vertical positioning
I am writing my msc thesis and switched to latex from ms word last week. I havent used latex before, however, since I am a programmer, it got used to it easily.
The question I have is I couldnt find out how to do absolute vertical positioning of text measured from top of the page. Suppose I want to write a text 3cm below and 7cm below from top of the page. The vertical space command in latex gives relative positioning (meaning the space between text), right ?
Thank you...
Mete
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
absolute vertical positioning
there's a pstricks-package that can do this (pst-abspos), but
it's not implemented into MiKTeX, so You have to install it on
Your own! (http://perce.de/LaTeX/pst-abspos/)
Code: Select all
\documentclass{article}
\usepackage{pst-all}
\usepackage[absolute]{pst-abspos}
\begin{document}
\pstSetAbsoluteOrigin
\pstPutAbs[unit=1cm,position=lb](3,-3){Text with 3cm from top}
\pstPutAbs[unit=1cm,position=lb](3,-7){Text with 7cm from top}
\end{document}
Kris
Re: absolute vertical positioning
Mete