在多列环境中调整方程式

在多列环境中调整方程式

使用IEEEtran文档类,并尝试调整 2 个方程式中的间距以适合 1 行。

我的代码:

\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts

\usepackage{booktabs}
\usepackage{lipsum}  
\usepackage{tabularx,ragged2e}
\usepackage{multicol}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{blindtext}


\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
    T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
\begin{document}

\title{Conference Paper Title (IEEEtran)}


\begin{abstract}
This document is a model and instructions for \LaTeX.
This and the IEEEtran.cls ...
\end{abstract}

\begin{IEEEkeywords}
keyword1, keyword2
\end{IEEEkeywords}

\blindtext 

\begin{multicols}{2}
  \noindent
  \begin{equation}
   J_{P_m} = \frac{A_{P_n} - A_{P_m}}{\Delta t}  \label{eq_1}
  \end{equation} \columnbreak
  \begin{equation}
    BR_{P_m} = |bearing(P_n) - bearing(P_m)|  \label{eq_2}
  \end{equation}
\end{multicols}

\blindtext

\end{document}

输出:

在此处输入图片描述

没有产生任何错误或警告。

答案1

您的文档处于双列模式;我看不出有什么理由切换到四列模式。因此,请删除包装multicols器。

一些额外的建议。请考虑使用一个gather环境,而不是两个单独的equation环境。我还建议您加载 Times Roman 数学字体包,例如newtxmath,以配合文档的 Times Roman 文本字体。最后,使用由整个单词组成的变量名\mathrm(用于直立字母)或\mathit(用于倾斜字母)。

在此处输入图片描述

\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts

\usepackage{amsmath,blindtext}
\usepackage{newtxmath} % Times Roman math font package
\newcommand\vn[1]{\mathrm{#1}} % for typesetting variable names

\begin{document}
\title{Conference Paper Title (IEEEtran)}

\begin{abstract}
This document is a model and instructions for \LaTeX.
This and the IEEEtran.cls \dots
\end{abstract}

\begin{IEEEkeywords}
keyword1, keyword2
\end{IEEEkeywords}

\blindtext % don't leave a blank line before display math material
\begin{gather}
   J_{P_m}  = \frac{A_{P_n} - A_{P_m}}{\Delta t}  \label{eq_1} \\
   BR_{P_m} = |\vn{bearing}(P_n) - \vn{bearing}(P_m)|  \label{eq_2}
  \end{gather}

\blindtext
\end{document}

相关内容