2

How to write this type of bullet style in LaTeX?

enter image description here

leandriis
  • 62,593

2 Answers2

4

This is a section symbol. It can be obtained in text mode with \textsection or simply \S, or in math mode with \mathsection.

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

Vincent
  • 20,157
2

enter image description here

\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}

Vincent
  • 20,157
js bibra
  • 21,280