Org mode provides a variable called org-entities
that contain replacements for latex symbols like \alpha, \beta
etc.
Org also provides a minor called orgtbl-mode
which allows text that starts with a |
in arbitrary major modes to be interpreted as an org table and then I can do calculations and alignment. I have found this to be a very useful feature.
However orgtbl
doesn't seem to use org-entities
when I am using it while documenting some math heavy python code. For example I have a function with some detailed logic that I need to program and it would be helpful to get the same kind of feedback while writing my code's documentation that I get in a org buffer. Please let me know how I can achieve this effect. Thanks.
Below is a small table fragment that orgmode renders automatically that contains some "business logic" that I need to code:
| Name | Symm | Remarks |
| \equiv | \check | x = y |
| \neg | | x \cap y = \phi \land x \cup y = D |
| \perp | \check | (else) |