如何使用 \colorbox 为整段线着色并删除段编号?

如何使用 \colorbox 为整段线着色并删除段编号?

我使用了以下代码来为该部分中写的文本着色。我遇到的唯一问题是,添加此代码后,我的部分被编号了,这是我不想要的。有什么建议吗?

\documentclass[a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[margin=0.4in]{geometry}
\usepackage{titling}
\usepackage{titlesec}
\usepackage{xcolor,lipsum}
\usepackage[most]{tcolorbox}

\titleformat{name=\section}[block]
{\sffamily\large}
{}
{0pt}
{\colorsection}


\newcommand{\colorsection}[1]{%
\colorbox{blue!20}{\parbox{\dimexpr\textwidth-2\fboxsep}{\thesection\ #1}}}

\begin{document}

   \section{This is the title}

\end{document}

答案1

您正在使用 添加章节编号\thesection

\newcommand{\colorsection}[1]{%
  \colorbox{blue!20}{%
    \parbox{\dimexpr\textwidth-2\fboxsep}{#1}%
  }%
}

在此处输入图片描述

相关内容