I get the following warning
pdfTeX warning (ext4): destination with the same identifier (name{page.1}) has been already used, duplicate ignored
when compiling the following document:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\title{[Title]}
\author{N.N.}
\begin{document}
\begin{titlepage}
\maketitle
\thispagestyle{empty}
\end{titlepage}
\tableofcontents
\thispagestyle{empty}
\newpage
\section{[Section]}
\end{document}
I have tried find ways to get rid of this warning by searching in other places and I have read PDFTeX destination … ignored and the other question in this place pdfTeX warning: destination with same identifier has been already used, duplicate ignored (weird behavior).
\let\thepage\relax. I've tried the recommendation in the FAQ entry to no avail. – Suresh Mar 26 '12 at 01:32\pagenumbering{none}in your document to fix your problem that was caused by\let\thepage\relaxin the style file (for example, in ACM's sig-alternate.cls). – mernst Dec 24 '14 at 22:31