LuaLaTeX 和列表不起作用,而 XeLaTex 可以正常工作

LuaLaTeX 和列表不起作用,而 XeLaTex 可以正常工作

我正在尝试从 XeLaTeX 迁移到 LuaLaTeX。我有一些带有特殊分隔符(下划线)的列表。以下 MWE 在 XeLaTex 下编译完美,但在 LuaLaTeX 下出现以下错误:

错误信息

./plots.tex:36: Missing $ inserted.
<inserted text> 
$
l.36 TABLE1(_ID1_
               ,DATA1)
? 
Process aborted

平均能量损失

%!TEX TS-program = lualatex
%!TEX encoding = UTF-8 Unicode
\documentclass[11pt, a4paper]{article}
\usepackage[dvipsnames,svgnames,x11names,hyperref]{xcolor}
\usepackage{unicode-math}
\usepackage{listings}
\definecolor{codegreen}{rgb}{0,0.6,0}
\definecolor{codegray}{rgb}{0.5,0.5,0.5}
\definecolor{codepurple}{rgb}{0.58,0,0.82}
\definecolor{backcolour}{rgb}{0.95,0.95,0.92}
\lstdefinestyle{mystyle}{
    language=SQL,
    backgroundcolor=\color{backcolour},
    commentstyle=\color{codegreen},
    keywordstyle=\color{magenta},
    numberstyle=\small\ttfamily\color{codegray},
    stringstyle=\color{codepurple},
    basicstyle=\small\ttfamily,
    breakatwhitespace=false,         
    breaklines=true,                 
    captionpos=t,                    
    keepspaces=true,                 
    numbers=left,                    
    numbersep=5pt,                  
    showspaces=false,                
    showstringspaces=false,
    showtabs=false,                  
    tabsize=4,
    moredelim=[is][\underbar]{_}{_},
    moredelim=**[is][\bfseries]{@}{@},
    escapeinside={(*@}{@*)}
}
\begin{document}
\lstset{style=mystyle}
\begin{lstlisting}[caption=Database Tables, label={lst:tables}]
TABLE1(_ID1_,DATA1)
TABLE1(_ID2_,DATA2)
TABLE3(_ID3_,DATA3)
\end{lstlisting}
\end{document}

附加信息

  1. 我正在使用 MacTeX 2014。
  2. 我尝试使用该underscore包,但是没有帮助。
  3. 我尝试改变分隔符,但也没有帮助。

答案1

问题在于\underbarmoredelim设置中的命令:unicode-math它是一个数学命令。例如,您可以使用包ulem\uline改为:

\usepackage{ulem}
...

`moredelim=[is][\uline]{_}{_},`

相关内容