質問用フォーラムです。ご質問の前に質問のしかたをご覧ください。

出力できません。

- 匿 名 の投稿
windows7で DVD-ROM からインストールし、

\documentclass{jarticle}
\begin{document}
日本語 \LaTeX
を使って文章を書く。
\end{document}


(\は¥の半角です。)
と打ったのですが、

This is ptex2pdf[.lua] version 0.4.
Processing sample0.tex.
ptex2pdf processing of sample0.tex fails.


と、ログの表示という場所に出てしまい出力してくれません。どのようにすれば出力できますか?
sample0.texはファイル名です。

xpdf utilities

- Akira Kakuto の投稿
                  xpdf ユーティリティについて

W32TeX における,xpdf ユーティリティのインストール法を述べておきます。
TeX のインストールディレクトリ(例えば c:/w32tex)を$INSTALLDIR として
説明します。以下の[1], [2], [3] でインストールは終了します。

[1] バイナリ自身は,pdftex-w32.tar.xz (64ビットのものは pdftex-w64.tar.xz)
    を展開すればインストールされます。

[2] $INSTALLDIR/share/texmf-dist/doc/pdftex/base/
    にあるリソースを含んだファイル xpdfutil-supp.zip を,自分で決めた
    ディレクトリで展開します。ここでは,そのディレクトリを
    c:/res として説明します。

    copy $INSTALLDIR\share\texmf-dist\doc\pdftex\base\pdftotext-supp.zip c:\res
    cd /d c:\res
    unzip -o xpdfutil-supp.zip
    del xpdfutil-supp.zip

[3] TeX のバイナリディレクトリ $INSTALLDIR/bin (64bit のものは
    $INSTALLDIR/bin64) にテキストファイル xpdfrc が入っているはずですから、
    これを編集します。[2]で xpdfutil-supp.zip を展開したディレクトリが実際に
    c:/res である場合には、編集しなくて良いようにしています。たとえば展開
    ディレクトリが c:/xpdf/resource である場合には、 xpdfrc で c:/res
    とある部分を c:/xpdf/resource に変更する必要があります。

xpdf 3.04 付属のユーティリティは以下のものです。

(a) pdfdetach.exe
    PDF にアタッチされた部分をファイルとして抜き出すプログラムです。
    texdoc pdfdetach
    とすると,マニュアルを表示します。

(b) pdffonts.exe
    PDF に使用されているフォント情報を知らせてくれるものです。
    texdoc pdffonts
    とすると,マニュアルを表示します。

(c) pdfimages.exe
    PDF に埋め込まれた images を PPM or PBM or JPEG files として
    セーブするものです。
    texdoc pdfimages
    とすると,マニュアルを表示します。

(d) pdfinfo.exe
    PDF に関する各種情報を表示します。
    texdoc pdfinfo
    とすると,マニュアルを表示します。

(e) pdftohtml.exe
    PDF を HTML に変換するものです。
    texdoc pdftohtml
    とすると,マニュアルを表示します。

(f) pdftopng.exe
    PDF の各ページを PNG に変換するプログラムです。
    texdoc pdftopng
    とすると,マニュアルを表示します。

(g) pdftoppm.exe
    PDF を PPM に変換するプログラムです。
    texdoc pdftoppm
    とすると,マニュアルを表示します。

(h) pdftops.exe
    PDF を PS (PostScript) に変換するプログラムです。
    texdoc pdftops
    とすると,マニュアルを表示します。

(i) pdftotext.exe
    PDF を単純なテキストファイルに変換するプログラムです。
    texdoc pdftotext
    とすると,マニュアルを表示します。
    日本語の場合,
    pdftotext -enc Shift-JIS foo.pdf foo.txt
    とすると,Shift-JIS のテキストになりますが,ASCII 文字まで
    2バイト文字になるようです。
    pdftotext -enc EUC-JP foo.pdf foo.txt
    の場合はうまく行くようです。従って,ひとまず EUC-JP で
    出力してから,必要ならそれを Shift-JIS に変換したほうが
    よいでしょう。

新しいsectionの定義について

- 山下 大輔 の投稿
jsarticle.cls を参考に次のような section を定義しましたが,
思ったような表示にならず困っています。


---------- test1.tex ----------
\documentclass[a4j,11pt,fleqn,twoside]{jsarticle}

\usepackage[dvipdfmx]{graphicx,color}

\usepackage{fancyhdr}

\usepackage{okumacro,ascmac}

\usepackage{txfonts}

\usepackage{geometry}

