• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

korsbo/Latexify.jl: Convert julia objects to LaTeX equations, arrays or other en ...

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称(OpenSource Name):

korsbo/Latexify.jl

开源软件地址(OpenSource Url):

https://github.com/korsbo/Latexify.jl

开源编程语言(OpenSource Language):

Julia 99.4%

开源软件介绍(OpenSource Introduction):

codecov Coverage Status

Latexify.jl

This is a package for generating LaTeX maths from julia objects.

This package utilises Julias homoiconicity to convert expressions to LaTeX-formatted strings. Latexify.jl supplies functionalities for converting a range of different Julia objects, including:

  • Expressions,
  • Strings,
  • Numbers (including rationals and complex),
  • Symbolic expressions from SymEngine.jl,
  • ParameterizedFunctions and ReactionNetworks from DifferentialEquations.jl,
  • Other types for which a user recipe has been defined

as well as arrays or dicts of supported types.

Recipes

To extend Latexify to work with your own type, you define a recipe using the @latexrecipe macro. See the documentation.

Examples

latexifying expressions

using Latexify
ex = :(x/(y+x)^2)
latexify(ex)

This generates a LaTeXString (from LaTeXStrings.jl) which, when printed looks like:

$\frac{x}{\left( y + x \right)^{2}}$

And when this LaTeXString is displayed in an environment which supports the tex/latex MIME type (Jupyter notebooks, Jupyterlab and Hydrogen for Atom) it will automatically render as:

fraction

latexifying other things

Latexify.jl is equipped to convert a whole range of types to latex formatted maths. This includes primitive types such as Symbols and Complex, but also of containers such as Arrays and Dicts.

using Latexify
print(latexify("x+y/(b-2)^2"))

outputs:

$x + \frac{y}{\left( b - 2 \right)^{2}}$
arr = ["x/y" 3//7 2+3im; 1 :P_x :(gamma(3))]
latexify(arr)

matrix

The GitHub website does not really support rendering of equations in the README file, so I therefore refer you to the documentation for more info/examples.

latexifying custom types

You can add support for a type via @latexrecipe

using Latexify
struct Ket{T}
    x::T
end
@latexrecipe function f(x::Ket)
    return Expr(:latexifymerge, "\\left|", x.x, "\\right>")
end
latexify(:($(Ket(:a)) + $(Ket(:b))))

ket

Use with DifferentialEquations.jl

The DifferentialEquations.jl suite has some nifty tools for generating differential equations. One of them is ParameterizedFunctions which allows you to type in an ODE in something which looks very much like just plain mathematics. The ability to latexify such ODEs is pretty much what lured me to create this package.

using ParameterizedFunctions
using Latexify

f = @ode_def positiveFeedback begin
    dx = v*y^n/(k^n+y^n) - x
    dy = x/(k_2+x) - y
end v n k k_2

latexify(f)

outputs:

positiveFeedback

DiffEqBiological.jl provides another cool domain-specific language which allows you to generate equations using a chemical arrow notation.

using DiffEqBiological
using Latexify

rn = @reaction_network demoNetwork begin
  (r_bind, r_unbind), A + B ↔ C
  Hill(C, v, k, n), 0 --> X
  d_x, X --> 0
end r_bind r_unbind v k n d_x

latexify(rn)

positiveFeedback

Or you can output the arrow notation directly to latex:

latexify(rn; env=:arrow)

positiveFeedback

There are more stuff that you can do, but for that I will refer you to the docs.

Convenience functions

  • copy_to_clipboard(::Bool), toggle automatic copying of the resulting LaTeX code to the clipboard (default is false).
  • auto_display(::Bool) toggles automatic display of your output, even if it is not the last command to have run.
  • set_default(; kwargs...), set your own default kwargs for your Julia session. This is not to be used within a package since the effect is global.
  • reset_default(; kwargs...), reset the changes you made with the above command.
  • get_default(; kwargs...), view the changes you have made to the default kwargs.

Installation

This package is registered in the Julia registry, so to install it you can just run

Pkg.add("Latexify")

Further information

For further information see the docs.

Contributing

I would be happy to receive feedback, suggestions, and help with improving this package. Please feel free to open an issue or a PR.

If you want to add support for types defined in another package, primarily create a PR in that package with a recipe. Latexify.jl is not intended to be a collection of recipes for different types. The exceptions are the few types which were included before the recipe system was finished. If the other package is hesitant to pull in Latexify as a dependency, you can either use Requires.jl, or create a separate glue package. If you do add support for another package, please help update the list below:

Supported types and packages

  • Many base types
  • LaTeXStrings.jl
  • DifferentialEquations.jl
  • DiffEqBiological.jl
  • ParametrizedFunctions.jl
  • DataFrames.jl
  • Symbolics.jl
  • Unitful.jl (via UnitfulLatexify.jl)

And more ...




鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap