在 github 上的 README.md 内添加 PDF 图
Adding PDF plot inside README.md on github
我正在使用 README.md
页面撰写关于 GitHub 的分析报告。
我能够成功地创建表格并向页面添加必要的文本,但找不到在自述文件中实际显示我的 PDF 图的方法。
我的地块在我的 git 仓库里,有没有人试过做类似的事情?
通过 PDF 图,我假设你的意思是 Probability density function plots, not the Adobe Portable Document Format。
您不能直接在 README
中渲染 pdf 图。现在的解决方法是将其渲染为图像(例如 png)和 include that image in the README.md
markdown file, using a relative link.
我正在使用 README.md
页面撰写关于 GitHub 的分析报告。
我能够成功地创建表格并向页面添加必要的文本,但找不到在自述文件中实际显示我的 PDF 图的方法。
我的地块在我的 git 仓库里,有没有人试过做类似的事情?
通过 PDF 图,我假设你的意思是 Probability density function plots, not the Adobe Portable Document Format。
您不能直接在 README
中渲染 pdf 图。现在的解决方法是将其渲染为图像(例如 png)和 include that image in the README.md
markdown file, using a relative link.