我尝试隐藏目录中的某些子部分(Hello)。我没有找到有效的解决方案。我使用 article 类。您知道我可能会使用什么命令吗?感谢您的帮助!
我的代码:
\documentclass[12pt,a4paper]{article}
\usepackage[top=1in, bottom=1in, inner=1in, outer=1in]{geometry}
\usepackage[onehalfspacing]{setspace}
\usepackage[utf8]{inputenc}
\usepackage{ngerman}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{enumitem}
\usepackage{acronym}
\renewcommand*\aclabelfont[1]{\acsfont{#1}}%unbold acronym
\begin{document}
\tableofcontents
%Anhang
\section*{Anhang}
\addcontentsline{toc}{section}{Anhang}
\renewcommand{\thesubsection}{\Alph{subsection}}
\subsection{Hello}
\subsection{Hello}
\end{document}
答案1
这是一个解决方案
\documentclass{article}
\begin{document}
\tableofcontents
\section*{Anhang}
\addcontentsline{toc}{section}{Anhang}
\renewcommand{\thesubsection}{\Alph{subsection}}
\addtocontents{toc}{\begingroup\string\c@tocdepth 1\relax}
\subsection{Hello}
\subsection{Hello}
\addtocontents{toc}{\endgroup}
\subsection{Bye}
\end{document}