使用 mathindent 包时未定义控制序列

使用 mathindent 包时未定义控制序列

这是我的LaTeX 文档如下所示

\documentclass[16pt]{article}
\usepackage{amsmath}
\setlength{\mathindent}{0pt}

\begin{document}

    \noindent
    \textbf{\textit{$\underline{Integration}$}}
        
        \begin{equation*}
        \int{\frac{\log{|x^2+2|}}{(x+2)^2}dx}
        \end{equation*}

\end{document}

仅当我使用时才会发生此问题\mathindent
错误如下:-

! Undefined control sequence.
<argument> \mathindent 
                   
l.3 \setlength{\mathindent}{0pt}

答案1

\mathindentamsmath仅当您使用该选项加载时才会定义fleqn

\documentclass{article}
\usepackage[fleqn]{amsmath}
\setlength{\mathindent}{0pt}

\begin{document}

\section*{Integration}

\begin{equation*}
  \int \frac{\log\lvert x^2+2\rvert}{(x+2)^2}\,dx
\end{equation*}

\end{document}

进一步说明。

  1. 没有16pt选项,只有10pt11pt12pt用于调整字体大小。

  2. 输入数学更简单;许多括号都没用,我已经把它们去掉了。

  3. \lvert并且\rvert应用于绝对值。

  4. 如果你真的想要粗体、斜体和下划线(三重强调、注意),应该是

    \textbf{\textit{\underline{Integration}}}
    

    没有$标志。但这是糟糕的标记,应该避免。

相关内容