我尝试使用这里提供的解决方案(https://tex.stackexchange.com/a/102122/69378) 用 tabular 修复 lstings 前瞻问题,用 longtable 修复同样的问题,但知道是否有用。
我需要做哪些更改才能使 lstings 与 longtable 一起工作,仅供我自己参考,longtable 和 tabular 实现花括号搜索的方式有什么不同?我认为这很常见,因为它会在 TeX 内部的基本级别完成,如链接答案中提到的那样。
\documentclass{article}
\usepackage{longtable}
\usepackage{listings}
\begin{document}
Test \lstinline{Test}
And the table:
\begin{longtable}{l l}
Test & Test \\
% Test & \lstinline{Test} \\ % doesn't work
% Test & {\lstinline{Test}} \\ % doesn't work - solution provided https://tex.stackexchange.com/a/102122/69378
\end{longtable}
\end{document}