如何在 LaTeX 中编写这种类型的项目符号样式?(部分符号)

如何在 LaTeX 中编写这种类型的项目符号样式?(部分符号)

如何在 LaTeX 中编写这种类型的项目符号样式?

在此处输入图片描述

答案1

这是分节符号。可以在文本模式下使用\textsection或简单地获得它\S,或者在数学模式下使用获得它\mathsection

\documentclass{article}
\begin{document}
\textsection \S \(\mathsection\)
\end{document}

答案2

在此处输入图片描述

\documentclass{article}
\usepackage[compact]{titlesec}
\usepackage{xcolor, lipsum}


\definecolor{carmine}{rgb}{0.68, 0.0, 0.09}

\titleformat{\section}
{\normalfont\Huge\bfseries}{\color{carmine}\S$\,$\thesection}{1em}{}[]
\titlespacing*{\section}
{0em} %left
{0em} %before
{1em} %after/below
\begin{document}

    \section{Introduction}
    This is some regular text.
\end{document}

相关内容