LaTeX 不允许我在文本中使用 _,它一直尝试将其编译为数学,因此无法编译我的 pdf。
有谁知道我怎样才能让它不这样做?
我在下面使用它:
\textit{item_name}
\textit{current_item.name}
\textit{_qty}
\textit{id='small_qty'}
答案1
_
是 Latex 中的特殊字符,你需要使用
\_
反而
LaTeX 不允许我在文本中使用 _,它一直尝试将其编译为数学,因此无法编译我的 pdf。
有谁知道我怎样才能让它不这样做?
我在下面使用它:
\textit{item_name}
\textit{current_item.name}
\textit{_qty}
\textit{id='small_qty'}
_
是 Latex 中的特殊字符,你需要使用
\_
反而