我第一次使用 LaTeX,有点困惑。
我想让这个文本
to dic + dcj for all 1 <= i, j <= 3
我找到了多个 LaTeX 符号列表,例如这个列表,但我不知道该怎么做。我只是识别了\leq
符号
dic + dcj for all 1 \leq i, j \leq 3
这对 less or equal 有效,但我在编译时遇到错误。对于 ic、cj、i、j 字体,我没有找到任何解决方案。有人能帮我吗?
答案1
正如评论中所述,对于完全的初学者,请参加一些入门课程并完成每一章。
为了快速给出答案,您必须遵守,如果您正在设置普通文本或数学。数学必须宣布,LaTeX 将改变其行为。要在普通文本中排版数学公式的部分,请$
在输入中使用美元符号()来标记公式的开头和结尾。这是您问题的 MWE。
\documentclass{article}
\begin{document}
To type the formulae within the normal text, you have to use a dollar
sign in the input, as here: to $d_{ic} + d_{cj}$ for all $1 \leq i, j
\leq 3$.
To present it as a formulae of its own paragraph, you have to use a
different environment, of course.
\end{document}
看起来像这样: