I am creating a pdf document using DVI => PS => PDF. I want to adapt the properties of my PDF (see last line of source code). But instead of doing it like below, it creates the following:
- author: user name of my computer ("michael" instead of "Michael M")
- pdftitle: the file directory of the last .eps-file in the document is taken as the pdf title ("/home/..../xyz.pdf" is the name of the pdf instead of "HVAC System for Hospital")
- pdfkeywords: They are correct! ("Simulation HVAC System")
Code: Select all
\documentclass[12pt,a4paper,oneside,titlepage]{scrbook}
\usepackage[a4paper, left=2.5cm, right=2.5cm, top=2.5cm, bottom=2.5cm]{geometry}
\usepackage[utf8]{inputenc}
\usepackage{eurosym}
\usepackage{english}
\usepackage{array}
\usepackage{float}
\usepackage{textcomp}
\usepackage{amstext}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{setspace}
\usepackage{babel}
\usepackage{prettyref}
\usepackage{lscape}
\usepackage[bottom,hang]{footmisc}
\usepackage[absolute]{textpos}
\usepackage{pdfpages}
\usepackage{units}
\usepackage[intoc]{nomencl}
\usepackage{fixltx2e}
\usepackage{booktabs}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{color}
\usepackage{url}
\usepackage[pdfauthor={Michael M}, pdftitle={HVAC System for Hospital}, pdfkeywords={Simulation HVAC System}, breaklinks=true]{hyperref}