LaTeX 条形图
我正在尝试使用 LaTeX 制作条形图。 到目前为止我还没有成功,所以任何人都可以帮助我,也许可以提供最近项目的副本吗? 如何使用 pstricks 制作条形图?我希望能有最简单的解决方案,因为我最近才开始使用 TeX。
这是我到目前为止所拥有的:
\psset{unit=0.5in}%
\begin{pspicture}(0,-0.5)(3,3)%
\readpsbardata{\data}{example1.csv}%
\psbarchart[barstyle={red,blue}]{\data}%
\end{pspicture}
I am trying to make a bar chart using LaTeX.
I've been unsuccessful so far, so can anyone help me out, perhaps with a copy of a recent project?
How can I make a bar chart with pstricks? I would appreciate the most simple solution possible because I just got started with TeX recently.
Like mentioned here in the official document
This is what I have so far:
\psset{unit=0.5in}%
\begin{pspicture}(0,-0.5)(3,3)%
\readpsbardata{\data}{example1.csv}%
\psbarchart[barstyle={red,blue}]{\data}%
\end{pspicture}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我强烈推荐使用 PGF、TiKZ 和 PGFPlots 的神奇组合。这些工具通常被认为是 pstricks 的替代品。它们与 pdflatex 和许多其他给 pstricks 带来麻烦的工具兼容。
以下高度语义化的 TeX 源
代码
I highly recommend using the magical combination of PGF, TiKZ and PGFPlots. These tools are generally accepted as the replacements to pstricks. They are compatible with pdflatex and many other tools that give pstricks trouble.
This following highly semantic TeX-source
Yields
您必须使用 pst-bar 包和 pstricks 包。
You have to use pst-bar package and pstricks package.