This answer shows how we may achieve a numbering of paragraphs with \S.
How may we in the following have the same spacing between §1 and §2 as the line spacing in the text above §1, without changing the line spacing in the latter? Also, how may the space between §1 and the text above conform to the same spacing?
The SECOND of the following codes is the solution I use based upon the answer accepted.
\documentclass[12pt]{article}
\usepackage{chngcntr}
\counterwithout{paragraph}{subsubsection}
\renewcommand{\theparagraph}{\S\arabic{paragraph}}
\setcounter{secnumdepth}{4}
\begin{document}
Here are just some words to show the normal spacing between lines in the main document.
\paragraph{} 1st paragraph
\paragraph{} 2nd paragraph
\end{document}
\documentclass{article}
\usepackage{chngcntr,titlesec}
\counterwithout{paragraph}{subsubsection}
\renewcommand{\theparagraph}{\S\arabic{paragraph}}
\setcounter{secnumdepth}{4}
\titlespacing{\paragraph}
{15pt}{0pt}{-8pt}
\usepackage{showframe}
\begin{document}
Here are just some words to show the normal spacing between lines in the main document.
\paragraph{} 1st paragraph
\paragraph{} 2nd paragraph
\end{document}```