[Tex/LaTex] Absolute vertical positioning of parbox

boxesvertical alignment

I create signature area like

\documentclass{article}
\usepackage[utf8]{inputenc}
\begin{document}
    %some content here
    \begin{center}\parbox[t]{5cm}{\hrule height 1pt\medskip \textbf{John Doe}\\\textit{Director of something}}\end{center}
\end{document}

which will look like

enter image description here

I want it to be always at the same vertical position and horinzontally centered – no matter how high the content above it will be.

Do you have any idea how that can be realized?

Best Answer

An alternative is use Tikz with current page node. You may change the shift coordinates to the place you want.enter image description here

Code:

\documentclass[11pt]{article} 
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[remember picture, overlay]
\node [anchor=north, shift={(5cm,5cm)}]  at (current page.south west) {%
\parbox[t]{5cm}{\hrule height 1pt\medskip \textbf{John Doe}\\
\textit{Director of something}}
};
\end{tikzpicture}
\end{document}