For a titlepage, I want to add a text at a specific place. Now, the textpos package provides such an option, but when I specfiy something like
\documentclass{article}
\usepackage[absolute]{textpos}
\usepackage[a4paper, left=1.75cm, right=1.75cm, top=2cm, bottom=2cm]{geometry}
\begin{document}
\begin{textblock*}{7cm}(1.75cm, \dimexpr\textheight-15cm\relax)
Your specific text goes here. It will be 15cm above the bottom of the page and have a left margin of 1.75cm. The width is 7cm.
\end{textblock*}
\end{document}
then the top of the box is 15cm above the bottom of the page. However, I want the bottom of the textblock to always be 15cm above the bottom of the page, so that when I add text to the block, the last line always stays in the same place. How can I do this?
