모든 \halign 라인에서 사진을 얻는 방법은 무엇입니까?

모든 \halign 라인에서 사진을 얻는 방법은 무엇입니까?

별도의 이미지를 얻으려고합니다.eqnarray윤곽. 문제는 시작/종료 이미지를 제대로 삽입할 수 없다는 것입니다.\specials .tex4ht. 최소한의 예(일반 텍스트)를 고려해 보겠습니다.

\def\startpic{\special{t4ht++math.png}}
\def\stoppic{\special{t4ht+}}

\newif\ifnotfirstcr
\everycr{\ifnotfirstcr\noalign{\stoppic}\fi}

$$\halign{%
  \startpic
  a#&b#&c#\cr
  \global\notfirstcrtrue 
  1&2\cr 1\cr
}$$
\bye

클로징 이미지를 추가합니다tex4ht태그 ( \stoppic)를 \everycr(첫 번째가 아닌 경우)\cr ). 그리고 시작 이미지tex4ht\startpic시작 부분에 태그 ( )\halign 라인 템플릿.

TeX를 컴파일하고 생성된 .dvi 파일에서 tex4ht를 실행한 후 경고가 표시됩니다.

--- warning --- Improper groups in \special{t4ht+}... idv[1]
--- warning --- Improper groups in \special{t4ht+}... idv[1]
--- warning --- Improper groups in \special{t4ht+}... idv[1]
--- warning --- Improper groups in \special{t4ht+}... idv[2]
--- warning --- Improper groups in \special{t4ht+}... idv[2]

문제는 동일한 DVI 파일 그룹 수준에 있지 않다는 special1 14 't4ht++math.png'것 입니다.special1 15 't4ht+'

[
d4 -41497562
d3 1572864
                <------------------ should be here: special1 14 't4ht++math.png'
[
[
special1 14 't4ht++math.png'                    <------- instead of here
fd1 0 11374260171 655360 655360 0 5 '' 'cmr10'
fn0
(a1)
]
[
r3 655362
(b2)
]
]
special1 5 't4ht+'
d3 786432
                <------------------ should be here: special1 14 't4ht++math.png'
[
[
special1 14 't4ht++math.png'                    <------- instead of here
(a1)
]
]
special1 5 't4ht+'
]

\stoppic을 잘못된 위치에 추가한 것일 수도 있지만 \halign라인 템플릿을 다음과 같이 작성하려고 시도했지만 \startpic a#&b#&c# \stoppic\cr동일한 경고가 표시됩니다. 어쩌면 누구든지 DVI에 특수 기능을 t4ht++적절 하게 추가하는 방법을 조언할 수 있습니까 ?t4ht++\halign

관련 정보