zoukankan      html  css  js  c++  java
  • 用Latex写*论文: IEEE Latex模板和文档设置(documentclass)

    1、可以在博客园中使用latex代码输出公式,以后再以不用复制图片粘贴啦: http://www.cnblogs.com/cmt/p/3279312.html

    例如以下代码两边加上 $ 符号后 x(k + 1)=Phi(k) x(k)+Gamma(k) w(k),可产生 $LaTeX$ 公式

    $  x(k + 1)=Phi(k) x(k)+Gamma(k) w(k)  $

    2、IEEE模板:http://www.ieee.org/publications_standards/publications/authors/author_templates.html 

    IEEE_templates

    或者也可以去Latex官方资源站下载:http://www.ctan.org/tex-archive/macros/latex/contrib/IEEEtran/

    IEEE页面上的文件下载下来是个压缩包,里面有个PDF文件详述了模板的使用方法:

    image

    下面来介绍一下模板的具体用法(实际是翻译总结了一下《How to Use the LEEEtran $LaTeX$ Class》)。首先看导言部分的文件格式的命令,做黄色标记的是默认(default)选项

    documentclass[10pt,journal,final,twocolumn,]{IEEEtran}

    (1)  documentclass[10pt,journal,final]{IEEEtran}

    draft : 草稿模式,双倍行距,四面页边距均为1英寸,不显示图片,但是留空。

    draftcls : 草稿模式,跟draft一样,不过可以显示图片

    draftclsnofoot : 跟draftcls 一样,不过在脚注里不显示“DRAFT”字样,或者说,没有脚注

    final:最终模式,默认选项

    (2) documentclass[10pt,journal,draft]{IEEEtran}

    peerreview : 审稿模式,单栏,title, author names and abstract 被自动隐藏(审稿需要),可用 IEEEpeerreviewmaketitle 命令(需写在maketitle后面 )生成单独的封面(一般写在abstract之前)

    peerreviewca: 标题下会显示作者名字,其他跟peerreview一样

    journal 和 technote : 格式与正常发表的论文一样,双栏,摘要、作者什么的都有

    conference : 会议格式

    (3) onecolumn,twocolumn : 单栏,双栏,双栏为默认,单栏一般用于草稿

    (4) onside, twoside : 设置单双面打印,默认为单面。原文如下:

    These options control whether the layout follows that of
    single sided or two sided (duplex) printing. Because the side
    margins are normally centered, the main notable difference is
    in the format of the running headings.

    (5) romanappendices : 把附录默认的编号方式由A,B,C 改为 罗马数字 ,IEEE真是心细,这个都要设一个参数。

    (6) compsoc, transmag : IEEE Computer Society and TRANSACTIONS ON MAGNETICS 专用格式,不往这俩地方投就不用选了

    (7) letterpaper, a4paper : 页面类型,默认为美国通用的 US letter (8.5in 11in), 也是IEEE通用的,也可以改为A4 (210mm 297mm)。

    (8) 几种不常用的命令:

    CLASSINPUT : documentclass 命令之前使用,可以自定义文章格式,一般用不到。

    CLASSOPTION:Users should treat the CLASSOPTIONs as being “read-only”
    and not attempt to manually alter their values because IEEEtran
    uses them internally as flags to determine which options
    have been selected—changing these flags will likely result in
    improper formatting.

    CLASSINFO :As with CLASSOPTIONs, users should not attempt to alter
    the CLASSINFOs.

  • 相关阅读:
    19年下半年读书清单一览
    2019-2020:时间戳
    全链路压测资料汇总——业内大厂解决方案
    个人公众号开通啦
    windows 10环境下安装Tensorflow-gpu
    如何判断安卓模拟器的型号(品牌)
    socket.io的websocket示例
    Node + Selenium使用小结
    基于SOUI开发一个简单的小工具
    国际化之Android设备支持的语种
  • 原文地址:https://www.cnblogs.com/oucsheep/p/4169754.html
Copyright © 2011-2022 走看看