Utilizando elIEEEtranclase de documento e intentar ajustar el espaciado en 2 ecuaciones para que se ajuste a 1 fila.
Mi 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}
Producción:
No se genera ningún error o advertencia.
Respuesta1
Su documento está en modo de dos columnas; No veo ninguna razón para cambiar al modo de cuatro columnas. Por lo tanto, elimine el multicols
contenedor.
Algunas sugerencias adicionales. Considere utilizar un gather
entorno en lugar de dos equation
entornos separados. También le recomendaría que cargue un paquete de fuentes matemáticas Times Roman, como newtxmath
, para combinar con la fuente de texto Times Roman del documento. Finalmente, utilice \mathrm
(para letras verticales) o \mathit
(para letras inclinadas) nombres de variables que consten de palabras enteras.
\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}