How to write this type of bullet style in LaTeX?
Asked
Active
Viewed 451 times
2
leandriis
- 62,593
Prof.Hijibiji
- 181
2 Answers
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
\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}



tablesandtabularytages since I could not see a connection to tables here. – leandriis Nov 29 '20 at 09:42