通过 xslt 将 tex 转换为 xml

通过 xslt 将 tex 转换为 xml

我知道 latex,但 xslt 是新手(现在正在学习),我需要通过 XSLT 将 tex 文件转换为 xml 文件(我的一个朋友建议,但我转换失败了)。请提供转换文件的建议或示例(以下是 MWE),

\documentclass{book}
\begin{document}
\chapter{Sample}

\section{Section Head}

Sample Para text

\subsection{Section Head 2}
Sample Para text

\section{Section Head}
\subsection{Section Head 2}

Sample Para text

\end{document}

答案1

我认为没有选项可以使用 xslt 将 latex 转换为 xml,并按照以下步骤获取 html 输出,然后使用 xslt 将 html 转换为 xml。

  1. 在你的序言中添加 tex4ht 样式文件,如下所示。\documentclass{book} \usepackage{tex4ht}

  2. 在命令提示符中编译你的 tex 文件

htlatex yourfile.tex 然后你将得到 yourfile.html

谢谢 Bala S

相关内容