% ----------------------------------------------------------------------

% マージン等の設定

\geometry{top=20truemm,bottom=20truemm,inner=25truemm,outer=15truemm}

% ----------------------------------------------------------------------

% 「実験x」という新しい subsubsection を作るための定義

\makeatletter

\newcounter{jikken}[subsection]

\newcommand{\jikken}{\@startsection{jikken}{3}%

{\z@}%字下げ量

{0.5zw}%{\z@}%見出しの上側の空白

{\z@}%見出しの下側の空白

{\normalfont\normalsize\headfont}}

\renewcommand{\thejikken}{実験\arabic{subsection}.\arabic{jikken}}

\newcommand{\jikkenmidashi}[1]{%

\underline{#1}}

\makeatother

% ----------------------------------------------------------------------

% 「演習問題x」という新しい subsubsection を作るための定義

\makeatletter

\newcounter{enshu}[jikken]

\newcommand{\enshu}{\@startsection{enshu}{3}%

{\z@}%

{0.5zw}%{\z@}%

{\z@}%

{\normalfont\normalsize\headfont}}

\renewcommand{\theenshu}{演習問題\arabic{subsection}.\arabic{jikken}.\arabic{enshu}}

\makeatother

% ======================================================================

% ======================================================================

% ======================================================================

\begin{document}


\pagestyle{empty}

\section{aaa}

\subsection{bbb}

\jikken{ccc}

ddd

\jikken{eee}

fff

\enshu{ggg}

hhh


\end{document}

---------- test1.tex ----------


このファイルをタイプセットすると


---------- test1.pdf ----------

1 aaa

1.1 bbb

実験1.1 ccc

ccc

ddd

実験1.2 eee

eee

fff

演習問題1.2.1 ggg

ggg

hhh

---------- test1.pdf ----------

というようになり,\jikken{ccc} と書くと

実験1.1 ccc

ccc

と {} の中に書いた見出しが次の行にも表示されてしまいます。

{} の中に書いた見出しを見出しだけの表示にするには,どうすればよいのでしょうか?



インストラーの初期化にエラーが発生しましたと出てしまう。

- 西川 丈晴 の投稿
お忙しいところ申し訳ありません。
Latex2eの改訂版6を一度インストールしたのですが
 うまくいっていると思ったのですが、改訂版5が残っていたので
再度インストールをしようと一旦、改訂版6を削除し、もう一度インストールをしようとしたら、初期化にエラーが
発生して、失敗してしまいました。
 いろいろ環境変数からファイルを削除したり、ユーザーの.tex
を検索しまして、すべて消し、資料もUSBに入れて、削除しました。しかし、もう一度インストールすると初期化に失敗します。
 最後に自分のファイルのC:のところに改訂版6をコピーして、
再度インストールを試みましたが駄目でした。
あとは何度もシャットダウンはしております。

プログラムに関しましてはあまりよくわからないので
そこのところご理解ください。

さくいんをつくるときのTやDの読み方

- 池田 裕 の投稿

さくいんをつくるときに、TやDやGはどう読めばいいのでしょうか?

CTを、しーてぃー、DGRを、でぃーじーあーる、と読むとうまく読み込まないように思うのですが。

アルファベットの読み方の一覧表とかあったら、どこを見ればいいのか教えてください。

オプションに titlepage を指定した際の abstract 環境の出力

- 匿 名 の投稿
documentclass を \documentclass[titlepage]{jsarticle} とした場合,
\maketitle と abstract 環境が両方とも本文とは独立したページに出力
されますが,これをタイトルだけ独立したページに出力して,アブストラクトは
独立したページに出力せずに次ページの上部に出力させて,その下に本文が
続くようにするにはどうすれば良いでしょうか?

よろしくお願いします。

Luatex-ja でエラーでました

- 浮亭 夢介 の投稿
次の sample.tex で \usepackage[ipa]{luatexja-preset} を追加
してコンパイルしました.

------------------------------
\documentclass{ltjsarticle}
\usepackage{luatexja}
\usepackage[ipa]{luatexja-preset} %%これを追加した
\begin{document}
\section{はじめてのLua\TeX-ja}
ちゃんと日本語が出るかな?
\subsection{出たかな?}
長い文章を入力するとちゃんと右端のところで折り返されるかな?
大丈夫そうな気がするけど.ちょっと不安だけど何事も挑戦だよね.
\end{document}
------------------------------

c:> luajitlatex sample.tex

次のエラーが出ました.

(c:/w32tex/share/texmf-dist/tex/latex/fontspec/fontspec.cfg)))
! Undefined control sequence.
l.278 \fontspec_define_feature_option:nnnnn
{CJKShape}{JIS2004}{20}{5}{+jp04}
?

