Usando oIEEEtranclasse do documento e tentando ajustar o espaçamento em 2 equações para caber em 1 linha.
Meu código:
\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}
Saída:
Nenhum erro ou aviso gerado.
Responder1
Seu documento está no modo de duas colunas; Não vejo razão para mudar para o modo de quatro colunas. Portanto, exclua o multicols
wrapper.
Algumas sugestões adicionais. Considere usar um gather
ambiente em vez de dois equation
ambientes separados. Eu também recomendo que você carregue um pacote de fontes matemáticas Times Roman, como newtxmath
, para combinar com a fonte de texto Times Roman do documento. Finalmente, use \mathrm
(para letras verticais) ou \mathit
(para letras inclinadas) nomes de variáveis que consistem em palavras inteiras.
\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}