不幸的是,我对 TeX 编码知之甚少,所以不知道下面的代码有什么问题。它由outreg2
Stata 中的命令生成(到目前为止一直运行良好)并导入(通过\input{...}
)LyX。
任何帮助将非常感激。
\begin{tabular}{lcc} \hline
& & (1) \\
EQUATION & VARIABLES & \\ \hline
& & \\
votes & highest_prom & 0.615** \\
& & (0.28) \\
& middle_prom & 0.410* \\
& & (0.22) \\
& Constant & 0.121 \\
& & (0.20) \\
& & \\
& Observations & 135 \\ \hline
\multicolumn{3}{c}{Robust standard errors in parentheses} \\
\multicolumn{3}{c}{*** p<0.01, ** p<0.05, * p<0.1} \\
\end{tabular}
答案1
应避免将其用作_
常规名称的一部分。该字符表示后面会跟一个下标,但需要数学模式。您可以使用 来快速修复此问题middle\_prom
。
您还可以添加
\usepackage[T1]{fontenc}% http://ctan.org/pkg/fontenc
到你的 LaTeX 序言中并\detokenize{middle_prom}
在表格中使用(T1 字体编码提供了基于文本的下划线。有关替代方案,请考虑阅读文本模式与数学模式下的下划线。