対策わかりません.調査の程,よろしくお願いします.

arxiv

- 匿 名 の投稿
arxiv.org に投稿しようとしましたところ、次のようなエラーが出てしまいました。

TeX log appears below

[verbose]: Creating arXiv submission AutoTeX object
[verbose]: Calling arXiv submission AutoTeX process
[verbose]: is of type 'PDF'.
[verbose]: is of type 'LATEX2e'.
[verbose]: is of type 'PDF'.
[verbose]: is of type 'PDF'.
[verbose]: ~~~~~~~~~~~ Processing file 'phase_field4.tex'
[verbose]: TEXMFCNF is unset.
[verbose]: ~~~~~~~~~~~ Running hlatex for the first time ~~~~~~~~
[verbose]: Running: "(export HOME=/tmp PATH=/texlive/2011/bin/arch:/bin; cd /submissions/1002991/ && latex 'phase_field4.tex' &1
[verbose]: This is pdfTeX, Version 3.1415926-2.3-1.40.12 (TeX Live 2011)
restricted \write18 enabled.
entering extended mode
(./phase_field4.tex
LaTeX2e
Babel  and hyphenation patterns for english, dumylang, nohyphenation, ge
rman-x-2011-07-01, ngerman-x-2011-07-01, afrikaans, ancientgreek, ibycus, arabi
c, armenian, basque, bulgarian, catalan, pinyin, coptic, croatian, czech, danis
h, dutch, ukenglish, usenglishmax, esperanto, estonian, ethiopic, farsi, finnis
h, french, galician, german, ngerman, swissgerman, monogreek, greek, hungarian,
icelandic, assamese, bengali, gujarati, hindi, kannada, malayalam, marathi, or
iya, panjabi, tamil, telugu, indonesian, interlingua, irish, italian, kurmanji,
lao, latin, latvian, lithuanian, mongolian, mongolianlmc, bokmal, nynorsk, pol
ish, portuguese, romanian, russian, sanskrit, serbian, serbianc, slovak, sloven
ian, spanish, swedish, turkish, turkmen, ukrainian, uppersorbian, welsh, loaded
.
(/texlive/2011/texmf-dist/tex/latex/base/article.cls
Document Class: article 2007/10/19 v1.4h Standard LaTeX document class
(/texlive/2011/texmf-dist/tex/latex/base/leqno.clo)
(/texlive/2011/texmf-dist/tex/latex/base/size12.clo))
(/texlive/2011/texmf-dist/tex/latex/amsmath/amsmath.sty
For additional information on amsmath, use the `?' option.
(/texlive/2011/texmf-dist/tex/latex/amsmath/amstext.sty
(/texlive/2011/texmf-dist/tex/latex/amsmath/amsgen.sty))
(/texlive/2011/texmf-dist/tex/latex/amsmath/amsbsy.sty)
(/texlive/2011/texmf-dist/tex/latex/amsmath/amsopn.sty))
(/texlive/2011/texmf-dist/tex/latex/amsfonts/amssymb.sty
(/texlive/2011/texmf-dist/tex/latex/amsfonts/amsfonts.sty))
(/texlive/2011/texmf-dist/tex/latex/graphics/graphicx.sty
(/texlive/2011/texmf-dist/tex/latex/graphics/keyval.sty)
(/texlive/2011/texmf-dist/tex/latex/graphics/graphics.sty
(/texlive/2011/texmf-dist/tex/latex/graphics/trig.sty)
(/texlive/2011/texmf-dist/tex/latex/latexconfig/graphics.cfg)
(/texlive/2011/texmf-dist/tex/latex/dvipdfmx-def/dvipdfmx.def)))
(/texlive/2011/texmf-dist/tex/latex/hyperref/hyperref.sty
(/texlive/2011/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty
(/texlive/2011/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty))
(/texlive/2011/texmf-dist/tex/generic/ifxetex/ifxetex.sty)
(/texlive/2011/texmf-dist/tex/latex/oberdiek/kvoptions.sty)
(/texlive/2011/texmf-dist/tex/latex/hyperref/pd1enc.def)
(/texlive/2011/texmf-config/tex/latex/latexconfig/hyperref.cfg)
(/texlive/2011/texmf-dist/tex/latex/url/url.sty))

Package hyperref Message: Driver (default): hdvips.

(/texlive/2011/texmf-dist/tex/latex/hyperref/hdvips.def
(/texlive/2011/texmf-dist/tex/latex/hyperref/pdfmark.def
(/texlive/2011/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty)))
No file phase_field4.aux.
(/texlive/2011/texmf-dist/tex/latex/hyperref/nameref.sty
(/texlive/2011/texmf-dist/tex/generic/oberdiek/gettitlestring.sty))

Package hyperref Warning: Rerun to get /PageLabels entry.

(/texlive/2011/texmf-dist/tex/latex/amsfonts/umsa.fd)
(/texlive/2011/texmf-dist/tex/latex/amsfonts/umsb.fd)
Underfull \hbox (badness 10000) in paragraph at lines 27--30


Underfull \hbox (badness 10000) in paragraph at lines 47--52

[1] [2]
Underfull \hbox (badness 10000) in paragraph at lines 60--63


Overfull \hbox (3.87387pt too wide) in paragraph at lines 90--93
\OT1/cmr/m/n/12 where $+$ stands for so-lid-i-fi-ca-tion and $\OMS/cmsy/m/n/12
^^@$ \OT1/cmr/m/n/12 melt-ing, and $\OML/cmm/m/it/12 `\OT1/cmr/m/n/12 (\OML/cmm
/m/it/12 '\OT1/cmr/m/n/12 ) = \OML/cmm/m/it/12 h[]\OT1/cmr/m/n/12 (\OML/cmm/m/i
t/12 '\OT1/cmr/m/n/12 ) = []$.
[3]

! LaTeX Error: File `fig1.xbb' not found. Use -shell-escape option to generate
automatically.

See the LaTeX manual or LaTeX Companion for explanation.
Type H  for immediate help.
...

l.131 {fig1.pdf}

?
! Emergency stop.
...

l.131 {fig1.pdf}

Output written on phase_field4.dvi (3 pages, 13136 bytes).
Transcript written on phase_field4.log.

[verbose]: latex 'phase_field4.tex' failed.
[verbose]: Removing (La)TeX AUX file called 'phase_field4.aux' (1403063513 >= 1403063513)
[verbose]: Removing (La)TeX AUX file called 'phase_field4.out' (1403063513 >= 1403063513)
[verbose]: removing leftover dvi file 'phase_field4.dvi'
[verbose]: TEXMFCNF is unset.
[verbose]: ~~~~~~~~~~~ Running latex for the first time ~~~~~~~~
[verbose]: Running: "(export HOME=/tmp PATH=/texlive/2011/bin/arch:/bin; cd /submissions/1002991/ && latex 'phase_field4.tex' &1
[verbose]: This is pdfTeX, Version 3.1415926-2.3-1.40.12 (TeX Live 2011)
restricted \write18 enabled.
entering extended mode
(./phase_field4.tex
LaTeX2e
Babel  and hyphenation patterns for english, dumylang, nohyphenation, ge
rman-x-2011-07-01, ngerman-x-2011-07-01, afrikaans, ancientgreek, ibycus, arabi
c, armenian, basque, bulgarian, catalan, pinyin, coptic, croatian, czech, danis
h, dutch, ukenglish, usenglishmax, esperanto, estonian, ethiopic, farsi, finnis
h, french, galician, german, ngerman, swissgerman, monogreek, greek, hungarian,
icelandic, assamese, bengali, gujarati, hindi, kannada, malayalam, marathi, or
iya, panjabi, tamil, telugu, indonesian, interlingua, irish, italian, kurmanji,
lao, latin, latvian, lithuanian, mongolian, mongolianlmc, bokmal, nynorsk, pol
ish, portuguese, romanian, russian, sanskrit, serbian, serbianc, slovak, sloven
ian, spanish, swedish, turkish, turkmen, ukrainian, uppersorbian, welsh, loaded
.
(/texlive/2011/texmf-dist/tex/latex/base/article.cls
Document Class: article 2007/10/19 v1.4h Standard LaTeX document class
(/texlive/2011/texmf-dist/tex/latex/base/leqno.clo)
(/texlive/2011/texmf-dist/tex/latex/base/size12.clo))
(/texlive/2011/texmf-dist/tex/latex/amsmath/amsmath.sty
For additional information on amsmath, use the `?' option.
(/texlive/2011/texmf-dist/tex/latex/amsmath/amstext.sty
(/texlive/2011/texmf-dist/tex/latex/amsmath/amsgen.sty))
(/texlive/2011/texmf-dist/tex/latex/amsmath/amsbsy.sty)
(/texlive/2011/texmf-dist/tex/latex/amsmath/amsopn.sty))
(/texlive/2011/texmf-dist/tex/latex/amsfonts/amssymb.sty
(/texlive/2011/texmf-dist/tex/latex/amsfonts/amsfonts.sty))
(/texlive/2011/texmf-dist/tex/latex/graphics/graphicx.sty
(/texlive/2011/texmf-dist/tex/latex/graphics/keyval.sty)
(/texlive/2011/texmf-dist/tex/latex/graphics/graphics.sty
(/texlive/2011/texmf-dist/tex/latex/graphics/trig.sty)
(/texlive/2011/texmf-dist/tex/latex/latexconfig/graphics.cfg)
(/texlive/2011/texmf-dist/tex/latex/dvipdfmx-def/dvipdfmx.def)))
No file phase_field4.aux.
(/texlive/2011/texmf-dist/tex/latex/amsfonts/umsa.fd)
(/texlive/2011/texmf-dist/tex/latex/amsfonts/umsb.fd)
Underfull \hbox (badness 10000) in paragraph at lines 26--29


Underfull \hbox (badness 10000) in paragraph at lines 46--51

[1] [2]
Underfull \hbox (badness 10000) in paragraph at lines 59--62


Overfull \hbox (3.87387pt too wide) in paragraph at lines 89--92
\OT1/cmr/m/n/12 where $+$ stands for so-lid-i-fi-ca-tion and $\OMS/cmsy/m/n/12
^^@$ \OT1/cmr/m/n/12 melt-ing, and $\OML/cmm/m/it/12 `\OT1/cmr/m/n/12 (\OML/cmm
/m/it/12 '\OT1/cmr/m/n/12 ) = \OML/cmm/m/it/12 h[]\OT1/cmr/m/n/12 (\OML/cmm/m/i
t/12 '\OT1/cmr/m/n/12 ) = []$.
[3]

! LaTeX Error: File `fig1.xbb' not found. Use -shell-escape option to generate
automatically.

See the LaTeX manual or LaTeX Companion for explanation.
Type H  for immediate help.
...

l.130 {fig1.pdf}

?
! Emergency stop.
...

l.130 {fig1.pdf}

Output written on phase_field4.dvi (3 pages, 10332 bytes).
Transcript written on phase_field4.log.

[verbose]: latex 'phase_field4.tex' failed.
[verbose]: Removing (La)TeX AUX file called 'phase_field4.aux' (1403063513 >= 1403063513)
[verbose]: removing leftover dvi file 'phase_field4.dvi'
[verbose]: TEXMFCNF is unset.
[verbose]: ~~~~~~~~~~~ Running hpdflatex for the first time ~~~~~~~~
[verbose]: Running: "(export HOME=/tmp PATH=/texlive/2011/bin/arch:/bin; cd /submissions/1002991/ && pdflatex 'phase_field4.tex' &1
[verbose]: This is pdfTeX, Version 3.1415926-2.3-1.40.12 (TeX Live 2011)
restricted \write18 enabled.
entering extended mode
(./phase_field4.tex
LaTeX2e
Babel  and hyphenation patterns for english, dumylang, nohyphenation, ge
rman-x-2011-07-01, ngerman-x-2011-07-01, afrikaans, ancientgreek, ibycus, arabi
c, armenian, basque, bulgarian, catalan, pinyin, coptic, croatian, czech, danis
h, dutch, ukenglish, usenglishmax, esperanto, estonian, ethiopic, farsi, finnis
h, french, galician, german, ngerman, swissgerman, monogreek, greek, hungarian,
icelandic, assamese, bengali, gujarati, hindi, kannada, malayalam, marathi, or
iya, panjabi, tamil, telugu, indonesian, interlingua, irish, italian, kurmanji,
lao, latin, latvian, lithuanian, mongolian, mongolianlmc, bokmal, nynorsk, pol
ish, portuguese, romanian, russian, sanskrit, serbian, serbianc, slovak, sloven
ian, spanish, swedish, turkish, turkmen, ukrainian, uppersorbian, welsh, loaded
.
(/texlive/2011/texmf-dist/tex/latex/base/article.cls
Document Class: article 2007/10/19 v1.4h Standard LaTeX document class
(/texlive/2011/texmf-dist/tex/latex/base/leqno.clo)
(/texlive/2011/texmf-dist/tex/latex/base/size12.clo))
(/texlive/2011/texmf-dist/tex/latex/amsmath/amsmath.sty
For additional information on amsmath, use the `?' option.
(/texlive/2011/texmf-dist/tex/latex/amsmath/amstext.sty
(/texlive/2011/texmf-dist/tex/latex/amsmath/amsgen.sty))
(/texlive/2011/texmf-dist/tex/latex/amsmath/amsbsy.sty)
(/texlive/2011/texmf-dist/tex/latex/amsmath/amsopn.sty))
(/texlive/2011/texmf-dist/tex/latex/amsfonts/amssymb.sty
(/texlive/2011/texmf-dist/tex/latex/amsfonts/amsfonts.sty))
(/texlive/2011/texmf-dist/tex/latex/graphics/graphicx.sty
(/texlive/2011/texmf-dist/tex/latex/graphics/keyval.sty)
(/texlive/2011/texmf-dist/tex/latex/graphics/graphics.sty
(/texlive/2011/texmf-dist/tex/latex/graphics/trig.sty)
(/texlive/2011/texmf-dist/tex/latex/latexconfig/graphics.cfg)
(/texlive/2011/texmf-dist/tex/latex/dvipdfmx-def/dvipdfmx.def)))
(/texlive/2011/texmf-dist/tex/latex/hyperref/hyperref.sty
(/texlive/2011/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty
(/texlive/2011/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty))
(/texlive/2011/texmf-dist/tex/generic/ifxetex/ifxetex.sty)
(/texlive/2011/texmf-dist/tex/latex/oberdiek/kvoptions.sty)
(/texlive/2011/texmf-dist/tex/latex/hyperref/pd1enc.def)
(/texlive/2011/texmf-config/tex/latex/latexconfig/hyperref.cfg)
(/texlive/2011/texmf-dist/tex/latex/url/url.sty))

Package hyperref Message: Driver (autodetected): hpdftex.

(/texlive/2011/texmf-dist/tex/latex/hyperref/hpdftex.def
(/texlive/2011/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty))
No file phase_field4.aux.
(/texlive/2011/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty
(/texlive/2011/texmf-dist/tex/latex/oberdiek/grfext.sty)

Package epstopdf Warning: Drivers other than `pdftex.def' are not supported.

) (/texlive/2011/texmf-dist/tex/latex/hyperref/nameref.sty
(/texlive/2011/texmf-dist/tex/generic/oberdiek/gettitlestring.sty))
(/texlive/2011/texmf-dist/tex/latex/amsfonts/umsa.fd)
(/texlive/2011/texmf-dist/tex/latex/amsfonts/umsb.fd)
Underfull \hbox (badness 10000) in paragraph at lines 27--30


Underfull \hbox (badness 10000) in paragraph at lines 47--52

[1{/texlive/2011/texmf-var/fonts/map/pdftex/updmap/pdftex.map}] [2]
Underfull \hbox (badness 10000) in paragraph at lines 60--63


Overfull \hbox (3.87387pt too wide) in paragraph at lines 90--93
\OT1/cmr/m/n/12 where $+$ stands for so-lid-i-fi-ca-tion and $\OMS/cmsy/m/n/12
^^@$ \OT1/cmr/m/n/12 melt-ing, and $\OML/cmm/m/it/12 `\OT1/cmr/m/n/12 (\OML/cmm
/m/it/12 '\OT1/cmr/m/n/12 ) = \OML/cmm/m/it/12 h[]\OT1/cmr/m/n/12 (\OML/cmm/m/i
t/12 '\OT1/cmr/m/n/12 ) = []$.
[3]

! LaTeX Error: File `fig1.xbb' not found. Use -shell-escape option to generate
automatically.

See the LaTeX manual or LaTeX Companion for explanation.
Type H  for immediate help.
...

l.131 {fig1.pdf}

?
! Emergency stop.
...

l.131 {fig1.pdf}

! ==> Fatal error occurred, no output PDF file produced!
Transcript written on phase_field4.log.

[verbose]: pdflatex 'phase_field4.tex' failed.
[verbose]: Removing (La)TeX AUX file called 'phase_field4.aux' (1403063514 >= 1403063513)
[verbose]: Removing (La)TeX AUX file called 'phase_field4.out' (1403063514 >= 1403063513)
[verbose]: TEXMFCNF is unset.
[verbose]: ~~~~~~~~~~~ Running pdflatex for the first time ~~~~~~~~
[verbose]: Running: "(export HOME=/tmp PATH=/texlive/2011/bin/arch:/bin; cd /submissions/1002991/ && pdflatex 'phase_field4.tex' &1
[verbose]: This is pdfTeX, Version 3.1415926-2.3-1.40.12 (TeX Live 2011)
restricted \write18 enabled.
entering extended mode
(./phase_field4.tex
LaTeX2e
Babel  and hyphenation patterns for english, dumylang, nohyphenation, ge
rman-x-2011-07-01, ngerman-x-2011-07-01, afrikaans, ancientgreek, ibycus, arabi
c, armenian, basque, bulgarian, catalan, pinyin, coptic, croatian, czech, danis
h, dutch, ukenglish, usenglishmax, esperanto, estonian, ethiopic, farsi, finnis
h, french, galician, german, ngerman, swissgerman, monogreek, greek, hungarian,
icelandic, assamese, bengali, gujarati, hindi, kannada, malayalam, marathi, or
iya, panjabi, tamil, telugu, indonesian, interlingua, irish, italian, kurmanji,
lao, latin, latvian, lithuanian, mongolian, mongolianlmc, bokmal, nynorsk, pol
ish, portuguese, romanian, russian, sanskrit, serbian, serbianc, slovak, sloven
ian, spanish, swedish, turkish, turkmen, ukrainian, uppersorbian, welsh, loaded
.
(/texlive/2011/texmf-dist/tex/latex/base/article.cls
Document Class: article 2007/10/19 v1.4h Standard LaTeX document class
(/texlive/2011/texmf-dist/tex/latex/base/leqno.clo)
(/texlive/2011/texmf-dist/tex/latex/base/size12.clo))
(/texlive/2011/texmf-dist/tex/latex/amsmath/amsmath.sty
For additional information on amsmath, use the `?' option.
(/texlive/2011/texmf-dist/tex/latex/amsmath/amstext.sty
(/texlive/2011/texmf-dist/tex/latex/amsmath/amsgen.sty))
(/texlive/2011/texmf-dist/tex/latex/amsmath/amsbsy.sty)
(/texlive/2011/texmf-dist/tex/latex/amsmath/amsopn.sty))
(/texlive/2011/texmf-dist/tex/latex/amsfonts/amssymb.sty
(/texlive/2011/texmf-dist/tex/latex/amsfonts/amsfonts.sty))
(/texlive/2011/texmf-dist/tex/latex/graphics/graphicx.sty
(/texlive/2011/texmf-dist/tex/latex/graphics/keyval.sty)
(/texlive/2011/texmf-dist/tex/latex/graphics/graphics.sty
(/texlive/2011/texmf-dist/tex/latex/graphics/trig.sty)
(/texlive/2011/texmf-dist/tex/latex/latexconfig/graphics.cfg)
(/texlive/2011/texmf-dist/tex/latex/dvipdfmx-def/dvipdfmx.def)))
No file phase_field4.aux.
(/texlive/2011/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty
(/texlive/2011/texmf-dist/tex/generic/oberdiek/infwarerr.sty)
(/texlive/2011/texmf-dist/tex/generic/oberdiek/ifluatex.sty)
(/texlive/2011/texmf-dist/tex/generic/oberdiek/ltxcmds.sty)
(/texlive/2011/texmf-dist/tex/generic/oberdiek/ifpdf.sty))
(/texlive/2011/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty
(/texlive/2011/texmf-dist/tex/latex/oberdiek/grfext.sty
(/texlive/2011/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty))
(/texlive/2011/texmf-dist/tex/latex/oberdiek/kvoptions.sty
(/texlive/2011/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty
(/texlive/2011/texmf-dist/tex/generic/oberdiek/etexcmds.sty)))

Package epstopdf Warning: Drivers other than `pdftex.def' are not supported.

) (/texlive/2011/texmf-dist/tex/latex/amsfonts/umsa.fd)
(/texlive/2011/texmf-dist/tex/latex/amsfonts/umsb.fd)
Underfull \hbox (badness 10000) in paragraph at lines 26--29


Underfull \hbox (badness 10000) in paragraph at lines 46--51

[1{/texlive/2011/texmf-var/fonts/map/pdftex/updmap/pdftex.map}] [2]
Underfull \hbox (badness 10000) in paragraph at lines 59--62


Overfull \hbox (3.87387pt too wide) in paragraph at lines 89--92
\OT1/cmr/m/n/12 where $+$ stands for so-lid-i-fi-ca-tion and $\OMS/cmsy/m/n/12
^^@$ \OT1/cmr/m/n/12 melt-ing, and $\OML/cmm/m/it/12 `\OT1/cmr/m/n/12 (\OML/cmm
/m/it/12 '\OT1/cmr/m/n/12 ) = \OML/cmm/m/it/12 h[]\OT1/cmr/m/n/12 (\OML/cmm/m/i
t/12 '\OT1/cmr/m/n/12 ) = []$.
[3]

! LaTeX Error: File `fig1.xbb' not found. Use -shell-escape option to generate
automatically.

See the LaTeX manual or LaTeX Companion for explanation.
Type H  for immediate help.
...

l.130 {fig1.pdf}

?
! Emergency stop.
...

l.130 {fig1.pdf}

! ==> Fatal error occurred, no output PDF file produced!
Transcript written on phase_field4.log.

[verbose]: pdflatex 'phase_field4.tex' failed.
[verbose]: Removing (La)TeX AUX file called 'phase_field4.aux' (1403063514 >= 1403063514)
[verbose]: 'htex' is not a valid TeX format; will ignore.
[verbose]: TEXMFCNF is unset.
[verbose]: ~~~~~~~~~~~ Running htex for the first time ~~~~~~~~
[verbose]: Running: "(export HOME=/tmp PATH=/texlive/2011/bin/arch:/bin; cd /submissions/1002991/ && tex 'phase_field4.tex' &1
[verbose]: This is TeX, Version 3.1415926 (TeX Live 2011)
(./phase_field4.tex
! Undefined control sequence.
l.1 \documentclass
[a4paper, leqno, 12pt]{article}
?
! Emergency stop.
l.1 \documentclass
[a4paper, leqno, 12pt]{article}
No pages of output.
Transcript written on phase_field4.log.

[verbose]: tex 'phase_field4.tex' failed.
[verbose]: TEXMFCNF is unset.
[verbose]: ~~~~~~~~~~~ Running tex for the first time ~~~~~~~~
[verbose]: Running: "(export HOME=/tmp PATH=/texlive/2011/bin/arch:/bin; cd /submissions/1002991/ && tex 'phase_field4.tex' &1
[verbose]: This is TeX, Version 3.1415926 (TeX Live 2011)
(./phase_field4.tex
! Undefined control sequence.
l.1 \documentclass
[a4paper, leqno, 12pt]{article}
?
! Emergency stop.
l.1 \documentclass
[a4paper, leqno, 12pt]{article}
No pages of output.
Transcript written on phase_field4.log.

[verbose]: tex 'phase_field4.tex' failed.
[verbose]: We failed utterly to process the TeX file 'phase_field4.tex'
[error]: Unable to sucessfully process tex files.
*** AutoTeX ABORTING ***

[verbose]: AutoTeX returned error: Unable to sucessfully process tex files.

[verbose]: $autotex->process failed $@: $?: 0 $!: Inappropriate ioctl for device
[verbose]: Error running AutoTeX process:

どうしたら宜しいでしょうか。

タイプセットが終了しない

- 北川 弘典 の投稿
TeX Live 2014 pretest で,以下のソースをタイプセットしました.

----
%#!latex
\documentclass{minimal}
\begin{document}
\begin{tabular}{l}
\vbox{\leavevmode\halign{#\cr}}
\end{tabular}
\end{document}
----

すると,

----
$ latex b
This is pdfTeX, Version 3.14159265-2.6-1.40.15 (TeX Live 2014) (preloaded format=latex)
restricted \write18 enabled.
entering extended mode
(./b.tex
LaTeX2e <2014/05/01>
Babel <3.9k> and hyphenation patterns for 78 languages loaded.
(/opt/texlive/2014/texmf-dist/tex/latex/base/minimal.cls
Document Class: minimal 2001/05/25 Standard LaTeX minimal class
)
No file b.aux.
----

というメッセージが出たまま,タイプセットが終了しません.
これは意図的な挙動なのでしょうか?

mdframedパッケージを使用した際のタイトルの付け方

- 匿 名 の投稿
mdframedパッケージのmdframed環境でタイトルを付けた際にタイトルが枠内ではなく
枠の一部を切って表示されるようにしたいのですが,オプションの設定方法が分からず質問させていただきました。

具体的にはascmacパッケージのitembox環境を使用して

\begin{itembox}[l]{foobar}
hoge
\end{itembox}

としたときと同様の出力をmdframed環境でも実現したいのです。
TikZと併用することや複数ページを跨ぐ箇所がある等の理由により
可能な限りascmacやfancyboxではなくmdframedパッケージを使用したいです。

どなたか分かる方いらっしゃいましたら宜しくお願いします。