I have created a multi-page timeline using a longtable with enumerated rows (see this answer).
My MWE is as follows:
\begin{longtable}{@{\stepcounter{rowcount}(\therowcount)\hspace*{\tabcolsep}}l p{30em}}
[date || blank] & [text] \\
[...repeat...]
\end{longtable}
And it looks like this:
My intention is to be able to then reference these numbers, similar to how court case reports are referenced via paragraph number. I've tried adding \label{tl:{description}}s but when I \ref them I just get the section number for the section of the document containing the timeline.
Is it possible to somehow reference the rowcount value for each row when referencing instead?

@{...}and@{}>{...}? – 08915bfe02 Jun 01 '20 at 21:01@is inter-column material>injects the material into the start of each column cell. – David Carlisle Jun 01 '20 at 21:14