您的位置:

关于latex插入python代码的信息

本文目录一览:

python魔法函数在 latex中怎么使用

PyLaTeX使用Python语法产生LaTex文档的函数库。LaTeX是一种基于TEX的排版系统。PyLaTeX可以使用Python相对容易的语法产生LaTex文档片段,或者全文档。

import numpy as npfrom pylatex import Document, Section, Subsection, Table, Math, TikZ, Axis, \ Plot, Figure, Packagefrom pylatex.numpy import Matrixfrom pylatex.utils import italic, escape_latexdoc = Document()doc.packages.append(Package('geometry', options=['tmargin=1cm', 'lmargin=10cm']))with doc.create(Section('The simple stuff')): doc.append('Some regular text and some ' + italic('italic text. ')) doc.append(escape_latex('\nAlso some crazy characters: ${}')) with doc.create(Subsection('Math that is incorrect')) as math: doc.append(Math(data=['2*3', '=', 9])) with doc.create(Subsection('Table of something')): with doc.create(Table('rc|cl')) as table: table.add_hline() table.add_row((1, 2, 3, 4)) table.add_hline(1, 2) table.add_empty_row() table.add_row((4, 5, 6, 7))a = np.array([[100, 10, 20]]).TM = np.matrix([[2, 3, 4], [0, 0, 1], [0, 0, 2]])with doc.create(Section('The fancy stuff')): with doc.create(Subsection('Correct matrix equations')): doc.append(Math(data=[Matrix(M), Matrix(a), '=', Matrix(M*a)])) with doc.create(Subsection('Beautiful graphs')): with doc.create(TikZ()): plot_options = 'height=6cm, width=6cm, grid=major' with doc.create(Axis(options=plot_options)) as plot: plot.append(Plot(name='model', func='-x^5 - 242')) coordinates = [ (-4.77778, 2027.60977), (-3.55556, 347.84069), (-2.33333, 22.58953), (-1.11111, -493.50066), (0.11111, 46.66082), (1.33333, -205.56286), (2.55556, -341.40638), (3.77778, -1169.24780), (5.00000, -3269.56775), ] plot.append(Plot(name='estimate', coordinates=coordinates)) with doc.create(Subsection('Cute kitten pictures')): with doc.create(Figure(position='h!')) as kitten_pic: kitten_pic.add_image('docs/static/kitten.jpg', width='120px') kitten_pic.add_caption('Look it\'s on its back')doc.generate_pdf()

怎么在 LaTeX 中排版 Python 代码

Pygments 是一个 Python 模块,可用作排版代码。Pygments 也可以在 LaTeX 中调用。为此,你需要安装好 Python 环境,以及 Pygments 模块;此外,你还需要在编译 TeX 源码时,加入 --shell-escape,以便调用外部的 Python 程序。一个简单的示例如下。

\documentclass{article}

\usepackage{minted}

\begin{document}

\mint{python}|print('Hello world!')|

\begin{minted}{Python}

for x in range(101):

print('fizz'[x%3*4:] + 'buzz'[x%5*4:] or x)

\end{minted}

\end{document}

如何在LaTeX里插入漂亮的程序代码

要用宏包listings哦

使用:

首先前面:

\usepackage{listings}

\lstset{language=Matlab}%代码语言使用matlab

\lstset{breaklines}%自代码行换行排版

\lstset{extendedchars=false}%解决代码跨页章节标题页眉等汉字显示问题

需要贴代码:

\begin{lstlisting}

贴代码吧

\end{lstlisting}

别设置搜索百度latex+listings

希望能帮助