我在乳胶中写了两篇论文,在最后一页,我想在页面左下角添加以下信息。
university Name
Field of study
www.rt.de
Eone by: My name
E-Mail-Adresse: myemail
supervisor1:
supervisor1: .
supervisor1:
请告诉我该怎么做。
答案1
答案2
有一种灵活的方法可以做到这一点。下面是一个基本的答案: 详细解答在本论坛的其他地方。
\documentclass{article}
\usepackage{lipsum}
\usepackage{graphicx}
\usepackage{tikz}
\usepackage{tikzpagenodes}
\begin{document}
\lipsum[1-3]%this generates some dummy text
\begin{tikzpicture}[remember picture,overlay,shift={(current page text area.south west)}]
\node [above right]{\parbox{\textwidth}{university Name\\
Field of study\\
www.rt.de\\
Eone by: My name\\
E-Mail-Adresse: myemail\\
supervisor1:\\
supervisor1:\\
supervisor1:}};
\end{tikzpicture}
\end{document}