3

I wrote two papers in latex, and on the last page, I want to add the following information to the bottom left of the page.

university Name
Field of study 
www.rt.de
Eone by: My name
E-Mail-Adresse: myemail
supervisor1:  
supervisor1: . 
supervisor1: 

Please let me know how to do that.

Mukul
  • 103
Elpharaoh
  • 271
  • Hello, Could you show us the code you write so far and a MWE ? Please – flav Aug 08 '16 at 11:33
  • @flav i just googled how to do it, but the codes i found does not do the what i want or some time deform the page – Elpharaoh Aug 08 '16 at 11:35
  • From the information you're wanting to include (and the answers you've gotten), it appears you want to include the information on a single page. If instead you want to include it on every page, you'd want to look into the fancyhdr package. – Teepeemm Aug 08 '16 at 17:08

2 Answers2

4

This is a simple way to do it:

\documentclass{article}
\usepackage{lipsum}

\begin{document}
  \lipsum[1-30]%this generates some dummy text

  \vfill
  university Name

  Field of study

  www.rt.de

  Eone by: My name

  E-Mail-Adresse: myemail

  supervisor1:

  supervisor1:

  supervisor1: 

\end{document}

Output:

enter image description here

alwaysask
  • 2,248
  • 13
  • 16
  • 1
    It should be \lipsum[1-30] (square, not curly). If you'll look at your first page you'll see 1-30 printed there. – JPi Aug 08 '16 at 12:06
  • @alwaysask: You need to add \parindent=0pt after \vfill to obtain the adequate result. – Marian G. Jul 25 '19 at 08:12
2

There's a flexible way of doing this. Below is a primitive answer: a detailed answer is elsewhere on this forum.

\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}

enter image description here

JPi
  • 13,595