Figuras y tablas en ToC dentro de la sección

Figuras y tablas en ToC dentro de la sección

Tengo que cumplir con un requisito de diseño, donde el ToC incluye una lista de figuras y una lista de tablas (está bien), pero además en los marcadores del pdf se debe indicar cada figura y tabla dentro de la sección donde aparece. Tome el siguiente MWE:

\documentclass[12pt]{article}
\usepackage{todonotes}
\usepackage{graphicx}
\usepackage{float}
\restylefloat{table}
\restylefloat{figure}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[a4paper, margin=3cm, top=3cm, bottom=3cm]{geometry}
\usepackage[bookmarks=true]{hyperref}
\usepackage{bookmark}
\hypersetup{
linktocpage=true,
colorlinks=true,
linkcolor=blue,
filecolor=blue,      
urlcolor=blue,
bookmarksopen=true
}
\bookmarksetup{numbered}

\title{\begin{center}
My Title
\end{center}
} 
\date{}
\author{}

\begin{document}

\begin{titlepage}
\maketitle
\end{titlepage}

\setcounter{page}{2}

\newpage
\pdfbookmark[0]{Contents}{Contents}
\tableofcontents
\listoffigures
\listoftables

\newpage
\section{My first section}

Bla, bla bla.

\begin{figure}[H]
\caption{My first Figure}
\missingfigure[figwidth=6cm]{}
\end{figure}

\begin{table}[H]
\caption{My first Table}
\begin{tabular}{ |c|c|c| } 
 \hline
 cell1 & cell2 & cell3 \\ 
 cell4 & cell5 & cell6 \\ 
 cell7 & cell8 & cell9 \\ 
 \hline
\end{tabular}
\end{table}

\newpage
\section{My second section}

More bla, bla.

\begin{figure}[H]
\caption{My second Figure}
\missingfigure[figwidth=6cm]{}
\end{figure}

\begin{table}[H]
\caption{My second Table}
\begin{tabular}{ |c|c|c| } 
 \hline
 cell1 & cell2 & cell3 \\ 
 cell4 & cell5 & cell6 \\ 
 cell7 & cell8 & cell9 \\ 
 \hline
\end {tabular}
\end{table}

\end{document}

Genera este ToC, que es exactamente lo que necesito:

ingrese la descripción de la imagen aquí

Pero también genera estos marcadores de pdf:

ingrese la descripción de la imagen aquí

Pero necesito que los marcadores del pdf se vean así (perdón por usar el estilo Código):

Contents
|- 1 My first Section
   |- My first figure
   |- My first table 
|- 2 My second Section
   |- My second figure
   |- My second table

¿Algunas ideas?

Respuesta1

La forma más sencilla que se me ocurre es conectar \captiony agregar el marcador con una etiqueta de marcador única (generada por el número total de figuras o tablas).

Para obtener los números totales, utilice (bueno, mi paquete ;-)) xassocnty asocie los contadores relevantes con ellos.

Agregará \pdfbookmark[2]{text}{label:name}la figura o entrada de la tabla como nivel de subsección a la sección actual.

Tenga cuidado al utilizarlo \texorpdfstring{tex content}{pdf content}para contenido específico del título, es decir\caption{\texorpdfstring{$E=mc^2}{E=mc\textsuperscript{2}}}

\documentclass[12pt]{article}
\usepackage{todonotes}
\usepackage{graphicx}
\usepackage{xassoccnt}

\newcounter{totalfigure}
\newcounter{totaltable}

\DeclareAssociatedCounters{figure}{totalfigure}
\DeclareAssociatedCounters{table}{totaltable}


\usepackage{float}
\restylefloat{table}
\restylefloat{figure}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{caption}




