I was making my CV and faced some confusion when making the section for publications. Right now what I have looks something like this:
The code that generated this is:
\Large{Papers}
& \begin{tabular}[t]{@{} l l}
\begin{enumerate}
\item Publication 1 dddddddddddddddddddddddddddddddddddddddddddddddddddddddddd
\item Publication 2
\end{enumerate}
\end{tabular}
What I want is for each publication is to be numbered, which is why I tried using the enumerate code, but that didn't work. I also want the text to wrap around.
How would I solve both of those problems? Thanks in advance.


enumitemsee for example https://tex.stackexchange.com/a/42907/172164 (\begin{enumerate}[label=Publication \arabic*]in your case). In case your second question is about line breaks, the problem you're having is that withintabularthey do not automatically occur. One way to solve this would be to usetabularx, see for example here: https://tex.stackexchange.com/a/166747/172164 . – TivV Mar 01 '20 at 10:00