发布时间:2011-10-25 07:12:36
文章类别:小技巧
原文地址:http://blog.sina.com.cn/s/blog_5e16f1770102e0d9.html

QQ群:91940767/145316219/141877998/80300084/194770436
淘宝店:http://latexstudio.taobao.com
技巧续篇:http://latexstudio.net/
常见数学公式问题集下载

python是一种面向对象、直译式计算机程序设计语言,受到很多用户的热捧。

LaTeX里面如何定制输出python一样漂亮的样式呢?

很多用户不愿意自己去定制,就有一些网络TeX达人做好了。

参看:

https://github.com/olivierverdier/python-latex-highlighting

这个包提供了一个环境

\begin{python}

pyton code.

\end{python}

输出样式如下:

image

测试代码:

\documentclass{article}
\usepackage{graphicx}
\usepackage{pythonhighlight}
\begin{document}

\begin{python}
#
from pyx import *

g = graph.graphxy(width=8)
g.plot(graph.data.function("y(x)=sin(x)/x", min=-15, max=15))
g.writePDFfile("function")
print r'\includegraphics{function}'
\end{python}

\end{document}


点赞(0)

评论列表 共有 0 条评论

暂无评论
立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部