使用 latex 打字

使用 latex 打字

我已经花了大约两个小时来处理这个问题,但仍然找不到任何错误。这是我输入的内容:

\documentclas [a4papter, 12pt] {article}
\begin{document}

find \(lim_{x \to 3^+}\)\( frac{2x}{x-3}\) and \(lim_{x\to 3^-}\)\(frac{2x}{x-3}\)

\end{document}

谁能告诉我这到底是哪里出了问题?非常感谢。

答案1

您犯了错误\documentclas(最后一个“s”不见了),这会导致错误。此外,您犯了错误,也a4papter应该犯错误a4paper(这只会导致警告,但仍然是错误,应该处理)。

\documentclass[a4paper, 12pt]{article}
\usepackage{amsmath}

\begin{document}

find  \(\lim_{x \to 3^+}\frac{2x}{x-3} \) and \( \lim_{x\to 3^-}\frac{2x}{x-3} \)

find  
\[
\lim_{x \to 3^+}\frac{2x}{x-3} \text{ and } \lim_{x\to 3^-}\frac{2x}{x-3}
\]

\end{document}

在此处输入图片描述

还要注意,您必须\lim适当地排版限制(正确的字体和间距),并且需要\frac排版分数。在我的示例中,我还展示了表达式的内联形式和显示形式。

只要你处于数学表达式中,你就不必关闭数学模式并重新打开它,所以你可以简单地说

\( \lim_{x \to 3^+}\frac{2x}{x-3} \)

代替

\( \lim_{x \to 3^+} \)\( \frac{2x}{x-3} \)

相关内容