Git Product home page Git Product logo

Comments (3)

ryxcommar avatar ryxcommar commented on April 28, 2024

Do you want to print the rendered latex or the raw unrendered latex?

Rendered LaTeX

Assuming you already decorated the functions:

from IPython.display import display

list_of_funcs = [p1, p2, p3, p4, p5, p6, p7, p8, p9, p10]

for f in list_of_funcs:
    display(f)

If not:

from IPython.display import display
from latexify import get_latex

list_of_funcs = [p1, p2, p3, p4, p5, p6, p7, p8, p9, p10]

for f in list_of_funcs:
    display(get_latex(f))

Unrendered LaTeX

Assuming functions were not decorated:

list_of_funcs = [p1, p2, p3, p4, p5, p6, p7, p8, p9, p10]

for f in list_of_funcs:
    print(get_latex(f))

The way the LaTeX renders in the first place is via hooking into Jupyter Notebook's pretty rendering functionality. Jupyter inspects objects at the bottom of a cell, sees that it has a _repr_latex_ method, and then says "ok, I'll render this as LaTeX." But that is merely just a string of the LaTeX. (For example, Pandas DataFrames work similarly in Jupyter: they have a _repr_html_ method). So here with the IPython.display solution, you're just directly invoking the Jupyter pretty rendering. You can do this arbitrarily with things like Pandas DataFrames too.

from latexify_py.

odashi avatar odashi commented on April 28, 2024

get_latex is the function that directly returns the LaTeX form without modifying the original function. You can also use str(your_fn) if you already wrapped your function by with_latex.

from latexify_py.

yangc22 avatar yangc22 commented on April 28, 2024

Thanks for the clarification!

from latexify_py.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.