xdvi -copy でフォントが見つからない

xdvi -copy でフォントが見つからない

私はtexファイル「file.tex」を持っています。そこには次の行があります。

    \raisebox{-1pt}{\textcircled{\raisebox{-.9pt} {1}}}

これは、円の中に数字の 1 を表示します。latex の後、コマンドはxdvi -copy file.dvi数字のない空の円を表示します。ただし、xdvi file.dvi数字の 1 は正しく表示されます。問題は、-copy数式、ハイパーリンク、図を多用した 900 ページを超える file.tex 出力のため、このオプションが必要なことです。-copy オプションがないと、ロードに時間がかかりすぎます。 の出力に他の問題はありませんxdvi -copy file.dvi

私は Debian を使用しており、xdvi は texlive-2019 の一部です。最新バージョンの texlive にアップグレードすることもできますが、より迅速な解決策が欲しいです。

答え1

のマニュアルページよりxdvi:

-copy  (.copy)  Always use the copy operation when writing characters to the dis-
       play.  This option may be necessary for correct operation on a color  dis-
       play,  but  overstrike  characters  will be incorrect.  If greyscale anti-
       aliasing is in use, the -copy operation will disable  the  use  of  color-
       planes and make overstrikes come out incorrectly.  See also -thorough.

重ね打ちとは、文字を上下に重ねて印刷することを指し、 の場合に該当します\textcircled。したがって、これは文書化されています。 は使用しないでください-copy

関連情報