General ⇒ Previewing LaTeX without LaTeX?
Previewing LaTeX without LaTeX?
I'm developing an application which performs numerical analysis, and the user has the possibility of automatically generating a memo with a description of the analysis just performed, containing math, simple figures, tables,...
My preference would be that my app generates such memos through LaTeX, because it has everything I could dream of, but however I find it unreasonable to force users of my software to also install LaTeX.
Some time ago I asked in this forum for possible ways of embedding LaTeX in the installation directory of my application, but I still find it's overkill.
Would you suggest another alternative? Are there any LaTeX alternatives which would offer the features my app needs for generating these memos, without installing LaTeX in the users computers?
Thanks!!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Previewing LaTeX without LaTeX?
Code: Select all
\documentclass[border=5pt]{standalone}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\begin{document}
$\displaystyle
x^2 \frac{d^2 y}{dx^2} + x \frac{dy}{dx} + (x^2 - \alpha^2)y = 0 $
\end{document}