如何使用 Markdown 生成带参考文献的 PDF

  1. 在 Markdown 中加入引用(BibTeX 引用键)

    e.g. [@qi2025systematic].

  2. 准备 .bib 文件(可从 Google Scholar 导出)

    @article{qi2025systematic,
    title={A systematic literature review on designing self-regulated learning using generative artificial intelligence and its future research directions},
    author={Qi, XIA and Liu, Qian and Tlili, Ahmed and Thomas, KF},
    journal={Computers & Education},
    pages={105465},
    year={2025},
    publisher={Elsevier}
    }

  3. 安装 Pandoc 和 LaTeX(MacOS)

    brew install pandoc
    brew install --cask mactex-no-gui

  4. 生成 PDF

    pandoc xxx.md
    --citeproc
    --bibliography=xxx.bib
    --pdf-engine=pdflatex
    -o xxx.pdf

(可选)指定引用格式(如 APA):

复制代码
--csl=apa.csl
  1. 导出 Word 或 HTML

    pandoc xxx.md
    --citeproc
    --bibliography=xxx.bib
    -o xxx.docx # or xxx.html

  2. 输出效果示例

相关推荐
修己xj1 天前
MarkText:一款被低估的开源 Markdown 编辑器
markdown
weixin_397574094 天前
PDF复杂表格的1:1还原引擎:跨页表格自动拼接技术实战
大数据·人工智能·pdf
Metaphor6924 天前
使用 Python 将 PDF 转换为 HTML
python·pdf·html
cqbzcsq4 天前
CellFlow虚拟细胞论文阅读
论文阅读·人工智能·笔记·学习·生物信息
凌晨一点的秃头猪4 天前
论文阅读 GTI(Graph-based Tree Index): 面向高维空间最近邻搜索的动态图-树混合索引结构
论文阅读
2601_961845154 天前
粉笔行测5000题电子版|pdf|解析
pdf·新媒体运营·github·个人开发·内容运营·规格说明书·极限编程
有Li5 天前
PTCMIL:基于提示 token 聚类的全切片图像多实例学习分析文献速递/多模态医学影像最新进展
论文阅读·学习·数据挖掘·聚类·文献·医学生
Sour5 天前
PDF翻译卡住不动怎么办?扫描件、OCR 和大文件排查清单
前端·pdf·ocr
大家的林语冰5 天前
连 Markdown 都不放过,Rust 在前端基建杀疯了,万物皆可“锈化“!
前端·javascript·markdown
大模型最新论文速读5 天前
06-16 · LLM 最新论文速览
论文阅读·人工智能·深度学习·机器学习·自然语言处理