handcalcs icon indicating copy to clipboard operation
handcalcs copied to clipboard

Python library for converting Python calculations into rendered latex.

Results 94 handcalcs issues
Sort by recently updated
recently updated
newest added

For numerical computing, handcalcs is a great way to render mathematical functions so that you can verify you got everything correct and follow through the logic. Such functions need to...

Input: ``` %%render a = 1 # ``` Error: ``` ParseException: Expected == | = | + | - | * | // | / | % | , |...

Although substitutions are performed in scientific notation as described in https://github.com/connorferster/handcalcs/issues/12, the result is still displayed to no significant figures: ``` %%tex b = 1e-4 ``` $$ \begin{aligned} b &=...

This works fine ``` %%render a = b = 1e1 ``` $$\\begin{aligned} a &= b = 1 \\times 10 ^ {1} &= 10.000 &= 1 \\times 10 ^ {1} &=...

Please add the (Sigma) symbol ==> represeting the (sum in python functions)

How can we render handcalcs output in a web browser using django as backend

please add ∞ to be rendered in handcalcs.

Hi, I installed handcalcs in jupiter notobook but when I use %%render, I obtain only results ans no symbolic. Can you help me ![image](https://user-images.githubusercontent.com/123103198/213505398-9d1443c8-a347-485e-8ef4-e6e52d3e619a.png)

When I specify precision on a cell, it doesn't affect the output at all. Am I doing something wrong? or is this a bug? ![image](https://user-images.githubusercontent.com/109253006/218631097-7121738a-494c-41e8-8dbd-e51cdea2dfee.png)

I'd like to suggest a feature: I hope you add the option to use (x) times as multiplication symbol, instead of using (.) dot symbol. (user choice) Ir would be...