[Tex/LaTex] How to change the span between text columns in IEEETran

ieeetran

A need to change the distance between the 2 columns of my article, in order to fulfill a conference specification. Namely, I have to set it to 14mm (0.55 inches). However, I can't figure it out.

Right now, I am first assigning values to the margin variables, and then calling the IEEETran class:

\newcommand{\CLASSINPUTtoptextmargin}{2cm}
\newcommand{\CLASSINPUTbottomtextmargin}{4.4cm}
\newcommand{\CLASSINPUToutersidemargin}{1.3cm}
\newcommand{\CLASSINPUTinnersidemargin}{1.3cm}
\documentclass[10pt, conference, a4paper, final]{IEEEtran}

Best Answer

The solution is simple. You just have to add \setlength{\columnsep}{14mm} to your preamble. That will solve your issue.