如何在 LaTeX 中绘制图表?
首先,我要说我正在使用 LyX,尽管我使用 ERT 没有问题。
其次,在 Latex 中绘制这样的简单图形最简单的方法是什么?
我看过一些带有图表的文档,我也看过一些示例,但我不知道如何绘制一个简单的图表 - 我需要什么包,等等?
First of all, let me say I'm using LyX, though I have no problem using ERT.
Secondly, what is the most simplest way to draw a simple graph like this in Latex?
I've seen some documents with graphs and I've seen some examples, but I couldn't figure out how to just draw a simple graph - what packages do I need, etc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
TikZ 可以做到这一点。
一个快速演示:
生成:
更多示例 @ http://www.texample.net/tikz/examples/tag/graphs/
有关 TikZ 的更多信息:http://sourceforge.net/projects/pgf/ 我想其中也会有安装指南。
TikZ can do this.
A quick demo:
produces:
More examples @ http://www.texample.net/tikz/examples/tag/graphs/
More information about TikZ: http://sourceforge.net/projects/pgf/ where I guess an installation guide will also be present.
除了使用 TikZ 的(优秀)建议之外,您还可以使用 gastex 。我在 TikZ 可用之前就使用了它,它也完成了它的工作。
Aside from the (excellent) suggestion to use TikZ, you could use gastex. I used this before TikZ was available and it did its job too.
我已经将 graphviz ( https://www.graphviz.org/gallery ) 与使用点的 LaTeX 一起使用命令生成 PDF 中的图形,并使用
includegraphics
来包含这些图形。如果 graphviz 产生了您想要的结果,这可能是集成的最佳方式: dot2tex: https: //ctan.org/pkg/dot2tex?lang=en
I have used graphviz ( https://www.graphviz.org/gallery ) together with LaTeX using dot command to generate graphs in PDF and
includegraphics
to include those.If graphviz produces what you are aiming at, this might be the best way to integrate: dot2tex: https://ctan.org/pkg/dot2tex?lang=en
也许使用 tikz。
Perhaps use tikz.
根据我的经验,我总是使用外部程序来生成图形(mathematica、gnuplot、matlab 等)并将图形导出为 pdf 或 eps 文件。然后我使用
includegraphics
将其包含到文档中。In my experience, I always just use an external program to generate the graph (mathematica, gnuplot, matlab, etc.) and export the graph as a pdf or eps file. Then I include it into the document with
includegraphics
.