2

I'm writing a report document, at some point I create a new section inside a chapter and I got this message from sharetex LaTeX compiler:

main.tex:122 [hyperref] The anchor of a bookmark and its parent's must not be the same. Added a new anchor. (page 3)

undefined:undefined !h' float specifier changed to !ht'. (page 3)

It looks like two different problems however I have no clue about what is causing the second one, since I have no !h statement.

This is a Minimum non Working Example:

\documentclass[a4paper,12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[pdftex,bookmarks=true,colorlinks=true,linkcolor=blue,citecolor=blue]{hyperref}
\usepackage{varioref}
\usepackage{cleveref}
\usepackage[hyperpageref]{backref}

\begin{document} \tableofcontents

\chapter{Introduction} \begin{itemize} \item {\bf Finalização} onde são finalizados os histogramas, eventualmente traçadas curvas de ajuste \emph{(fit)} e guardados os resultados no disco. \end{itemize}

\chapter{Contextualização} \section{Modelo de dados}

\end{document}

RSFalcon7
  • 945

1 Answers1

2

Following Jubobs suggestion:

I remove varioref package and the warning disappeared, I didn't get any errors by removing so apparently I wasn't using.

RSFalcon7
  • 945