博客
关于我
LaTex 自动生成IEEE格式的参考文献
阅读量:295 次
发布时间:2019-03-03

本文共 1252 字,大约阅读时间需要 4 分钟。

如何在IEEE论文中使用BibTeX引入参考文献

在撰写IEEE格式的论文时,正确引用文献是必不可少的。以下是使用BibTeX引入参考文献的具体步骤:

1. 下载IEEE LaTeX模板

进入IEEE官网,找到所需的论文模板。下载并解压ieeeconf.zip文件,里面包含了IEEE格式的 LaTeX 模板。

2. 添加BibTeX引用

使用BibTeX管理文献引用,可以通过以下步骤进行:

  • 在百度学术或谷歌学术中搜索所需文献,右键点击目标文章,选择“引用文献”。
  • 这样会自动弹出BibTeX格式的引用示例,如下所示:
@article{Wolfram2010Vox,  title={Vox Populi: The Public Searching of the Web},  author={Wolfram, Dietmar and Spink, Amanda and Jansen, Bernard J and Saracevic, Tefko},  journal={Journal of the Association for Information Science & Technology},  volume={52},  number={12},  pages={1073-1074},  year={2010},}

将此内容复制到新的文件mylib.bib中。

3. 修改 LaTeX 模板

在下载的 LaTeX 模板中,找到以下内容并进行修改:

%\begin{thebibliography}{99}\bibliographystyle{IEEEtran}\bibliography{IEEEabrv,mylib} %\end{thebibliography}

将上述内容替换为:

\bibliographystyle{IEEEtran}\bibliography{IEEEabrv,mylib}

其中,mylib对应你创建的 mylib.bib 文件。

4. 引用文献

在文档中需要引用文献的地方,使用以下命令:

\cite{Wolfram2010Vox}

例如:

This is a test operation, cite a article\cite{Wolfram2010Vox}

5. 编译检查

为了确保文献引用正确,按照以下步骤编译 LaTeX 文件:

  • 第一次编译:使用 PDFLaTeX 编译你的 .tex 文件。
  • 生成 AUX 文件:这会生成一个 .aux 文件,供 BibTeX 使用。
  • 生成 BibTeX 文件:使用 BibTeX 编译你的 .bib 文件。
  • 第二次编译:再次使用 PDFLaTeX 编译你的 .tex 文件,此时文献引用会显示在文档中。
  • 最终编译:最后一次使用 PDFLaTeX 编译你的 .tex 文件,确保所有文献引用正确无误。
  • 通过以上步骤,你可以轻松完成IEEE格式论文中的参考文献引用,减少手动输入错误,提升论文的专业性和规范性。

    转载地址:http://jxgl.baihongyu.com/

    你可能感兴趣的文章
    notepad++正则表达式替换字符串详解
    查看>>
    notepad如何自动对齐_notepad++怎么自动排版
    查看>>
    Notes on Paul Irish's "Things I learned from the jQuery source" casts
    查看>>
    Notification 使用详解(很全
    查看>>
    NotImplementedError: Cannot copy out of meta tensor; no data! Please use torch.nn.Module.to_empty()
    查看>>
    NotImplementedError: Could not run torchvision::nms
    查看>>
    nova基于ubs机制扩展scheduler-filter
    查看>>
    Now trying to drop the old temporary tablespace, the session hangs.
    查看>>
    nowcoder—Beauty of Trees
    查看>>
    np.arange()和np.linspace()绘制logistic回归图像时得到不同的结果?
    查看>>
    np.power的使用
    查看>>
    NPM 2FA双重认证的设置方法
    查看>>
    npm build报错Cannot find module ‘webpack/lib/rules/BasicEffectRulePlugin‘解决方法
    查看>>
    npm build报错Cannot find module ‘webpack‘解决方法
    查看>>
    npm ERR! ERESOLVE could not resolve报错
    查看>>
    npm ERR! fatal: unable to connect to github.com:
    查看>>
    npm ERR! Unexpected end of JSON input while parsing near '...on":"0.10.3","direc to'
    查看>>
    npm ERR! Unexpected end of JSON input while parsing near ‘...“:“^1.2.0“,“vue-html-‘ npm ERR! A comp
    查看>>
    npm error Missing script: “server“npm errornpm error Did you mean this?npm error npm run serve
    查看>>
    npm error MSB3428: 未能加载 Visual C++ 组件“VCBuild.exe”。要解决此问题,1) 安装
    查看>>