\makeatletter
\AtBeginDocument{%
\let\caption@@caption\caption
\RenewDocumentCommand{\caption}{som}{%
  \IfBooleanTF{#1}{%
    \caption@@caption{#3}%
  }{%
    \IfValueTF{#2}{%
      \caption@@caption[#2]{#3}%
      \pdfbookmark[2]{#2}{\@captype:\number\value{total\@cap@type}}%
    }{%
      \phantomsection
      \caption@@caption{#3}%
      \pdfbookmark[2]{#3}{\@captype:\number\value{total\@captype}}%
    }%
  }%
}
}


\usepackage[a4paper, margin=3cm, top=3cm, bottom=3cm]{geometry}
\usepackage[bookmarks=true]{hyperref}
\usepackage{bookmark}
\hypersetup{
  linktocpage=true,
  colorlinks=true,
  linkcolor=blue,
  filecolor=blue,      
  urlcolor=blue,
  bookmarksopen=true
}

%\captionsetup[figure]{format=bookmarksfig}
%\captionsetup[table]{format=bookmarkstab}


\bookmarksetup{numbered}

\title{\begin{center}
    My Title
\end{center}
} 
\date{}
\author{}

\begin{document}

\begin{titlepage}
\maketitle
\end{titlepage}

\setcounter{page}{2}

\newpage
\pdfbookmark[0]{Contents}{Contents}
\tableofcontents
\listoffigures
\listoftables

\newpage
\section{My first section}

Bla, bla bla.

\begin{figure}[H]
\caption{My first Figure}
\missingfigure[figwidth=6cm]{}
\end{figure}

\begin{table}[H]
\caption{My first Table}
\begin{tabular}{ |c|c|c| } 
 \hline
 cell1 & cell2 & cell3 \\ 
 cell4 & cell5 & cell6 \\ 
 cell7 & cell8 & cell9 \\ 
 \hline
\end{tabular}
\end{table}

\newpage
\section{My second section}

More bla, bla.

\begin{figure}[H]
\caption{My second Figure}
\missingfigure[figwidth=6cm]{}
\end{figure}

\begin{table}[H]
\caption{My second Table}
\begin{tabular}{ |c|c|c| } 
 \hline
 cell1 & cell2 & cell3 \\ 
 cell4 & cell5 & cell6 \\ 
 cell7 & cell8 & cell9 \\ 
 \hline
\end {tabular}
\end{table}

\end{document}

ingrese la descripción de la imagen aquí

Actualizar

Esto no requiere xassoccntmás que una simple comprobación \@captypey luego aumenta el \total...contador correspondiente.

Utiliza \currentpdfbookmarkel que se encarga del nivel de sección.

\documentclass[12pt]{article}
\usepackage{todonotes}
\usepackage{graphicx}


\newcounter{totalfigure}
\newcounter{totaltable}

%\usepackage{xassoccnt}
%\DeclareAssociatedCounters{figure}{totalfigure}
%\DeclareAssociatedCounters{table}{totaltable}


\usepackage{float}
\restylefloat{table}
\restylefloat{figure}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{caption}


\usepackage{xparse}


\makeatletter
\AtBeginDocument{%
  \let\caption@@caption\caption


\RenewDocumentCommand{\caption}{som}{%
  %checking which caption type is here and stepping the relevant total counter
  \def\temp@@a{figure}
  \def\temp@@b{table}
  \ifx\@captype\temp@@a 
  \stepcounter{total\@captype}%
  \fi
  \ifx\@captype\temp@@b 
  \stepcounter{total\@captype}%
  \fi
  \IfBooleanTF{#1}{%
    \caption@@caption{#3}%
  }{%
    \IfValueTF{#2}{%
      \phantomsection
      \caption@@caption[#2]{#3}%
      \currentpdfbookmark{#2}{\@captype:\number\value{total\@cap@type}}%
    }{%
      \phantomsection
      \caption@@caption{#3}%
      \currentpdfbookmark{#3}{\@captype:\number\value{total\@captype}}%
    }%
  }%
}
}
\makeatother


\usepackage[a4paper, margin=3cm, top=3cm, bottom=3cm]{geometry}
\usepackage[bookmarks=true]{hyperref}
\usepackage{bookmark}
\hypersetup{
  linktocpage=true,
  colorlinks=true,
  linkcolor=blue,
  filecolor=blue,      
  urlcolor=blue,
  bookmarksopen=true
}



\bookmarksetup{numbered}

\title{%
  \begin{center}
    My Title
  \end{center}
} 
\date{}
\author{}

\begin{document}

\begin{titlepage}
\maketitle
\end{titlepage}

\setcounter{page}{2}%

\newpage
\pdfbookmark[0]{Contents}{Contents}
\tableofcontents
\listoffigures
\listoftables

\newpage
\section{My first section}

Bla, bla bla.

\begin{figure}[H]
\caption{My first Figure}
\missingfigure[figwidth=6cm]{}
\end{figure}

\begin{table}[H]
\caption{My first Table}
\begin{tabular}{ |c|c|c| } 
 \hline
 cell1 & cell2 & cell3 \\ 
 cell4 & cell5 & cell6 \\ 
 cell7 & cell8 & cell9 \\ 
 \hline
\end{tabular}
\end{table}

\newpage
\section{My second section}

More bla, bla.

\begin{figure}[H]
\caption{My second Figure}
\missingfigure[figwidth=6cm]{}
\end{figure}

\begin{table}[H]
\caption{My second Table}
\begin{tabular}{ |c|c|c| } 
 \hline
 cell1 & cell2 & cell3 \\ 
 cell4 & cell5 & cell6 \\ 
 cell7 & cell8 & cell9 \\ 
 \hline
\end {tabular}
\end{table}

\subsection{Foo subsection}

\begin{figure}[H]
\caption{My third Figure}
\missingfigure[figwidth=6cm]{}
\end{figure}

\begin{table}[H]
\caption{My third Table}
\begin{tabular}{ |c|c|c| } 
 \hline
 cell1 & cell2 & cell3 \\ 
 cell4 & cell5 & cell6 \\ 
 cell7 & cell8 & cell9 \\ 
 \hline
\end {tabular}
\end{table}


\subsubsection{Foo subsubsection}


\begin{figure}[H]
\caption{My fourth Figure}
\missingfigure[figwidth=6cm]{}
\end{figure}

\begin{table}[H]
\caption{My fourth Table}
\begin{tabular}{ |c|c|c| } 
 \hline
 cell1 & cell2 & cell3 \\ 
 cell4 & cell5 & cell6 \\ 
 cell7 & cell8 & cell9 \\ 
 \hline
\end {tabular}
\end{table}

\clearpage

\section{Yet another section}



\begin{figure}[H]
\caption{My sixth Figure}
\missingfigure[figwidth=6cm]{}
\end{figure}

\begin{table}[H]
\caption{My sixth Table}
\begin{tabular}{ |c|c|c| } 
 \hline
 cell1 & cell2 & cell3 \\ 
 cell4 & cell5 & cell6 \\ 
 cell7 & cell8 & cell9 \\ 
 \hline
\end {tabular}
\end{table}

\subsection{Foo subsection}

\begin{figure}[H]
\caption{My seventh Figure}
\missingfigure[figwidth=6cm]{}
\end{figure}

\begin{table}[H]
\caption{My seventh Table}
\begin{tabular}{ |c|c|c| } 
 \hline
 cell1 & cell2 & cell3 \\ 
 cell4 & cell5 & cell6 \\ 
 cell7 & cell8 & cell9 \\ 
 \hline
\end {tabular}
\end{table}


\subsubsection{Foo subsubsection}


\begin{figure}[H]
\caption{My eighth Figure}
\missingfigure[figwidth=6cm]{}
\end{figure}

\begin{table}[H]
\caption{My eighth Table}
\begin{tabular}{ |c|c|c| } 
 \hline
 cell1 & cell2 & cell3 \\ 
 cell4 & cell5 & cell6 \\ 
 cell7 & cell8 & cell9 \\ 
 \hline
\end {tabular}
\end{table}


\end{document}

Próxima actualización: con números de figuras, etc.

\documentclass[12pt]{article}
\usepackage{todonotes}
\usepackage{graphicx}


\newcounter{totalfigure}
\newcounter{totaltable}

%\usepackage{xassoccnt}
%\DeclareAssociatedCounters{figure}{totalfigure}
%\DeclareAssociatedCounters{table}{totaltable}


\usepackage{float}
\restylefloat{table}
\restylefloat{figure}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{caption}


\usepackage{xparse}


\makeatletter
\AtBeginDocument{%
  \let\caption@@caption\caption

\newcommand{\generatebookmark}[1]{%
  \belowpdfbookmark{\csname \@captype name\endcsname\ \csname the\@captype\endcsname: #1}{\@captype:\number\value{total\@captype}}%
}


\RenewDocumentCommand{\caption}{som}{%
  %checking which caption type is here and stepping the relevant total counter
  \def\temp@@a{figure}
  \def\temp@@b{table}
  \ifx\@captype\temp@@a 
  \stepcounter{total\@captype}%
  \fi
  \ifx\@captype\temp@@b 
  \stepcounter{total\@captype}%
  \fi
  \IfBooleanTF{#1}{%
    \caption@@caption{#3}%
  }{%
    \IfValueTF{#2}{%
      \phantomsection
      \caption@@caption[#2]{#3}%
      \generatebookmark{#2}%
    }{%
      \phantomsection
      \caption@@caption{#3}%
      \generatebookmark{#3}%
    }%
  }%
}
}
\makeatother


\usepackage[a4paper, margin=3cm, top=3cm, bottom=3cm]{geometry}
\usepackage[bookmarks=true]{hyperref}
\usepackage{bookmark}
\hypersetup{
  linktocpage=true,
  colorlinks=true,
  linkcolor=blue,
  filecolor=blue,      
  urlcolor=blue,
  bookmarksopen=true
}



\bookmarksetup{numbered}

\title{%
  \begin{center}
    My Title
  \end{center}
} 
\date{}
\author{}

\begin{document}

\begin{titlepage}
\maketitle
\end{titlepage}

\setcounter{page}{2}%

\newpage
\pdfbookmark[0]{Contents}{Contents}
\tableofcontents
\listoffigures
\listoftables

\newpage
\section{My first section}

Bla, bla bla.

\begin{figure}[H]
\caption{My first Figure}
\missingfigure[figwidth=6cm]{}
\end{figure}

\begin{table}[H]
\caption{My first Table}
\begin{tabular}{ |c|c|c| } 
 \hline
 cell1 & cell2 & cell3 \\ 
 cell4 & cell5 & cell6 \\ 
 cell7 & cell8 & cell9 \\ 
 \hline
\end{tabular}
\end{table}

\newpage
\section{My second section}

More bla, bla.

\begin{figure}[H]
\caption{My second Figure}
\missingfigure[figwidth=6cm]{}
\end{figure}

\begin{table}[H]
\caption{My second Table}
\begin{tabular}{ |c|c|c| } 
 \hline
 cell1 & cell2 & cell3 \\ 
 cell4 & cell5 & cell6 \\ 
 cell7 & cell8 & cell9 \\ 
 \hline
\end {tabular}
\end{table}

\subsection{Foo subsection}

\begin{figure}[H]
\caption{My third Figure}
\missingfigure[figwidth=6cm]{}
\end{figure}

\begin{table}[H]
\caption{My third Table}
\begin{tabular}{ |c|c|c| } 
 \hline
 cell1 & cell2 & cell3 \\ 
 cell4 & cell5 & cell6 \\ 
 cell7 & cell8 & cell9 \\ 
 \hline
\end {tabular}
\end{table}


\subsubsection{Foo subsubsection}


\begin{figure}[H]
\caption{My fourth Figure}
\missingfigure[figwidth=6cm]{}
\end{figure}

\begin{table}[H]
\caption{My fourth Table}
\begin{tabular}{ |c|c|c| } 
 \hline
 cell1 & cell2 & cell3 \\ 
 cell4 & cell5 & cell6 \\ 
 cell7 & cell8 & cell9 \\ 
 \hline
\end {tabular}
\end{table}

\clearpage

\section{Yet another section}



\begin{figure}[H]
\caption{My sixth Figure}
\missingfigure[figwidth=6cm]{}
\end{figure}

\begin{table}[H]
\caption{My sixth Table}
\begin{tabular}{ |c|c|c| } 
 \hline
 cell1 & cell2 & cell3 \\ 
 cell4 & cell5 & cell6 \\ 
 cell7 & cell8 & cell9 \\ 
 \hline
\end {tabular}
\end{table}

\subsection{Foo subsection}

\begin{figure}[H]
\caption{My seventh Figure}
\missingfigure[figwidth=6cm]{}
\end{figure}

\begin{table}[H]
\caption{My seventh Table}
\begin{tabular}{ |c|c|c| } 
 \hline
 cell1 & cell2 & cell3 \\ 
 cell4 & cell5 & cell6 \\ 
 cell7 & cell8 & cell9 \\ 
 \hline
\end {tabular}
\end{table}


\subsubsection{Foo subsubsection}


\begin{figure}[H]
\caption{My eighth Figure}
\missingfigure[figwidth=6cm]{}
\end{figure}

\begin{table}[H]
\caption{My eighth Table}
\begin{tabular}{ |c|c|c| } 
 \hline
 cell1 & cell2 & cell3 \\ 
 cell4 & cell5 & cell6 \\ 
 cell7 & cell8 & cell9 \\ 
 \hline
\end {tabular}
\end{table}


\end{document}

ingrese la descripción de la imagen aquí

información relacionada