我正在嘗試從 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}
附加資訊:
- 我正在使用 MacTeX 2014。
- 我嘗試使用該
underscore
包,但這沒有幫助。 - 我嘗試更改分隔符,但這也沒有幫助。
答案1
問題是\underbar
您moredelim
設定中的命令:unicode-math
它是一個數學命令。您可以使用例如ulem
包,而\uline
不是:
\usepackage{ulem}
...
`moredelim=[is][\uline]{_}{_},`