Code: Select all
\documentclass{scrartcl}
\usepackage[noend]{reledmac} % needed for \pstart & \pend to number paragraphs
\renewcommand{\thepstart}{{\textsuperscript{\fbox{\arabic{pstart}}}}} % ← this puts a box around the paragraph numbers
\linenummargin{outer} % ← the default is "left" which should put the numbers in the left margin (it does not), so trying "outer"
\begin{document}
\numberlinefalse\numberpstarttrue\beginnumbering
\pstart
yada yada lorem ipsum this is a paragraph
\pend
This is an unnumbered paragraph to show where the body is. Notice that the position of the number is not in the margin.
\endnumbering
\end{document}
(edit)
This hack gives the effect I'm after:
Code: Select all
\renewcommand{\thepstart}{\makebox[0pt][r]{\raisebox{2pt}{\scriptsize\fbox{\arabic{pstart}}}\hspace{1em}}}