Como posso alterar o formato de uma entrada em \listoftheorems do thmtools?

Como posso alterar o formato de uma entrada em \listoftheorems do thmtools?

Como posso alterar o formato de uma entrada em \listoftheorems do thmtools? Com o seguinte MWE:

\documentclass{article}
\usepackage{amsthm}
\usepackage{thmtools}

\declaretheorem[]{definition}

\begin{document}
\listoftheorems

\begin{definition}[Name]
    bla
\end{definition}

\end{document}

Eu entendi isso:

MWE

Mas eu quero algo como:

Definição 1 "Nome" ................... 1

Muito obrigado pela sua ajuda

Responder1

Encontrei uma resposta para minha pergunta:

\documentclass{article}
\usepackage{amsthm}
\usepackage{thmtools}

\declaretheorem[]{definition}

% to reformat the (Name) to ''Name''
\renewcommand\thmtformatoptarg[1]{ ''#1''}

% to swap number with "Definition" 
\makeatletter
\def\ll@definition{%
    \thmt@thmname~
    \protect\numberline{\csname the\thmt@envname\endcsname}%
    \ifx\@empty
        \thmt@shortoptarg
    \else
        \protect\thmtformatoptarg{\thmt@shortoptarg}
    \fi
}
\makeatother

\begin{document}
\listoftheorems

\begin{definition}[Name]
    bla
\end{definition}

\end{document}

Então eu consegui:

insira a descrição da imagem aqui

Para diminuir o espaço entre 1 e "Nome", adicionei

\makeatletter
\renewcommand*{\numberline}[1]{\hb@xt@1em{#1}}
\makeatother

Talvez haja uma maneira melhor, eu gostaria de saber!

E finalmente eu queria mudar o estilo de definição, para combinar com a lista de definições:

\declaretheoremstyle[
headfont=\bfseries, 
headpunct={:},
notefont=\bfseries\itshape, 
notebraces={''}{''}, 
%headformat=\NAME~\NUMBER \NOTE, 
]{definition}

\declaretheorem[style=definition]{definition}

Este é o resultado:

insira a descrição da imagem aqui

informação relacionada