Acrobat Reader DC にアップデートすると、
winshellのPDFviewで
cannot start acrobatreader or open the document が出て pdf 表示できません。
http://note.chiebukuro.yahoo.co.jp/detail/n321904
が参考になると思うのですが、
値のデータは何と入力すればよいのでしょうか。
ご質問はこちらへ
質問用フォーラムです。ご質問の前に質問のしかたをご覧ください。
MSゴシック半角数字で不可解な現象
- みなも の投稿
ちょっと不可解な現象に出くわしまして,
原因がわからないまま力尽くで解決したのですが,
「これって周知の事実ですか」
「もっと美しい解決法はありますか」
をお尋ねしたく,投稿しました。
(Q&A 内検索は掛けたのですが,そのものずばりのものは
見つけられませんでした。)
・発端
複数の人間と冊子を作るが,自分以外は Word ユーザー。
「章番号の数字を『MSゴシック半角』にしてくれ」と強要される。
しかも期限ギリギリになって。
・解決法(汚 --- その1)
otf パッケージで \UTF{0031} などとすると,半角数字が和文文字などと
同じ扱いになることに気付き,これを \textgt でゴシックにすることにする。
tfm とか半角数字に対応してないような気がするけど,(時間がなかったので)
そこは力業で何とかする方針で(<== これがアカン気がする)。
・不可解な現象
半角ゴシック数字のあとに別の文字が来ると,数字と次の文字の間に
妙に空白があくことに気付く。
\fboxsep=0pt としたあと \fbox{} で囲むと,フォントサイズとしては
全角幅を確保されている様子。(グリフは確保サイズの左寄せ。)
半角ゴシック数字が連続するときは,数字間の空白はなくなるが(リガチャ?)
数字列が終われば一気に大きな空白が空く(多分文字数×0.5zw)。
・解決法(汚 --- その2)
とりあえず幅 0.5zw の \hbox に押し込めて,
数字が連続するときのために
幅 1 pt で背景色と同じ色の線を引いて \hskip で 1pt 戻る
or 背景色の \colorbox に押し込めることで解決。
(幅 0 の線とか \phantom とか \hbox で囲う等ではだめでした。
リガチャの類ならこれでリセットされると思うのですが。。。)
以下がその実験ソースです。
\documentclass{jarticle}
\usepackage[dvipdfmx]{color}
\usepackage{otf}
\begin{document}
\fboxsep=0pt %実験用に
% 素で使ってみる
\textgt{\UTF{0030}あ\UTF{0031}\UTF{0032}\UTF{0033}あいう}
% \fbox{} で囲ってみる
\textgt{\fbox{\UTF{0030}}あ\fbox{\UTF{0031}}%
\fbox{\UTF{0032}}\fbox{\UTF{0033}}あいう}
% 半角幅の \hbox{} に押し込めてみる
\def\HtoH#1{\hbox to 0.5zw{\UTF{003#1}\hss}}
\textgt{\HtoH{0}あ\HtoH{1}\HtoH{2}\HtoH{3}あいう}
% さらに細工
\def\HtoH#1{\hbox to 0.5zw{\UTF{003#1}\hss}%
\textcolor{white}{\vrule width1pt}\hskip-1pt}
\textgt{\HtoH{0}あ\HtoH{1}\HtoH{2}\HtoH{3}あいう}
% 別の細工
\def\HtoH#1{{\fboxsep=0pt
\colorbox{white}{\hbox to 0.5zw{\UTF{003#1}\hss}}}}
\textgt{\HtoH{0}あ\HtoH{1}\HtoH{2}\HtoH{3}あいう}
\end{document}
マップファイル(必要最小限)はこんな感じ(これもアカン気がするけど)
otf-ujgr-h UniJIS-UTF16-H :0:msgothic.ttc
hgothr-h H :0:msgothic.ttc
実験環境は Windows7 で今月に入ってから更新した w32tex を使用。
よろしくお願いします。
原因がわからないまま力尽くで解決したのですが,
「これって周知の事実ですか」
「もっと美しい解決法はありますか」
をお尋ねしたく,投稿しました。
(Q&A 内検索は掛けたのですが,そのものずばりのものは
見つけられませんでした。)
・発端
複数の人間と冊子を作るが,自分以外は Word ユーザー。
「章番号の数字を『MSゴシック半角』にしてくれ」と強要される。
しかも期限ギリギリになって。
・解決法(汚 --- その1)
otf パッケージで \UTF{0031} などとすると,半角数字が和文文字などと
同じ扱いになることに気付き,これを \textgt でゴシックにすることにする。
tfm とか半角数字に対応してないような気がするけど,(時間がなかったので)
そこは力業で何とかする方針で(<== これがアカン気がする)。
・不可解な現象
半角ゴシック数字のあとに別の文字が来ると,数字と次の文字の間に
妙に空白があくことに気付く。
\fboxsep=0pt としたあと \fbox{} で囲むと,フォントサイズとしては
全角幅を確保されている様子。(グリフは確保サイズの左寄せ。)
半角ゴシック数字が連続するときは,数字間の空白はなくなるが(リガチャ?)
数字列が終われば一気に大きな空白が空く(多分文字数×0.5zw)。
・解決法(汚 --- その2)
とりあえず幅 0.5zw の \hbox に押し込めて,
数字が連続するときのために
幅 1 pt で背景色と同じ色の線を引いて \hskip で 1pt 戻る
or 背景色の \colorbox に押し込めることで解決。
(幅 0 の線とか \phantom とか \hbox で囲う等ではだめでした。
リガチャの類ならこれでリセットされると思うのですが。。。)
以下がその実験ソースです。
\documentclass{jarticle}
\usepackage[dvipdfmx]{color}
\usepackage{otf}
\begin{document}
\fboxsep=0pt %実験用に
% 素で使ってみる
\textgt{\UTF{0030}あ\UTF{0031}\UTF{0032}\UTF{0033}あいう}
% \fbox{} で囲ってみる
\textgt{\fbox{\UTF{0030}}あ\fbox{\UTF{0031}}%
\fbox{\UTF{0032}}\fbox{\UTF{0033}}あいう}
% 半角幅の \hbox{} に押し込めてみる
\def\HtoH#1{\hbox to 0.5zw{\UTF{003#1}\hss}}
\textgt{\HtoH{0}あ\HtoH{1}\HtoH{2}\HtoH{3}あいう}
% さらに細工
\def\HtoH#1{\hbox to 0.5zw{\UTF{003#1}\hss}%
\textcolor{white}{\vrule width1pt}\hskip-1pt}
\textgt{\HtoH{0}あ\HtoH{1}\HtoH{2}\HtoH{3}あいう}
% 別の細工
\def\HtoH#1{{\fboxsep=0pt
\colorbox{white}{\hbox to 0.5zw{\UTF{003#1}\hss}}}}
\textgt{\HtoH{0}あ\HtoH{1}\HtoH{2}\HtoH{3}あいう}
\end{document}
マップファイル(必要最小限)はこんな感じ(これもアカン気がするけど)
otf-ujgr-h UniJIS-UTF16-H :0:msgothic.ttc
hgothr-h H :0:msgothic.ttc
実験環境は Windows7 で今月に入ってから更新した w32tex を使用。
よろしくお願いします。
このトピックを読む
(現在の返信数: 4)
脚注領域の拡大
- Fukuda Yoichi の投稿
emath.sty のエラー
- Schumann Clara の投稿
助けてください。
Mac上の UpTeX.app を TeXshop で使っています。
emath でグラフを書こうと、emath.sty その他 emath 関係のスタイルファイルを読み込ませたのですが、
/Applications/TeX/UpTeX.app/Contents/Resources/TEX/texlive/2015basic/texmf-dist
/tex/latex/misc/emath/emath.sty:2527: Too many }'s.
l.2527 }
というエラーが出ます。
emath 関係の sty ファイルは、UTF-8 に変換してあります。
このトピックを読む
(現在の返信数: 18)
LuaLaTeXで和文フォントが欠落する
- ヤバルゴ mdl.2 の投稿
LuaLaTeXにおいて,プリアンブルに
\usepackage[hiragino-pron]{luatexja-preset}
と設定した際,和文フォントが出力されません.(数式と等幅欧文のフォントは出力されます.)
作業環境はWindows8.1, W32TeX, LuaLaTeX, TeXworksです.W32TeXは本日インストールしました.
使用するヒラギノフォントは
C:\w32tex\share\texmf-fonts\fonts\opentype\hiragino 以下に
HiraKakuProN-W3.otf, etc...
のように配置してあります.(今は試験的に運用しているため一時的に実体を配置しています.)Windows自体にはインストールしていません.
以下がコンパイルに利用したサンプルです.
------------------
\documentclass{ltjsarticle}
\usepackage{luatexja-fontspec}
\usepackage[hiragino-pron]{luatexja-preset}
\setmonofont{inconsolatazi4}
\begin{document}
\section{はじめてのLua\TeX-ja}
ちゃんと日本語が出るかな?
\subsection{出たかな?}
長い文章を入力するとちゃんと右端のところで折り返されるかな?
大丈夫そうな気がするけど.ちょっと不安だけど何事も挑戦だよね.
Math mode: $y=ax^2+bx+c$.
Mono-font is \texttt{Inconsolata}.
\end{document}
------------------
これをlualatexで処理すると,以下のようなエラーが発生します.(長いため一部抜粋,ログファイル全体は添付します)
------------------
luaotfload | load : Lookup/name: "HiraMinProN-W3" -> "hiraminpron-w3.otf"
LuaTeX warning: lua-loaded font [32] ("HiraMinProN-W3:mode=node;script=latn;lang
uage=DFLT;-kern;jfm=ujisv;+vert;+vrt2") has no characters!
LaTeX Font Info: Font shape `JY3/HiraMinProN-W3(0)/m/n' will be
(Font) scaled to size 9.24866pt on input line 490.
luaotfload | load : Lookup/name: "HiraMinProN-W3" -> "hiraminpron-w3.otf"
LuaTeX warning: lua-loaded font [33] ("HiraMinProN-W3:mode=node;script=latn;lang
uage=DFLT;-kern;jfm=ujis") has no characters!
luaotfload | load : Lookup/name: "HiraKakuProN-W6" -> "hirakakupron-w6.otf"
------------------
この結果,前述のように和文フォントが欠落したPDF(添付あり)が出力されます.
この問題への対処をご教授ください.よろしくお願いします.
\usepackage[hiragino-pron]{luatexja-preset}
と設定した際,和文フォントが出力されません.(数式と等幅欧文のフォントは出力されます.)
作業環境はWindows8.1, W32TeX, LuaLaTeX, TeXworksです.W32TeXは本日インストールしました.
使用するヒラギノフォントは
C:\w32tex\share\texmf-fonts\fonts\opentype\hiragino 以下に
HiraKakuProN-W3.otf, etc...
のように配置してあります.(今は試験的に運用しているため一時的に実体を配置しています.)Windows自体にはインストールしていません.
以下がコンパイルに利用したサンプルです.
------------------
\documentclass{ltjsarticle}
\usepackage{luatexja-fontspec}
\usepackage[hiragino-pron]{luatexja-preset}
\setmonofont{inconsolatazi4}
\begin{document}
\section{はじめてのLua\TeX-ja}
ちゃんと日本語が出るかな?
\subsection{出たかな?}
長い文章を入力するとちゃんと右端のところで折り返されるかな?
大丈夫そうな気がするけど.ちょっと不安だけど何事も挑戦だよね.
Math mode: $y=ax^2+bx+c$.
Mono-font is \texttt{Inconsolata}.
\end{document}
------------------
これをlualatexで処理すると,以下のようなエラーが発生します.(長いため一部抜粋,ログファイル全体は添付します)
------------------
luaotfload | load : Lookup/name: "HiraMinProN-W3" -> "hiraminpron-w3.otf"
LuaTeX warning: lua-loaded font [32] ("HiraMinProN-W3:mode=node;script=latn;lang
uage=DFLT;-kern;jfm=ujisv;+vert;+vrt2") has no characters!
LaTeX Font Info: Font shape `JY3/HiraMinProN-W3(0)/m/n' will be
(Font) scaled to size 9.24866pt on input line 490.
luaotfload | load : Lookup/name: "HiraMinProN-W3" -> "hiraminpron-w3.otf"
LuaTeX warning: lua-loaded font [33] ("HiraMinProN-W3:mode=node;script=latn;lang
uage=DFLT;-kern;jfm=ujis") has no characters!
luaotfload | load : Lookup/name: "HiraKakuProN-W6" -> "hirakakupron-w6.otf"
------------------
この結果,前述のように和文フォントが欠落したPDF(添付あり)が出力されます.
この問題への対処をご教授ください.よろしくお願いします.
このトピックを読む
(現在の返信数: 13)
TeXworks (win32) で LuaTeX が Process crashed?
- aminophen の投稿
W32TeX でインストールした LuaTeX beta-0.95.0 を TeXworks から呼び出して走らせると、
LuaTeX のプロセスがクラッシュするという現象に見舞われています。
TeXworks 0.6.0 (travis-ci) [r.e6d213b, 2016/04/03 18:34]
Win7 64bit (Professional)
です。同様の現象が再現する方はいらっしゃるでしょうか?
以下、詳細です:
A\bye
とだけ書いた test.tex を TeXworks から
luatex.exe
$synctexoption
$fullname
で呼び出すと、ログの表示が
This is LuaTeX, Version beta-0.95.0 (TeX Live 2016/W32TeX)
restricted system commands enabled.
(./test.tex
Process crashed
となります。これだと何も情報がないので、test.tex を
\tracingall A\bye
にしてみると
This is LuaTeX, Version beta-0.95.0 (TeX Live 2016/W32TeX)
restricted system commands enabled.
(./test.tex
{vertical mode: \tracingstats}
{\tracingpages}
{\tracingoutput}
{\tracinglostchars}
{\tracingmacros}
{\tracingparagraphs}
{\tracingrestores}
{\showboxbreadth}
{\showboxdepth}
{\errorstopmode}
{\tracinggroups}
{\tracingifs}
{\tracingscantokens}
{\tracingnesting}
{\tracingassigns}
{the letter A}
{horizontal mode: the letter A}
\bye ->\par \vfill \supereject \end
{\par}
@firstpass
[]\tenrm A
@\par via @0 b=0 p=-10000 d=100
@@1: line 1.2- t=100 -> @0
%% goal height=643.20255, max depth=4.0
{vertical mode: \vfill}
\supereject ->\par \penalty -\@MM
{\par}
% t=10.0 g=643.20255 b=10000 p=0 c=100000#
{\penalty}
% t=10.0 plus 1.0fill g=643.20255 b=0 p=-20000 c=-20000#
{globally changing \outputpenalty=0}
{into \outputpenalty=-20000}
\output->{\plainoutput }
{entering output group (level 1) at line 1}
\plainoutput ->\shipout \vbox {\makeheadline \pagebody \makefootline }\advancep
ageno \ifnum \outputpenalty >-\@MM \else \dosupereject \fi
{internal vertical mode: \shipout}
{entering vbox group (level 2) at line 1}
{reassigning \bodydir TLT}
{reassigning \pardir TLT}
{reassigning \textdir TLT}
\makeheadline ->\vbox to\z@ {\vskip -22.5\p@ \line {\vbox to8.5\p@ {}\the \head
line }\vss }\nointerlineskip
{\vbox}
{entering vbox group (level 3) at line 1}
{reassigning \bodydir TLT}
{reassigning \pardir TLT}
{reassigning \textdir TLT}
{\vskip}
\line ->\hbox to\hsize
{\hbox}
{entering adjusted hbox group (level 4) at line 1}
{reassigning \bodydir TLT}
{reassigning \pardir TLT}
{reassigning \textdir TLT}
{restricted horizontal mode: \vbox}
{entering vbox group (level 5) at line 1}
{reassigning \bodydir TLT}
{reassigning \pardir TLT}
{reassigning \textdir TLT}
{internal vertical mode: end-group character }}
{leaving vbox group (level 5) entered at line 1}
{restricted horizontal mode: \the}
{\hfil}
{end-group character }}
{leaving adjusted hbox group (level 4) entered at line 1}
{internal vertical mode: \vss}
{end-group character }}
{leaving vbox group (level 3) entered at line 1}
\nointerlineskip ->\prevdepth -1000\p@
{\prevdepth}
\pagebody ->\vbox to\vsize {\boxmaxdepth \maxdepth \pagecontents }
{\vbox}
{entering vbox group (level 3) at line 1}
{reassigning \bodydir TLT}
{reassigning \pardir TLT}
{reassigning \textdir TLT}
{\boxmaxdepth}
{changing \boxmaxdepth=16383.99998pt}
{into \boxmaxdepth=4.0pt}
\pagecontents ->\ifvoid \topins \else \unvbox \topins \fi \dimen@ =\dp \@cclv \
unvbox \@cclv \ifvoid \footins \else \vskip \skip \footins \footnoterule \unvbo
x \footins \fi \ifr@ggedbottom \kern -\dimen@ \vfil \fi
{\ifvoid: (level 1) entered on line 1}
{true}
{\else: \ifvoid (level 1) entered on line 1}
{\fi: \ifvoid (level 1) entered on line 1}
{\dimen0}
{reassigning \dimen0=0.0pt}
{\unvbox}
{\ifvoid: (level 1) entered on line 1}
{true}
{\else: \ifvoid (level 1) entered on line 1}
{\fi: \ifvoid (level 1) entered on line 1}
{\iffalse: (level 1) entered on line 1}
{false}
{\fi: \iffalse (level 1) entered on line 1}
{end-group character }}
{restoring \boxmaxdepth=16383.99998pt}
{leaving vbox group (level 3) entered at line 1}
\makefootline ->\baselineskip 24\p@ \lineskiplimit \z@ \line {\the \footline }
{\baselineskip}
{changing \baselineskip=12.0pt}
{into \baselineskip=24.0pt}
{\lineskiplimit}
{reassigning \lineskiplimit=0.0pt}
\line ->\hbox to\hsize
{\hbox}
{entering adjusted hbox group (level 3) at line 1}
{reassigning \bodydir TLT}
{reassigning \pardir TLT}
{reassigning \textdir TLT}
{restricted horizontal mode: \the}
{\hss}
{select font cmr10}
{reassigning current font=\tenrm}
\folio ->\ifnum \pageno <\z@ \romannumeral -\pageno \else \number \pageno \fi
{\ifnum: (level 1) entered on line 1}
{false}
{\else: \ifnum (level 1) entered on line 1}
{\number}
{the character 1}
{\fi: \ifnum (level 1) entered on line 1}
{\hss}
{end-group character }}
{leaving adjusted hbox group (level 3) entered at line 1}
{internal vertical mode: end-group character }}
{restoring \baselineskip=12.0pt}
{leaving vbox group (level 2) entered at line 1}
Completed box being shipped out [1]
Process crashed
というところで落ちます。
・コマンドプロンプトからは正常に test.pdf が出る
・pdftex や xetex は正常
・luatex-w32.tar.xz の beta-0.80.0 は正常、luatex-dev-w32.tar.xz の beta-0.95.0 だけ落ちる
ので不思議です。
LuaTeX のプロセスがクラッシュするという現象に見舞われています。
TeXworks 0.6.0 (travis-ci) [r.e6d213b, 2016/04/03 18:34]
Win7 64bit (Professional)
です。同様の現象が再現する方はいらっしゃるでしょうか?
以下、詳細です:
A\bye
とだけ書いた test.tex を TeXworks から
luatex.exe
$synctexoption
$fullname
で呼び出すと、ログの表示が
This is LuaTeX, Version beta-0.95.0 (TeX Live 2016/W32TeX)
restricted system commands enabled.
(./test.tex
Process crashed
となります。これだと何も情報がないので、test.tex を
\tracingall A\bye
にしてみると
This is LuaTeX, Version beta-0.95.0 (TeX Live 2016/W32TeX)
restricted system commands enabled.
(./test.tex
{vertical mode: \tracingstats}
{\tracingpages}
{\tracingoutput}
{\tracinglostchars}
{\tracingmacros}
{\tracingparagraphs}
{\tracingrestores}
{\showboxbreadth}
{\showboxdepth}
{\errorstopmode}
{\tracinggroups}
{\tracingifs}
{\tracingscantokens}
{\tracingnesting}
{\tracingassigns}
{the letter A}
{horizontal mode: the letter A}
\bye ->\par \vfill \supereject \end
{\par}
@firstpass
[]\tenrm A
@\par via @0 b=0 p=-10000 d=100
@@1: line 1.2- t=100 -> @0
%% goal height=643.20255, max depth=4.0
{vertical mode: \vfill}
\supereject ->\par \penalty -\@MM
{\par}
% t=10.0 g=643.20255 b=10000 p=0 c=100000#
{\penalty}
% t=10.0 plus 1.0fill g=643.20255 b=0 p=-20000 c=-20000#
{globally changing \outputpenalty=0}
{into \outputpenalty=-20000}
\output->{\plainoutput }
{entering output group (level 1) at line 1}
\plainoutput ->\shipout \vbox {\makeheadline \pagebody \makefootline }\advancep
ageno \ifnum \outputpenalty >-\@MM \else \dosupereject \fi
{internal vertical mode: \shipout}
{entering vbox group (level 2) at line 1}
{reassigning \bodydir TLT}
{reassigning \pardir TLT}
{reassigning \textdir TLT}
\makeheadline ->\vbox to\z@ {\vskip -22.5\p@ \line {\vbox to8.5\p@ {}\the \head
line }\vss }\nointerlineskip
{\vbox}
{entering vbox group (level 3) at line 1}
{reassigning \bodydir TLT}
{reassigning \pardir TLT}
{reassigning \textdir TLT}
{\vskip}
\line ->\hbox to\hsize
{\hbox}
{entering adjusted hbox group (level 4) at line 1}
{reassigning \bodydir TLT}
{reassigning \pardir TLT}
{reassigning \textdir TLT}
{restricted horizontal mode: \vbox}
{entering vbox group (level 5) at line 1}
{reassigning \bodydir TLT}
{reassigning \pardir TLT}
{reassigning \textdir TLT}
{internal vertical mode: end-group character }}
{leaving vbox group (level 5) entered at line 1}
{restricted horizontal mode: \the}
{\hfil}
{end-group character }}
{leaving adjusted hbox group (level 4) entered at line 1}
{internal vertical mode: \vss}
{end-group character }}
{leaving vbox group (level 3) entered at line 1}
\nointerlineskip ->\prevdepth -1000\p@
{\prevdepth}
\pagebody ->\vbox to\vsize {\boxmaxdepth \maxdepth \pagecontents }
{\vbox}
{entering vbox group (level 3) at line 1}
{reassigning \bodydir TLT}
{reassigning \pardir TLT}
{reassigning \textdir TLT}
{\boxmaxdepth}
{changing \boxmaxdepth=16383.99998pt}
{into \boxmaxdepth=4.0pt}
\pagecontents ->\ifvoid \topins \else \unvbox \topins \fi \dimen@ =\dp \@cclv \
unvbox \@cclv \ifvoid \footins \else \vskip \skip \footins \footnoterule \unvbo
x \footins \fi \ifr@ggedbottom \kern -\dimen@ \vfil \fi
{\ifvoid: (level 1) entered on line 1}
{true}
{\else: \ifvoid (level 1) entered on line 1}
{\fi: \ifvoid (level 1) entered on line 1}
{\dimen0}
{reassigning \dimen0=0.0pt}
{\unvbox}
{\ifvoid: (level 1) entered on line 1}
{true}
{\else: \ifvoid (level 1) entered on line 1}
{\fi: \ifvoid (level 1) entered on line 1}
{\iffalse: (level 1) entered on line 1}
{false}
{\fi: \iffalse (level 1) entered on line 1}
{end-group character }}
{restoring \boxmaxdepth=16383.99998pt}
{leaving vbox group (level 3) entered at line 1}
\makefootline ->\baselineskip 24\p@ \lineskiplimit \z@ \line {\the \footline }
{\baselineskip}
{changing \baselineskip=12.0pt}
{into \baselineskip=24.0pt}
{\lineskiplimit}
{reassigning \lineskiplimit=0.0pt}
\line ->\hbox to\hsize
{\hbox}
{entering adjusted hbox group (level 3) at line 1}
{reassigning \bodydir TLT}
{reassigning \pardir TLT}
{reassigning \textdir TLT}
{restricted horizontal mode: \the}
{\hss}
{select font cmr10}
{reassigning current font=\tenrm}
\folio ->\ifnum \pageno <\z@ \romannumeral -\pageno \else \number \pageno \fi
{\ifnum: (level 1) entered on line 1}
{false}
{\else: \ifnum (level 1) entered on line 1}
{\number}
{the character 1}
{\fi: \ifnum (level 1) entered on line 1}
{\hss}
{end-group character }}
{leaving adjusted hbox group (level 3) entered at line 1}
{internal vertical mode: end-group character }}
{restoring \baselineskip=12.0pt}
{leaving vbox group (level 2) entered at line 1}
Completed box being shipped out [1]
Process crashed
というところで落ちます。
・コマンドプロンプトからは正常に test.pdf が出る
・pdftex や xetex は正常
・luatex-w32.tar.xz の beta-0.80.0 は正常、luatex-dev-w32.tar.xz の beta-0.95.0 だけ落ちる
ので不思議です。
このトピックを読む
(現在の返信数: 7)