I am looking for a way to place a simple "margin" note right beside the start of a paragraph in a two-column text. As it is right now, it just appears at either the left or right margin.
The note is just a number separated from the text, because otherwise it messes up the separation of words in a line (which matters in the text I am working on, not in the example below).
See this sample code below (see what I'm looking for in the image):
\documentclass[10pt]{article}
\usepackage{lipsum}
\usepackage{marginnote}
\usepackage{multicol}
\setlength{\columnsep}{10mm}
\begin{document}
\setlength\parindent{0em}
\setlength{\parskip}{1em}
\begin{multicols*}{2}
\reversemarginpar
\marginnote{1.} \lipsum[1]
\marginnote{2.} \lipsum[1]
\marginnote{3.} \lipsum[1]
\end{multicols*}
\end{document}


\marginpar{3. }..., try\leavevmode\llap{3. }\lipsum[1]. (For more of the same, see https://tex.stackexchange.com/questions/7865/how-to-create-hanging-bullet ) – Willie Wong Nov 22 '19 at 21:21titlesecto number the paragraphs with paragraph numbers that hangs to the left. – Willie Wong Nov 22 '19 at 21:22titlesecpackage has worked, and for anyone interested I will be posting here the solution to this issue. – Joel Dacasa Nov 22 '19 at 21:41