我尝试在 LaTeX 中渲染集合符号,但它报错并引发了很多错误。以下是我想要渲染的内容:
y_it∈ {ln GDP per capita, ln GVA per capita (by six sectors respectively)}
Td∈ [−6, −3) ℃
这是我的代码片段:
$y_{it} \in \[ \left\{ $\ln_{GDP per capita}$, $\ln_{GVA per capita}$ (by six sectors respectively) \right\}\]$
$T_{d}$ \in $[-6, -3)\, ^{\circ}\mathrm{C}$
似乎编译器对上面的脚本不满意,我可能犯了一个错误。有什么快速解决方案可以修复错误吗?
答案1
一些建议
不要总是进出数学模式
当已经处于(正常、内联)数学模式时,不要尝试启动显示数学模式
用于
\text
在数学模式下排版文本片段。不要在下标位置排版较长的字符串,因为在那里它们会很难阅读。在第一行使用
\left
和\right
不会产生任何效果。如果要放大花括号,请写\bigl\{
和\bigr\}
。
\documentclass{article}
\usepackage{amsmath} % for "\text" macro
\begin{document}
$y_{it} \in \bigl\{ \ln(\text{GDP per capita}), \ln(\text{GVA per capita,
by 6 sectors resp.}) \bigr\}$
$T_{d} \in [-6, -3)\,^{\circ}\mathrm{C}$
\end{document}