Giter Club home page Giter Club logo

Comments (4)

odashi avatar odashi commented on July 28, 2024

@moringspeaker
Hi, thanks for asking your question!

First of all, the main branch is a bit different from the released version (v0.1.1). I'd like to explain how it works based on the main branch.

The core functionlity of this library is latexify.frontend.get_latex(). This function works as a "compiler" from Python functions to LaTeX with following steps:

  1. Obtains the source code of the function:
    try:
    source = inspect.getsource(fn)
    except Exception:
    # Maybe running on console.
    source = dill.source.getsource(fn)
    # Remove extra indentation so that ast.parse runs correctly.
    source = textwrap.dedent(source)
  2. Obtains the parse tree of the source code:
    tree = ast.parse(source)
  3. Modifies the parse tree according to the config:
    # Applies AST transformations.
    if identifiers is not None:
    tree = transformers.IdentifierReplacer(identifiers).visit(tree)
    if reduce_assignments:
    tree = transformers.AssignmentReducer().visit(tree)
  4. Generates LaTeX code corresponding to the modified parse tree:
    return codegen.FunctionCodegen(
    use_math_symbols=use_math_symbols,
    use_raw_function_name=use_raw_function_name,
    use_signature=use_signature,
    ).visit(tree)

lateixfy.function (formarly latexify.with_latex) is a function that converts the given function to another callable object that works similarly to the original function, but associated with the generated LaTeX code. This object can communicate with Jupyter to show the associated LaTeX expression (MathJax).

As for "decorator", the Python decorator is a syntax sugar to call the function with decorated stuff and replace the stuff with the return value. So the following two code are basically the same:

@latexify.function
def f(x):
    ...
def f(x):
    ...
f = latexify.function(f)

from latexify_py.

moringspeaker avatar moringspeaker commented on July 28, 2024

Thanks for your patient explaination! I spent some time to read this awesome project's source code and I wonder if you guys plan to support some more complicated formats like a matrix or something? It's always annoyed for me to write my own code to transfer a Numpy matrix into Latex format.

from latexify_py.

odashi avatar odashi commented on July 28, 2024

support some more complicated formats like a matrix or something

Yeah sometimes it is requested, and particularly for arrays, I am still thinking of how/what range of expressions should be supported by this library (e.g., 2x2 arrays are small enough to compile, but large arrays and/or arrays with more than 2 dimensions are basically not suitable for LaTeX).

It would be nice to have a specific issue for arrays. Let me create it and continue discussion.

from latexify_py.

odashi avatar odashi commented on July 28, 2024

Delegated to #78.

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.