使用 Pandoc 注释/排除 Latex 2 HTML 命令

使用 Pandoc 注释/排除 Latex 2 HTML 命令

下面的 Latex 项目以 Runaway Argument 结尾,因为显然开始/结束解决方案需要放在不同的行上。

我正在尝试测试是否有办法引导某些命令以进行不同的输出。我有一个非常长的漂亮的 Latex 文档,其中包含所有精彩的软件包等。现在不幸的是,两个使 PDF 非常漂亮的软件包在 Pandoc-HTML 部分造成了很大的问题,然后编辑这些部分以编译 HTML 会很方便。例如 \ref,这是 Pandoc 无法正确处理的另一个项目。关于如何设计这样的内联注释功能有什么想法吗?

\documentclass[a4paper, 10pt, twoside]{memoir}
\usepackage{graphicx}
\usepackage{comment}
\includecomment{soln}
\title{ABC}
\author{ABC}
\begin{document}
\section{ABC}\label{se:ABC}
Let us go to section DEF 
\begin{soln}%I want this into one line begin ref end
\ref{se:DEF}
\end{soln}
\section{DEF}\label{se:DEF}
Let us go to section ABC 
\begin{soln} %I want this into one line begin ref end
\ref{se:ABC}
\end{soln}
\end{document}

相关内容