zoukankan      html  css  js  c++  java
  • IOS Press Latex调试

    鄙人在JIFS官网上下载了LaTeX模板,连接:

    https://www.iospress.nl/journal/journal-of-intelligent-fuzzy-systems/?tab=submission-of-manus#submission-of-manuscripts

    下载完成后,只保留了iosart2c.tex相关的文档,我删除了template相关的.tex文件。

    模板有两个重大的问题阻碍了调试,1)usepackage{natbib}报错;2)usepackage{graphics}报错

    1. 需要将1)的宏包修改为:

    usepackage[square,sort,comma,numbers]{natbib}

    2. 需要将1)的宏包修改为:

    usepackage{graphicx}

    如果需要添加其他的宏包或者 ewtheorem{},可以修改为:

    usepackage[T1]{fontenc}
    usepackage{times}%
    usepackage[square,sort,comma,numbers]{natbib}
    usepackage{color}
    %usepackage[dvips]{hyperref}
    usepackage{amsmath}
    usepackage{dcolumn}
    %usepackage{endnotes}
    usepackage{graphicx}
    usepackage{subfigure}
    %usepackage{cite}
    ewtheorem{example}{Example}
    ewtheorem{theorem}{Theorem}
    ewtheorem{proof}{Proof}
    ewtheorem{definition}{Definition}

    其次,结尾部分注释掉所有template中给出的“egin{thebibliography}~end{thebibliography}”

    修改为:

    ibliographystyle{elsarticle-num}
    ibliography{xxx}

    “xxx”为bib文件名称

    IOS Press LaTeX调试完成!

    厉害了我的sumoier(https://www.cnblogs.com/sunny99/涩会姐技术支持!

  • 相关阅读:
    Yum与list结合
    DNS辅助
    DHCP中继
    apache+SSL 搭建https
    vsftpd服务器
    根据Eclipse SVN changelog使用ANT自动打增量包
    SHELL 近期学习
    Tomcat源码学习一
    oracle笔记
    Linux 下安装 SVN服务器
  • 原文地址:https://www.cnblogs.com/Yi-920259020/p/sumoier.html
Copyright © 2011-2022 走看看