我希望删除图表列表、表格列表等中每个项目前的空格。
这是我想要做的:
这是我的 MWE:
\documentclass[11pt, a4paper, dvipsnames, openany, twoside]{book}
%-------------------------------------------------------------------
% Packages
%-------------------------------------------------------------------
\usepackage[francais]{babel}
\usepackage{caption}
\usepackage{etoolbox}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage{lipsum}
\usepackage[most]{tcolorbox}
\usepackage{tikz}
\usepackage{tocbasic}
%\usepackage[nottoc, notlof, notlot]{tocbibind}
\usepackage{xcolor}
%-------------------------------------------------------------------
% Structure
%-------------------------------------------------------------------
% Color
\colorlet{maincolor}{Red}
% Lists : settings
% Set "listof" as sections and not as chapters
\addtotoclist[float]{lof}
\renewcommand*\listoffigures{\listoftoc[{\listfigurename}]{lof}}
\addtotoclist[float]{lot}
\renewcommand*\listoftables{\listoftoc[{\listtablename}]{lot}}
\makeatletter
\doforeachtocfile[float]{\setuptoc{\@currext}{leveldown}}
\makeatother
\renewcommand{\numberline}[1]{#1~--~}
\renewcommand{\thefigure}{Figure~\arabic{chapter}.\arabic{figure}}
\renewcommand{\thetable}{Tableau~\arabic{chapter}.\arabic{table}}
\renewcommand\frenchtablename{}
\renewcommand{\frenchlistfigurename}{Liste des figures}
% Figure
\newcommand{\myfigure}[2][]{\ifstrempty{#1}{\tcbincludegraphics{#2}}{\tcbincludegraphics[arc=8pt, width=7cm, colframe=maincolor, step and label={figure}{fig:#1}, title=\textbf{\thefigure~--~{#1}}, phantom={\addcontentsline{lof}{section}{\protect\numberline{\thefigure}{#1}}},]{#2}}}
%-------------------------------------------------------------------
% Beginning of document
%-------------------------------------------------------------------
\begin{document}
\chapter*{Table des illustrations}
\listoffigures
\listoftables
\chapter{Illustrations diverses}
\section{Première section}
\lipsum[1]
\myfigure[Figure test]{example-image-b}
\end{document}
答案1
您已经在使用 KOMA-Script 包。因此,您可以使用和 属性tocbasic
来更改条目的缩进。但是您的代码存在问题,您使用而不是 来表示图形。因此,您还必须更改这一点。\DeclareTOCStyleEntry
indent
section
figure
\documentclass[11pt, a4paper, dvipsnames, openany, twoside]{book}
%-------------------------------------------------------------------
% Packages
%-------------------------------------------------------------------
\usepackage[francais]{babel}
\usepackage{caption}
\usepackage{etoolbox}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage{lipsum}
\usepackage[most]{tcolorbox}
\usepackage{tikz}
\usepackage{tocbasic}
%\usepackage[nottoc, notlof, notlot]{tocbibind}
\usepackage{xcolor}
%-------------------------------------------------------------------
% Structure
%-------------------------------------------------------------------
% Color
\colorlet{maincolor}{Red}
% Lists : settings
% Set "listof" as sections and not as chapters
\addtotoclist[float]{lof}
\renewcommand*\listoffigures{\listoftoc[{\listfigurename}]{lof}}
\addtotoclist[float]{lot}
\renewcommand*\listoftables{\listoftoc[{\listtablename}]{lot}}
\makeatletter
\doforeachtocfile[float]{\setuptoc{\@currext}{leveldown}}
\makeatother
\renewcommand{\numberline}[1]{#1~--~}
\renewcommand{\thefigure}{Figure~\arabic{chapter}.\arabic{figure}}
\renewcommand{\thetable}{Tableau~\arabic{chapter}.\arabic{table}}
\renewcommand\frenchtablename{}
\renewcommand{\frenchlistfigurename}{Liste des figures}
% Figure
\newcommand{\myfigure}[2][]{\ifstrempty{#1}{\tcbincludegraphics{#2}}{\tcbincludegraphics[arc=8pt,
width=7cm, colframe=maincolor, step and label={figure}{fig:#1},
title=\textbf{\thefigure~--~{#1}},
phantom={\addcontentsline{lof}
{figure}% CHANGED
{\protect\numberline{\thefigure}{#1}}},]{#2}}}
\newcommand*{\numberwithhyphen}[1]{#1~--~}% ADDED (You could use this also to add `\figurename` before the number, if you'd also adapt numwidth attribute.)
\DeclareTOCStyleEntry[indent=0pt,numwidth=5.5em,entrynumberformat=\numberwithhyphen]{tocline}{figure}% ADDED
%-------------------------------------------------------------------
% Beginning of document
%-------------------------------------------------------------------
\begin{document}
\chapter*{Table des illustrations}
\listoffigures
\listoftables
\chapter{Illustrations diverses}
\section{Première section}
\lipsum[1]
\myfigure[Figure test]{example-image-b}
\end{document}
有关 的更多信息,请参阅 KOMA-Script 手册\DeclareTOCStyleEntry
。
顺便说一句:tocbasic
还提供了在条目前添加字符串的功能,如。因此,如果这会导致 的其他用法出现问题,则无需Figure
将其添加到。\thefigure
\thefigure
答案2
我在这里找到了一个没有软件包的干净解决方案:
\makeatletter
\renewcommand*\l@figure{\@dottedtocline{1}{0em}{2.3em}}% Default: 1.5em/2.3em
\let\l@table\l@figure
\makeatother