WolframResearch / WolframLanguageForJupyter

Wolfram Language kernel for Jupyter notebooks
MIT License
1.05k stars 126 forks source link

Copy/paste output #100

Closed HugoPfister closed 3 years ago

HugoPfister commented 3 years ago

Hi all,

Thank you for this cool piece of code, I was used to Mathematica but my Univ. licence expired so I adopted to this free solution.

One thing I was doing was to use the FortranForm to then copy paste to other pieces of code (in Python, Fortran, C etc...). Unfortunately, since the output is Latex-ed, the output is an image which cannot be copied. Is there a way to "switch" from latex-ed to non-latex-ed output?

Cheers, Hugo

cc-wr commented 3 years ago

@HugoPfister, are you looking for something like ToString[yourResult, FortranForm]?

HugoPfister commented 3 years ago

Exactly, thank you!