如何在HTML文件中显示LaTex代码

时间:2015-04-17 06:42:05

标签: html latex

我想在我的网页上显示这种类型的LaTex代码,但它没有显示。

我是否需要包含任何文件?

LaTex示例:

\documentclass[letterpaper]{article}
\usepackage{tikz}
\usetikzlibrary{arrows}
\usepackage{tkz-euclide}

\begin{document}
\begin{figure}[h]
\begin{tikzpicture}
   \tkzInit[xmax=5,ymax=5,xmin=-5,ymin=-5]
   \tkzGrid
   \tkzAxeXY
   \draw[ thick,latex-latex] (2,5) -- (-5,-2);
  \end{tikzpicture}

\end{figure}

\end{document}

1 个答案:

答案 0 :(得分:0)

基于对这个问题的回答和评论,我使用的是图像而不是Latex。

将乳胶转换为图像 - 使用名为TikzEdit的工具。这将显示乳胶代码形成的图纸,您可以轻松地将图像包含到您的网页中。