删除子节标题中的缩进

删除子节标题中的缩进

我希望删除 Latex 在子部分标题开头创建的缩进
“信心满怀”,考虑以下 MWE

\documentclass[journal,onecolumn,11pt, peerreview]{IEEEtran}
\usepackage{graphicx}
\ifCLASSOPTIONcompsoc
    \usepackage[caption=false, font=normalsize, labelfont=sf, textfont=sf]{subfig}
\else
\usepackage[caption=false, font=footnotesize]{subfig}
\fi
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{textcomp}
\usepackage{xcolor}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
    T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
\begin{document}
\title{Place holder title}

\author{
\IEEEauthorblockN{Ishank Juneja}
}
\maketitle

\section{Placeholder}
\subsection{Placeholder}
%%
% Wish to remove indent created in next line 
%%
\subsubsection{\textbf{\underline{Confidence Set}}}
We denote this set as $C^*$.\\
Say, the support of r.v. $X$ has n indices 1,2,\ldots,n. Then, to find $C^*$, we\\
(i) First sort the empirical p.m.f. in descending order and obtain the sorted indices as $q_1,q_2,\ldots,q_n$.\\
\begin{equation}
\sum_{i = 1}^{k}p(x_i) > 1 - \epsilon    
\end{equation}
Thus, the confidence interval is the minimal such interval whose cumulative probability is greater than (1 - $\epsilon$) where $\epsilon$ is a small number, and is modelled as a Hyper-Parameter.\\
\end{document}

产生的输出是:

在此处输入图片描述

我希望删除第 5 行开头的缩进。

答案1

重新定义\thesubsubsectiondis

将此命令放在前面begin{document}

\def\thesubsubsectiondis{\unskip\arabic{subsubsection})}

希望这可以帮助

相关内容