如何使用数学类型切换与 bmc 模板

如何使用数学类型切换与 bmc 模板

我是 LaTeX 新手,我需要将 docx 论文转换为 tex 文件。我正在使用 bmc 模板,但我遇到了方程式问题。我使用了数学类型并使用了 IEEEtrans,它工作正常,但是当我在 bmc 模板中使用数学类型切换输出时它不起作用。用于方程式的命令是

\begin{eqnarray}但在 IEEE 中它是\begin{equation}...我试图寻找不同的,并且&=&按照我的理解使用,但它不起作用。这里是代码示例:

Let ${{P}_{INTF}}\triangleq {{G}_{1,3}}{{P}_{1}}$. Similarly, ${{\tilde{P}}_{INTF}}\triangleq {{\tilde{G}}_{1,3}}+{{\tilde{P}}_{1}}$ is then the sum of independent Gaussian random variables and has the following mean and standard deviation:

这是包含方程式的文本。在 IEEE 模板中,它适用于

\begin{equation}

在 bmc 中它不起作用,我收到此错误

! Undefined control sequence.

l.345 Let ${{P}_{INTF}}\triangleq

我不知道问题是什么。

答案1

很难从这么小的代码片段中推断出很多信息。然而

  1. \triangleq需求amssymb,如下例所示,取自您的代码:

    \documentclass{article}
    
    \usepackage{amsmath,amssymb}
    \begin{document}
    
    Let ${{P}_{\textrm{INTF}}}\triangleq {{G}_{1,3}}{{P}_{1}}$. 
    Similarly, ${{\tilde{P}}_{\textrm{INTF}}}\triangleq {{\tilde{G}}_{1,3}}+{{\tilde{P}}_{1}}$ 
    is then the sum of independent Gaussian random variables and has the following mean 
    and standard deviation:
    
    \end{document}
    
  2. \begin{eqnarray}通常,使用etc. 不是一个好的解决方案。packageamsmath提供了更好的环境。使用\begin{eqnarray}而不是 of\begin{equation}是一个错误,因为前者用于表达式。当然,您应该=equation环境中删除周围的 & 符号。

相关内容