Submit a manuscript through EDAS and I am using the IEEEtran class (conference option). EDAS gives the following errors:
Solutions:
1. May be caused by figures or tables which cross two columns.
Before modification:
- \begin{figure*}[ht]
- \begin{center}
- \includegraphics[scale=0.65]{Figure/SystemSchematic_new.eps}
- \caption{Schematic diagram of the hybrid precoding system under consideration}\label{fig:BlockDiagram}
- \end{center}
- \end{figure*}
After modification:
- \begin{figure*}[htpb]
- \centering
- \begin{minipage}[t]{0.7\linewidth}
- \includegraphics[width=5.6in,height=3in]{Figure/SystemSchematic_new.eps}
- \caption{Schematic diagram of the hybrid precoding system under consideration}\label{fig:BlockDiagram}
- \parbox{6.5cm}{\small \hspace{1.5cm} }
- \end{minipage}
- \end{figure*}
Passed.
2. May be caused by the page number. try to remove the page number
Before modification:
\maketitle % %%% add page number in IEEE, should be placed after \maketitle \thispagestyle{plain} \pagestyle{plain}
After modification: (Comment the add page number.)
\maketitle % %%% add page number in IEEE, should be placed after \maketitle % \thispagestyle{plain} % \pagestyle{plain}
3. Try to add in preamble \usepackage{showframe}
and than see, if all pages are inside of page layout. then try rephrase content of fourth page or page before, that it will fit into frame. on the end remove \usepackage{showframe}
from preamble!
4. Add \columnsep 0.2in
before \begin{document}
\setlength{\columnsep}{0.2 in} \def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
References:
1. https://tex.stackexchange.com/questions/428853/the-gutter-between-columns-is-0-155-inches-wide-on-page-4-but-should-be-at-le?noredirect=1
2. https://www.cnblogs.com/qq952693358/p/8856602.html
3. http://muchong.com/bbs/viewthread.php?tid=12152914&target=1
4. https://www.cnblogs.com/qq952693358/p/9613788.html
5. http://www.freesion.com/article/410119198/
原文地址:https://www.cnblogs.com/quinn-yann/p/11279801.html