Advertisement

IEEE会议终稿格式流程整理

阅读量:

1 排版过程

  1. 通过 IEEE overleaf模板选择会议模板,导入至latex 在线编辑网站 overleaf
  2. 参照一小时速通IEEE Conference Latex模板_哔哩哔哩_bilibili 填写latex相关内容;
  3. 图片参照 2.1.1 处理;
  4. 生成 PDF ,并上传到 IEEE 格式效验进行格式效验;
  5. 下载邮件中的 PDF 文件;
  6. adobe acrobat DC 的 PDF 对比功能进行 PDF 文档对比,防止错误;
  7. 查看文档属性:说明:文档属性:
    image.png

2 latex 相关网站

  1. latex 在线编辑网站 overleaf
  2. IEEE overleaf模板
  3. IEEE conference 模板
  4. B 站教学视频:一小时速通IEEE Conference Latex模板_哔哩哔哩_bilibili
  5. IEEE 格式效验

2.1 Latex 格式

2.1.1 图片

  1. 自动去除多余空白:
    1. 在 Visio 中,设计–>页面设置–>大小–>适应绘图。
    2. 另存为 PDF 格式, 选项选择 PDF/A。`Errors: Font ArialMT, TimesNewRomanPS-ItalicMT, TimesNewRomanPSMT is not embedded

  2. 插入到 latex 中。

复制代码
    \begin{figure}%[h]可以强制安放到当前位置,否则为自动调整
    \centering
     \includegraphics[trim = {1mm 5mm 1mm 5mm},clip,width=1.0  \linewidth]{yourFigureName.pdf}%图片参数(裁切,缩放,图片名)
     %\includegraphics[trim={left bottom right top},clip]{filename}
    \caption{The flowchart of the proposed method}%图片标题
    \label{fig:The flowchart of the proposed method}%标签,用于引用
    \end{figure}
    
    
    AI写代码latex
  1. 引用:Fig.\ref{fig: The flowchart of the proposed method}

全部评论 (0)

还没有任何评论哟~