文章目录
Markdown、.bib、LaTeX + Typora、Pandoc 管理论文参考文献
一、为什么选择这样管理参考文献
- Markdown 排版方便,适合经常码字做笔记,常见的打开工具也很快捷
- Typora 跨平台的 Markdown 编辑工具,所写即所得
- BibTex1 是用于格式化管理论文的参考文献,一般搭配 LaTeX 使用
- 可以使用单独的 .bib 文件管理论文的所有参考文献,便于参考文献整理
- 不用自行调整论文参考文献的格式,可以自动生成
- Pandoc 号称为文本格式转换的瑞士军刀,可以将 LaTeX 渲染成不同格式的文本
二、基本使用方式
1. 安装 Pandoc
参考官网安装方式:Pandoc - Installing pandoc
Windows 直接下载点击下一步即可
2. 编辑 .bib 文件
在谷歌学术等常见的论文检索平台中直接点击引用格式,选择 BibTex 字样的引用格式
然后就可以得到 .bib 引用格式
新建文档 myRefe.bib,保留需要用到的所有参考文献
myRefe.bib
@article{deng2014deep,
title={Deep learning: methods and applications},
author={Deng, Li and Yu, Dong},
journal={Foundations and trends in signal processing},
volume={7},
number={3--4},
pages={197--387},
year={2014},
publisher={Now Publishers Inc. Hanover, MA, USA}
}
@article{carrio2017review,
title={A review of deep learning methods and applications for unmanned aerial vehicles},
author={Carrio, Adrian and Sampedro, Carlos and Rodriguez-Ramos, Alejandro and Campoy, Pascual},
journal={Journal of Sensors},
volume={2017},
year={2017},
publisher={Hindawi}
}
@article{张宾2020探究人工智能时代背景下自然语言处理技术的发展应用,
title={探究人工智能时代背景下自然语言处理技术的发展应用},
author={张宾 and 武斌 and 周晶 and 李慧超 and 王帅},
journal={科技风},
volume={23},
year={2020}
}
@inproceedings{pan2020security,
title={Security of satellite-based cv-qkd under realistic assumptions},
author={Pan, Ziwen and Djordjevic, Ivan B},
booktitle={2020 22nd International Conference on Transparent Optical Networks (ICTON)},
pages={1--4},
year={2020},
organization={IEEE}
}
3. 编辑源文件 .md
新建 demo.md
demo.md
# demo
引用第一篇文献[@deng2014deep]
引用第二篇文献[@carrio2017review]
引用第三篇文献[@张宾2020探究人工智能时代背景下自然语言处理技术的发展应用]
引用第四篇文献[@pan2020security]
在 Markdown 文件中使用 [@参考文献id]
进行引用对应的参考文献,参考文献id 就是 .bib 文件中的 大括号的第一个参数
4. 输出目标文件
myRefe.bib 和 demo.md 放到同一目录下,然后在该目录下打开命令行,输入如下命令
pandoc --cite --bibliography=myRefe.bib demo.md -o demo-citation.docx
然后就可以目标文件 demo-citation.docx