数式をLaTeXのままにLaTeXをHTMLに変換するtex4ht で \VerbMath を使用して、方程式をそのままに LaTeX を HTML に変換する方法について説明します。参考までに、複数行の場合は、説明したように、aligned 環境を使用できることを付け加えておきます。ここ。
しかし、これらの解決策はラベルには機能しません。そこで私が望むのは、
\begin{equation}
1=1 \label{eq}
\end{equation}
Equation \ref{eq}
の中へ
\begin{equation}
1=1~~~(7)
\end{equation}
Equation (7)
ここで、(7) は方程式の正しい番号付けです。これは tex4ht で実行できますか、それともこれを行う他のスクリプトがありますか?
注: Mathjax はラベル/参照を解決できますが、私は Mathjax を使用したくありません。
答え1
編集:
MathJax を使用しない場合は、ラベルと相互参照を置き換え、方程式番号を挿入するためにテキストを後処理する必要があります。幸いなことに、make4ht
そのためにはビルド ファイルを使用できます。
サンプルファイル:
\documentclass{article}
% \usepackage[T1]{fontenc}
\usepackage{amsmath}
\newcommand\mjref[1]{\ref{#1}}
\begin{document}
\begin{equation}
1=1 \label{eq}
\end{equation}
\begin{align}
1 + a = 2\\
2 - a = 1
\end{align}
Equation \mjref{eq}
\end{document}
詳細は\mjref
元の回答に記載されており、これらの詳細は依然として適用されます。LaTeX 数式を変更せずに維持するために、修正されたパッケージを使用しますlatex-unchanged.sty
。
\RequirePackage{verbatim,etoolbox}
\AtBeginDocument{%
\def\AltMathOne#1${\HCode{\detokenize{\(#1\)}}$}
\Configure{$}{}{}{\expandafter\AltMathOne}
\def\AltlMath#1\){\HCode{\detokenize{\(#1\)}}\)}
\Configure{()}{\AltlMath}{}
\def\AltlDisplay#1\]{\HCode{\detokenize{\[#1\]}}\]}
\Configure{[]}{\AltlDisplay}{}
%
\newcommand\VerbMath[1]{%
\ifcsdef{#1}{%
\renewenvironment{#1}{%
\NoFonts%
\Configure{verbatim}{}{}
\HChar{92}begin\{#1\}%
\verbatim}{\endverbatim\HChar{92}end\{#1\}\EndNoFonts}%
}{}%
}
\VerbMath{align}
\VerbMath{equation}
\VerbMath{equation*}
}
若干変更された.cfg
ファイル:
\RequirePackage{latex-unchanged}
\Preamble{xhtml,html5}
\begin{document}
\renewcommand\mjref[1]{\NoFonts\HChar{92}eqref\{#1\}\EndNoFonts}
\EndPreamble
さて、ここからが興味深いところです。
ビルドファイルの名前youfilename.mk4
:
local filter = require "make4ht-filter"
local crossref = require "crossref"
local process = filter { crossref }
Make:match(".html$", process)
これは、すべての HTML ファイルをライブラリで処理しcrossref
、すべての面倒な作業を実行することを宣言します。次のコードを次のように保存しますcrossref.lua
。
-- counter values for particular counters will be saved here
local eqcounter = 0
-- pattern which will be inserted as equation number
local counter_pattern = "~~~(%i)"
-- list of environments to insert counters
local processed = {"equation", "align"}
local labels = {}
-- this function takes pattern for ending text (it is end environment or
-- \\ as line breaks in aligns) and insert counter numbers before the matched text
-- it also removes \labels and store them for future use
local function insert_counter(text, pattern, counter)
local counter_pat = string.format(counter_pattern, counter)
-- remove labels
local removed_labels = text:gsub('%s*\\label{(.-)}', function(name)
-- save counter under label name
print("save label", name, counter)
labels[name] = counter
return ''
end)
local inserted = removed_labels:gsub(pattern, counter_pat .. '%0')
print("inserted", inserted)
return inserted
end
local function handle_counter(env, name)
eqcounter = eqcounter + 1
-- we need to support align environments, which will have multiple counters
if env:match('\\\\') then
local parts = {}
local ending = env:gsub('(.-)\\\\', function(part)
table.insert(parts, part)
return ''
end)
local results = {}
-- we first process lines ending with \\, the last line without this will be processd
-- with usual code for end environment
for _, part in ipairs(parts) do
print("part", part)
table.insert(results, insert_counter(part, '(%s*)$',eqcounter))
eqcounter = eqcounter + 1
end
env = table.concat(results, '\\\\') .. '\\\\' ..ending
end
-- now insert counter for the whole environment
return insert_counter(env, '(%s*\\end{'.. name ..'}', eqcounter)
end
local function handle_refs(text)
-- modify the pattern to match the referencing macro you use
return text:gsub('\\eqref{(.-)}', function(label)
local counter = labels[label]
if not counter then return '??' end
return string.format("(%i)", counter)
end)
end
return function(s)
-- process math environments defined in processed table
for _, name in ipairs(processed) do
-- match the whole environments and replace them with modified version
s = s:gsub('(\\begin{' ..name .. '}.-\\end{'.. name ..'})', function(environment)
return handle_counter(environment, name)
end)
end
-- handle ref commands in text
s = handle_refs(s)
return s
end
詳細はソースコード内のコメントに記載されています。
以下を使用してコンパイルします:
make4ht -uc myconfig4.cfg -e youfilename.mk4 sample.tex
結果は次のとおりです。
<!--l. 7--><p class="noindent" >\begin{equation}
1=1~~~(1)
\end{equation}
</p><!--l. 11--><p class="noindent" >\begin{align}
1+a=2~~~(2)\\
2-a=1~~~(3)
\end{align}
</p><!--l. 16--><p class="noindent" >Equation (1)</p>
元の回答:
MathJax はラベルと相互参照をサポートしているので、 だけでなく\label
も処理できるようにするのがより現実的かもしれません。私は、数式環境を参照するためのカスタム マクロを定義します。これは、ドキュメントが でコンパイルされるときに\ref
を挿入するように再定義できます。セクションや図を参照する機能を失いたくないと思うので、それ自体を再定義することはないでしょう。\ref{labelname}
tex4ht
\ref
このようなもの:
\documentclass{article}
\usepackage{amsmath}
\newcommand\mjref[1]{\ref{#1}}
\begin{document}
\begin{equation}
1=1 \label{eq}
\end{equation}
Equation \mjref{eq}
\end{document}
LaTeXマクロを使用したMathJaxの現在のバージョンのコードは以下にあります。helpers4ht バンドルCTANには載っていないので、数学jax-latex4ht.styパッケージ。
設定ファイルは、少し簡略化できます。
\RequirePackage{mathjax-latex-4ht}
\Preamble{xhtml}
\begin{document}
\renewcommand\mjref[1]{\NoFonts\HChar{92}eqref\{#1\}\EndNoFonts}
\EndPreamble
唯一興味深いのは\mjref
、フォントの HTML タグの挿入を一時的に無効にして、ASCII コードで文字\HChar{92}
を挿入するコマンドの再定義です。\
結果の HTML コードは次のようになります。
<!--l. 7--><p class="noindent" >\begin{equation}
1=1\label{eq}
\end{equation}
</p><!--l. 11--><p class="noindent" >Equation \eqref{eq}</p>
MathJax では次のようにレンダリングされます: