Hi all, (how) can I have source code block in lists not breaking the latex exported list? Example: * Test 1) this is the first item #+srcname: code #+begin_src R :tangle no :export code print("some code") #+end_src which has some code 2) this is the second item This results in \section{Test} \label{sec-1} \begin{enumerate} \item this is the first item \end{enumerate} \lstset{language=R} \begin{lstlisting} print("some code") \end{lstlisting} which has some code \begin{enumerate} \item this is the second item \end{enumerate} While I expect this: \section{Test} \label{sec-1} \begin{enumerate} \item this is the first item \lstset{language=R} \begin{lstlisting} print("some code") \end{lstlisting} which has some code \item this is the second item \end{enumerate} Thanks, Andreas