\documentclass[12pt,headings]{article}
\begin{document}
\tableofcontents
\section{section A}
\subsection{subsection A}
\subsection{subsection B}
\end{document}
我希望 A 节和 A,B 小节在目录中对齐
答案1
使用tocloft
您可以使用以下包轻松实现您想要的功能\cftsetindents
:
\documentclass{article}
\usepackage{tocloft}
\cftsetindents{section}{0em}{2.3em}
\cftsetindents{subsection}{0em}{2.3em}
\begin{document}
\tableofcontents
\section{section A}
\subsection{subsection A}
\subsection{subsection B}
\end{document}
答案2
或者,您可以使用tocstyle
KOMA-Script 包中的包:
\documentclass{article}
\usepackage[tocflat]{tocstyle}
\usetocstyle{standard}
\begin{document}
\tableofcontents
\section{section A}
\subsection{subsection A}
\subsection{subsection B}
\end{document}
\documentclass[12pt]{scrartcl}
\usepackage{booktabs}
\usepackage{multirow}
\begin{document}
运行两次即可获得