Adicionar rótulo na lista de figuras e tabelas, remover ponto do ToC, notação em uma subfigura

Adicionar rótulo na lista de figuras e tabelas, remover ponto do ToC, notação em uma subfigura

Estou tendo alguns problemas com o formato da minha tese. Por favor, ajude-me a corrigir esses problemas. desde já, obrigado

  1. Como adicionar rótulo de figura na subfigura. Atualmente está aparecendo comouma legenda.....mas eu quero isso comoFig. 2.1(a) legenda....
  2. eu quero conseguirFigura 1.1 figura de exemploem vez de1.1 figura de exemplona Lista de Figuras. Não consigo usar toclofto pacote. Eu testei. Não está funcionando por causa do titlesec and titletoc. Eu usei esses dois pacotes extensivamente em meu formato.
  3. Eu quero o mesmo para Lista de Tabelas. Agora vem como2.1 abc. Mas eu precisoTabela 2.1 abc
  4. Existe alguma maneira de citar a figura e a tabela em negrito sem digitar \textit{...}sempre -

por exemplo na página 6 aparece assim “Fig. 2,1” mostra uma imagem de exemplo. Mas eu preciso"Figo. 2,1” mostra uma imagem de exemplo.

  1. Preciso remover os pontos do ToC

um mwe funcional é fornecido aqui. o formato completo pode ser encontrado aqui -Formatação da tese - ToC, figura

\documentclass[12pt,a4paper]{report}


\usepackage{setspace}
\usepackage{lipsum}
\usepackage{graphicx}
\usepackage{subcaption}
\usepackage{titlesec}
\usepackage{titletoc} 


\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}


\begin{document}

\tableofcontents
\listoffigures
\listoftables



\setstretch{1.5}
\chapter{SIMULATION}
\section{Example section}
\lipsum[2-3]

\begin{figure}[!htb]
    \centering
    \includegraphics{example-image-a}
    \caption{Example figure}
\end{figure}

\chapter{SIMULATION2}
\section{Example section 2}


\begin{figure}[!htb]
    \begin{subfigure}{.48\linewidth}
        \centering
        \includegraphics[width=\linewidth]{example-image-b}
        \caption{Example figure 2.1}
    \end{subfigure}
    \begin{subfigure}{.48\linewidth}
        \centering
        \includegraphics[width=\linewidth]{example-image-c}
        \caption{Example figure 2.2}
    \end{subfigure}
    \caption{Example figure 2}
    \label{fig2}
\end{figure}

``Fig.~\ref{fig2}'' shows an example image.

\end{document}

Responder1

Não tenho certeza se implementei todos os seus requisitos. É recomendável perguntar uma coisa em uma pergunta.

\documentclass[12pt,a4paper]{report}


\usepackage{setspace}
\usepackage{lipsum}
\usepackage{graphicx}
\usepackage[labelfont=bf, labelsep=space, belowskip=-5pt, aboveskip=10pt]{caption}
\usepackage{subcaption}
\usepackage{titlesec}
\usepackage{titletoc}
\usepackage{xpatch}


\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}


\renewcommand\thesubfigure{\thefigure~(\alph{subfigure})}
\renewcommand\thesubtable{\thetable~(\alph{subtable})}

\makeatletter
\renewcommand\p@figure{Fig.~}
\renewcommand\p@subfigure{Fig.~}
\renewcommand\p@table{Table.~}
\renewcommand\p@subtable{Table.~}
\makeatother

\DeclareCaptionLabelFormat{subfigure-label}{Fig.~#2}
\DeclareCaptionLabelFormat{subtable-label}{Table.~#2}
\DeclareCaptionListFormat{figurelist}{#1#2}
\DeclareCaptionListFormat{tablelist}{#1#2}

\captionsetup[subfigure]{labelformat=subfigure-label}
\captionsetup[subtable]{labelformat=subtable-label}
\captionsetup[figure]{listformat=figurelist}
\captionsetup[table]{listformat=tablelist}

% dotless toc entries
\makeatletter
\xpatchcmd\@dottedtocline
  {\leaders\hbox{$\m@th\mkern\@dotsep mu\hbox{.}\mkern\@dotsep mu$}}
  {}
  {}{\fail}

% enlarge label width
\renewcommand*\l@figure{\@dottedtocline{1}{1.5em}{4em}}
\renewcommand*\l@table{\@dottedtocline{1}{1.5em}{5em}}
\makeatother

\usepackage{cleveref}
\crefname{figure}{}{}
\crefname{table}{}{}
\creflabelformat{figure}{#2\textbf{#1}#3}
\creflabelformat{table}{#2\textbf{#1}#3}

\begin{document}

\tableofcontents
\listoffigures
\listoftables



%\setstretch{1.5}
\chapter{SIMULATION}
\section{Example section}
%\lipsum[1]

\begin{figure}[!htb]
    \centering
    \includegraphics{example-image-a}
    \caption{Example figure}
\end{figure}

\chapter{SIMULATION2}
\section{Example section 2}

\begin{table}
  \caption{text}\label{tab1}
\end{table}

\begin{figure}[!htb]
    \begin{subfigure}{.48\linewidth}
        \centering
        \includegraphics[width=\linewidth]{example-image-b}
        \caption{Example figure 2.1}
    \end{subfigure}
    \begin{subfigure}{.48\linewidth}
        \centering
        \includegraphics[width=\linewidth]{example-image-c}
        \caption{Example figure 2.2}
    \end{subfigure}
    \caption{Example figure 2}
    \label{fig2}
\end{figure}

``\cref{fig2}'' shows an example image.5

\end{document}

insira a descrição da imagem aqui insira a descrição da imagem aqui insira a descrição da imagem aqui

informação relacionada