如何创建与子图或子标题相同的新环境

如何创建与子图或子标题相同的新环境

问题的第一部分有答案图形环境。我想创建与子图 (例如称为 graphique) 相同的环境,以便将照片并排放置。

\documentclass{report}

\usepackage[demo]{graphicx}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[french]{babel}
\usepackage{float}
\usepackage{hyperref}
\usepackage{cleveref}
\usepackage{subcaption}%to insert subfigures side by side
\usepackage{sidecap}%side caption
\usepackage{wrapfig}% to wrp a figure

\newfloat{Planche}{hbtp}{lop}[section]
\newfloat{graphique}{tpbh}{grp}[chapter]
\newcommand{\listofgraphiquesname}{Table des graphiques}
\newcommand{\listofgraphiques}{%
  \listof{graphique}{\listofgraphiquesname}%
}
\crefname{graphique}{graphique}{graphiques}
\Crefname{graphique}{Graphique}{Graphiques}
\renewcommand{\thegraphique}{\arabic{graphique}}
\renewcommand{\thefigure}{\arabic{figure}}


\begin{document}
\listoffigures
\listofgraphiques
\clearpage
See \cref{grp-lagraphique} or \Cref{grp-lagraphique} or \Cref{grp-lagraphique,grp-lagraphique-encore} for more information. 
\chapter{Alors\dots}
\begin{figure}
  \centering
  \includegraphics[scale=0.5]{ente}
\caption{Foo figure} \label{fig-lafigure}
\end{figure}
\begin{graphique}
  \centering
  \includegraphics[scale=0.5]{ente}
  \caption{C'est bon!}  \label{grp-lagraphique}
\end{graphique}



\begin{figure}[h!]
    \begin{center}
        \begin{subfigure}[b]{0.32\textwidth}
            \centering
            \includegraphics[width=\textwidth, keepaspectratio]{example-imege} 
            \caption{subfigure}\label{fig7:a}      
            \hfill
            \vspace{2ex}
        \end{subfigure}%% 
        \hfill
        \begin{subfigure}[b]{0.34\textwidth}
            \centering
            \includegraphics[width=\textwidth, keepaspectratio]{example-imege} 
            \caption{subfigure}\label{fig7:b} 
            \hfill
            \vspace{2ex}   
        \end{subfigure} 
        \hfill  
        \begin{subfigure}[b]{0.32\textwidth}
            \centering
            \includegraphics[width=\textwidth, keepaspectratio]{example-imege} 
            \caption{subfigure}\label{fig7:b} 
            \hfill
            \vspace{2ex}   
        \end{subfigure}   
        \caption{subfigure}\label{fig:houseCracks}   
    \end{center}    
\end{figure}
\end{document}

相关内容