a) i move item 3 up/down from the first list, item 3 from the second list will also move up/down.
b) i remove item 3 from the first list, item 3 from the second list will also be removed.
I have a sample MWE:
\documentclass{article} \usepackage{enumitem} \begin{document} % First list and the only list I make changes to. \begin{enumerate} \item This is item 1. % this item is linked to --> 1) \item This is item 2. % this item is linked to --> 2) \item This is item 3. % this item is linked to --> 3) \item This is item 4. % this item is linked to --> 4) \end{enumerate} % Second list \begin{enumerate} \item 1) \item 2) \item 3) \item 4) \end{enumerate} \end{document}
So for example :
\documentclass{article} \usepackage{enumitem} \begin{document} \begin{enumerate} \item This is item 1. % this item is linked to --> 1) \item This is item 3. % this item is linked to --> 3) % I moved item 3 up by one \item This is item 2. % this item is linked to --> 2) \item This is item 4. % this item is linked to --> 4) \end{enumerate} \begin{enumerate} \item 1) \item 3) \item 2) \item 4) \end{enumerate} \end{document}
Any help/direction will be greatly appreciated.