General ⇒ pdfTeX warning (ext4): destination with the same identifier
pdfTeX warning (ext4): destination with the same identifier
pdfTeX warning (ext4): destination with the same identifier (name{page.1}) has
been already used, duplicate ignored
<to be read again>
Thank you!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
Re: pdfTeX warning (ext4): destination with the same identifier
\hypersetup{pageanchor=false} before such a duplicate page, and set to true after it, or by using a different numbering style, even if the number on a title page is invisible.Stefan
Re: pdfTeX warning (ext4): destination with the same identifier
- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
Re: pdfTeX warning (ext4): destination with the same identifier
Stefan
Re: pdfTeX warning (ext4): destination with the same identifier
Here's is my main doc:
Code: Select all
\documentclass{article}
\usepackage{etoolbox}
\usepackage{tikz}
%\usepackage[backend=bibtex,style=ieee,natbib=true,maxnames=100,minnames=100,citestyle=numeric-comp]{biblatex} %, defernumbers=true
%\addbibresource{references.bib}
\usepackage{rotating}
\usepackage{enumitem}
\usepackage{amsmath,array,graphicx}
\usepackage{float} % for tables
\counterwithin{figure}{chapter}
\counterwithin{table}{chapter}
\counterwithin{equation}{chapter}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3} % Until subsubseccions in contents-
\usepackage[acronym, nonumberlist, style=super]{glossaries}
\newcommand{\capitalizefirst}[1]{\xmakefirstuc{#1}}%para mostrar la primera letra de los acronimos en mayuscula
% Customize the glossary style to bold the acronyms
\renewcommand{\glsnamefont}[1]{\textbf{#1}}
\makeglossaries
%\input{acronyms.tex}
\glsaddall
\usepackage{tocloft}
\setlength{\cftfignumwidth}{3em}
\setlength{\parskip}{8pt}
%% Some personalized configurations
%% Front page
\begin{document}
%\input{Portada}
\begin{titlepage}
\centering
\vspace*{-3cm}
% Add your image here
\vspace{1.5cm}
\Huge\textbf{Photonic Transceivers for 6G yada yada} \\
\vspace{1.8cm}
\mdseries\large Ph.D thesis\\
by\\
\Large\textbf{My name}
\vspace{1.8cm}
\begin{tabular}{l@{\hspace{.75em}}l}
\Large Supervisors: & \Large Name\\[.5ex]
& Name\Large
\end{tabular}
\vspace{1.6 cm}
\mdseries\large Place, month 2025
\end{titlepage}
\cleardoublepage
%% some more configs
% Acknoledgements/Abstract/About the author
% Contents
\ifEPUB
\else
% Contents
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{\contentsname}
\tableofcontents
% Figs
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{\listfigurename}
\listoffigures
% Lista de tablas
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{\listtablename}
\listoftables
%\cleardoublepage
%\phantomsection
\addcontentsline{toc}{chapter}{Acronyms}
%\printglossary[type=\acronymtype]
\fi
\clearpage
\mainmatter % <---------- First chapter in page 1
% -------------------------------------------------------
% Chapters
%\input{cap_chapter_1}
\chapter{Introduction}
\label{chap1}
\section{Context and motivation}
\label{sec:context}
\subsection{Evolution of mobile wireless communications}
\end{document}
- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
Re: pdfTeX warning (ext4): destination with the same identifier
Code: Select all
\hypersetup{pdfpagelabels=true}