VScodeでビルドしてPDF出力する際に発生するエラーについて

VScodeでビルドしてPDF出力する際に発生するエラーについて

- 坂田 銀時 の投稿
返信数: 24
Unquoted string "pbpaste" may clash with future reserved word at (eval 7) line 1, <GEN0> chunk 1.
Latexmk: Initialization file '/Users/namae/.latexmkrc' gave an error:
Search pattern not terminated at (eval 7) line 1, <GEN0> chunk 1.

Latexmk: Stopping because of problem with rc file

VScodeでビルドすると上記のようなエラーメッセージが出ます。目標はVScodeで保存するたびに更新されたPDFを出力させることです。
初心者なので具体的な質問もできなくて申し訳ないのですがよろしくお願いします。

坂田 銀時 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 和田 勇 の投稿
保存時に タイプセッティング・PFD 作成を latexmk を使われているので、/Users/namae/.latexmkrc の内容を見せていただかないとなんとも言えないですね。

そのファイルの中に pbpaste なる文字列が入っているのだと想定しています。

VSCODE で実行する前に latexmk で PDF が作成されるか否か以下のコマンドで確かめておくことをお勧めします。現在の設定ではこの段階でエラーになると思います。

  latexmk Untitled-1.tex

今回 latexmk を利用する環境を作成して検証したファイルなどを示しておきますので参考にしてください。

■検証用のテストファイル $HOME/Untitled-1.tex
\documentclass{jsarticle}
\begin{document}
ヤッホ
\end{document}

■ $HOME/.latexmkrc
#!/usr/bin/env perl
$latex = 'platex -synctex=1 -halt-on-error';
$bibtex = 'pbibtex -kanji=utf8';
$dvipdf = 'dvipdfmx %O -o %D %S';
$max_repeat = 5;
$pdf_mode = 3;
$pdf_update_method = 4;

■ LateX Works の setting.json (必要な latexmk のみ)

{
"latex-workshop.latex.tools": [
{
"name": "latexmk",
"command": "latexmk",
"args": [
"%DOC%"
]
},
"latex-workshop.latex.recipes": [
{
"name": "latexmk",
"tools": [
"latexmk"
]
}
}


和田 勇 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 坂田 銀時 の投稿
.latexmkrcファイルは下記のようになっております。
#!/usr/bin/env perl
$latex = 'uplatex -synctex=1 -halt-on-error -interaction=nonstopmode -file-line-error';
$latex_silent = 'uplatex -synctex=1 -halt-on-error -interaction=nonstopmode -file-line-error';
$bibtex = 'upbibtex';
$dvipdf = 'dvipdfmx %O -o %D %S';
$max_repeat = 6;
$pdf_mode = 3;
$pvc_view_file_via_temporary = 0;

検証用として見せていただいたsetting.jsonは
セミコロンなどでエラーが起きてしまいました。
坂田 銀時 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 和田 勇 の投稿
失礼しました。質問とは関係のない設定を編集した際必要なところまで削除してしまいました。

{
"latex-workshop.latex.tools": [
{
"name": "latexmk",
"command": "latexmk",
"args": [
"%DOC%"
]
},
],
"latex-workshop.latex.recipes": [
{
"name": "latexmk",
"tools": [
"latexmk"
]
},
],
"files.autoSave": "afterDelay",
}

見せていただいた .latexmkrc も特に問題はないようですが、お試しにいなったファイルと同じフォルダ(あるいはディレクトリ)に .latexmkrc などは置いていないですよね。

それと提示された .latexmkrc をコマンド実行すると問題なくpdf はできるのですが、vscode の 保存時の動きに連動させると途中でエラーになってしまいます。
これから、出勤なので対応は夜になります
和田 勇 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 和田 勇 の投稿
もう解決済みなのかな?どうなのかな?
まだでしたら、添付のものを参考にしてください
和田 勇 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 坂田 銀時 の投稿
finderから検索したところ他に.latexmkrcは見つかりませんでした。
またいただいたコードを入力しても同じエラーが出てしまいます。
テキストありがとうございます。これからでかけるので夜になりますが読んでみます。
和田 勇 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 坂田 銀時 の投稿
いただいたテキストの通りやってみましたが同じエラーがでました。
他のサイトを見ていたところmacの場合、ファイル名を~/.latexmkrcにするように書いてあったのですがこれも関係しているのでしょうか?
和田 勇 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 坂田 銀時 の投稿
.ドットから始まるファイルが非表示になっていたようでした。表示設定をし再度finderから検索してみたところ無事.latexmkrcファイルを見つけました。
ファイルの中にはpbpaste > ~/.latexmkrcと書いています。これをどのように変更すればよいでしょうか
坂田 銀時 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 和田 勇 の投稿
  • ターミナルで latexmk は実行していなかったようですね。
  • .latexmkrc は perl の文法で記述しなければならないので .latexmkrc をそれを見せて下さい。
    • というか、先日添付したテストをかねた latex ソースに書いてある .latexmkrc で置き換えて下さい
和田 勇 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 坂田 銀時 の投稿
いただいたtexfileに記載されていた.latexmkrcに置き換え、ワークスペースのsettingjsonも同様にしました。
すると今度は下記のようなエラーメッセージが出ました。
Rc files read:
NONE
Latexmk: This is Latexmk, John Collins, 17 Apr. 2020, version: 4.69a.
Rule 'pdflatex': The following rules & subrules became out-of-date:
'pdflatex'
------------
Run number 1 of rule 'pdflatex'
------------
------------
Running 'pdflatex -synctex=1 -interaction=nonstopmode -file-line-error -recorder -output-directory="/Users/????/Desktop/名称未設定フォルダ" "/Users/????/Desktop/名称未設定フォルダ/Untitled-1.tex"'
------------
Latexmk: applying rule 'pdflatex'...
This is pdfTeX, Version 3.14159265-2.6-1.40.21 (TeX Live 2020) (preloaded format=pdflatex)
restricted \write18 enabled.
entering extended mode
(/Users/????/Desktop/名称未設定フォルダ/Untitled-1.tex
LaTeX2e <2020-02-02> patch level 5
L3 programming layer <2020-04-06> (/usr/local/texlive/2020/texmf-dist/tex/platex/jsclasses/jsarticle.cls

/usr/local/texlive/2020/texmf-dist/tex/platex/jsclasses/jsarticle.cls:26: LaTeX Error: This file needs format `pLaTeX2e'
but this is `LaTeX2e'.

See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
 
l.26 \NeedsTeXFormat{pLaTeX2e}
 
) (/usr/local/texlive/2020/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def) (/Users/matsumotoyoshitomi/Desktop/名称未設定フォルダ/Untitled-1.aux)

/Users/????/Desktop/名称未設定フォルダ/Untitled-1.tex:2: LaTeX Error: The font size command \normalsize is not defined:
there is probably something wrong with the class file.

See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
 
l.2 \begin{document}
 

/Users/????/Desktop/名称未設定フォルダ/Untitled-1.tex:3: Package inputenc Error: Unicode character ヤ (U+30E4)
(inputenc) not set up for use with LaTeX.

See the inputenc package documentation for explanation.
Type H <return> for immediate help.
...
 
l.3 ヤ
ッホ

/Users/????/Desktop/名称未設定フォルダ/Untitled-1.tex:3: Package inputenc Error: Unicode character ッ (U+30C3)
(inputenc) not set up for use with LaTeX.

See the inputenc package documentation for explanation.
Type H <return> for immediate help.
...
 
l.3 ヤッ

/Users/????/Desktop/名称未設定フォルダ/Untitled-1.tex:3: Package inputenc Error: Unicode character ホ (U+30DB)
(inputenc) not set up for use with LaTeX.

See the inputenc package documentation for explanation.
Type H <return> for immediate help.
...
 
l.3 ヤッホ
 
(/Users/????/Desktop/名称未設定フォルダ/Untitled-1.aux) )
(see the transcript file for additional information)
No pages of output.
Transcript written on /Users/????/Desktop/名称未設定フォルダ/Untitled-1.log.
Latexmk: Log file says no output from latex
Latexmk: For rule 'pdflatex', no output was made
Collected error summary (may duplicate other messages):
pdflatex: Command for 'pdflatex' gave return code 1
Refer to '/Users/????/Desktop/名称未設定フォルダ/Untitled-1.log' for details
Latexmk: Use the -f option to force complete processing,
unless error was exceeding maximum runs, or warnings treated as errors.
=== TeX engine is 'pdfTeX'
Latexmk: Errors, so I did not complete making targets

VScodeのバージョンは 1.44.2

OSのバージョンは10.15.2

です。


坂田 銀時 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 和田 勇 の投稿
  • latexmk のバージョンが違っていたのでこちらも tlmgtr でアップしたところ同じになりました。
  • ヤッホー が出ているところを見ると
    • 2020年 04月 21日(火曜日) 23:33 - 和田 勇 の投稿 の内容を使われているのですね。
    • この日のものは次のふたつの問題がありました
      • settings.json を添付する際、重要な行までも削除してしまった
      • 坂田さんが回答された .latexmkrcuplatex
      • 和田は platex で検証していた
    • その改定版を 2020年 04月 22日(水曜日) 23:57 - 和田 勇 の投稿 として投稿しました。
    • この Untitled-1.tex は、4/21 の不具合を直し、坂田さんが使われている uplatex に環境を調整してテストしたものをインデントなどが崩れないように添付ファイルとして投稿 ということなので 4/22 投稿の Untitled-1.tex を参考にして欲しいのですが。
  • とは言え、どうやら .latexmkrc の設定が私が投稿したものと違っているようですね。

    > Rule 'pdflatex': The following rules & subrules became out-of-date: 'pdflatex'

    と表示されているところからを見ると

    • 少なくとも .latexmkrc ファイルは存在する
    • $pdf_mode = 1 になっているので pdflatex を使う設定だと解釈されている
    • しかしタイプセットしようとしているファイルの documentclass が処理できなくエラーになっている
  • と長々書きましたが

    • 4/22 の和田の投稿した Untiled-1.tex に記載した .latexmkrc を使って試していただくか
      • もしこちらの方法でというなら VScode だけでなく以下を試していただき結果を教えていただけると不具合点が発見しやすくなる場合もあります。
        • Terminal.app で Desktop/名称未設定フォルダ に移動して
        • latexmk -c Untitled-1
        • latexmk Untitled-1
    • 以下の情報を提示して下さい
      • 現在のホームディレクトリにある .latexmkrc
      • 坂田さんがタイプセットされようとしている代表的な latex のソース
      • まだないと言われるのでしたらタイプセットしようとしたファイル
      • → 提供していただいと情報をもとに .latexmkrc を調整してどうやったらエラーがなく処理できるか方法を検討したいと思います。
和田 勇 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 坂田 銀時 の投稿
タイプセットしようとしているファイルを添付しました。
●.latekmkrcをUntiled-1.texものに変更しました。
!/usr/bin/env perl
$latex = ’uplatex -synctex=1 -halt-on-error -interaction=nonstopmode -file-line-error’; $latex_silent = ’uplatex -synctex=1 -halt-on-error -interaction=nonstopmode -file-line-error’; $bibtex = ’upbibtex’;
$dvipdf = ’dvipdfmx %O -o %D %S’;
$max_repeat = 6;
$pdf_mode = 3;
$pvc_view_file_via_temporary = 0;
if ($^O eq ’darwin’) {
$pdf_previewer = ’open -a Preview %S’; } elsif ($^O eq ’linux’) {
$pdf_previewer = ’evince’;}
●settindjsonは
{
"latex-workshop.latex.tools": [
{
"name": "latexmk",
"command": "latexmk",
"args": [
"%DOC%" ]
}, ],
"latex-workshop.latex.recipes": [ {
"name": "latexmk",
"tools": [
"latexmk" ]
},
],
"files.autoSave": "afterDelay" }
●現在のエラーメッセージは下記のようになりました。
Rc files read:
NONE
Latexmk: This is Latexmk, John Collins, 17 Apr. 2020, version: 4.69a.
Rule 'pdflatex': The following rules & subrules became out-of-date:
'pdflatex'
------------
Run number 1 of rule 'pdflatex'
------------
------------
Running 'pdflatex -synctex=1 -interaction=nonstopmode -file-line-error -recorder -output-directory="/Users/?/Desktop/卒論" "/Users/?/Desktop/卒論/卒論.tex"'
------------
Latexmk: applying rule 'pdflatex'...
This is pdfTeX, Version 3.14159265-2.6-1.40.21 (TeX Live 2020) (preloaded format=pdflatex)
restricted \write18 enabled.
entering extended mode
(/Users/?/Desktop/卒論/卒論.tex
LaTeX2e <2020-02-02> patch level 5
L3 programming layer <2020-04-06> (/usr/local/texlive/2020/texmf-dist/tex/latex/nag/nag.sty (/usr/local/texlive/2020/texmf-dist/tex/latex/nag/nag-l2tabu.cfg) (/usr/local/texlive/2020/texmf-dist/tex/latex/nag/nag-orthodox.cfg)) (/usr/local/texlive/2020/texmf-dist/tex/platex/jsclasses/jsreport.cls

/usr/local/texlive/2020/texmf-dist/tex/platex/jsclasses/jsreport.cls:26: LaTeX Error: This file needs format `pLaTeX2e'
but this is `LaTeX2e'.

See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
 
l.26 \NeedsTeXFormat{pLaTeX2e}
 
) (/usr/local/texlive/2020/texmf-dist/tex/latex/onlyamsmath/onlyamsmath.sty (/usr/local/texlive/2020/texmf-dist/tex/latex/amsmath/amsmath.sty
For additional information on amsmath, use the `?' option.
(/usr/local/texlive/2020/texmf-dist/tex/latex/amsmath/amstext.sty (/usr/local/texlive/2020/texmf-dist/tex/latex/amsmath/amsgen.sty)) (/usr/local/texlive/2020/texmf-dist/tex/latex/amsmath/amsbsy.sty) (/usr/local/texlive/2020/texmf-dist/tex/latex/amsmath/amsopn.sty))) (/usr/local/texlive/2020/texmf-dist/tex/platex/japanese-otf-uptex/otf.sty

/usr/local/texlive/2020/texmf-dist/tex/platex/japanese-otf-uptex/otf.sty:1: LaTeX Error: This file needs format `pLaTeX2e'
but this is `LaTeX2e'.

See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
 
l.1 \NeedsTeXFormat{pLaTeX2e}
 
) (/usr/local/texlive/2020/texmf-dist/tex/latex/titlesec/titlesec.sty

Package titlesec Warning: Non standard sectioning command \section
(titlesec) detected. Using default spacing and no format.


Package titlesec Warning: Non standard sectioning command \subsection
(titlesec) detected. Using default spacing and no format.


Package titlesec Warning: Non standard sectioning command \subsubsection
(titlesec) detected. Using default spacing and no format.


Package titlesec Warning: Non standard sectioning command \paragraph
(titlesec) detected. Using default spacing and no format.


Package titlesec Warning: Non standard sectioning command \subparagraph
(titlesec) detected. Using default spacing and no format.

)

/Users/?/Desktop/卒論/卒論.tex:8: Package titlesec Error: Not allowed in `easy' settings.

See the titlesec package documentation for explanation.
Type H <return> for immediate help.
...
 
l.8 ...eformat*{\section}{\fontsize{11pt}{0pt}\gt}
 
/Users/?/Desktop/卒論/卒論.tex:11: Undefined control sequence.
l.11 \date{\today
}
(/usr/local/texlive/2020/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def) (/Users/?/Desktop/卒論/卒論.aux)

/Users/?/Desktop/卒論/卒論.tex:12: LaTeX Error: The font size command \normalsize is not defined:
there is probably something wrong with the class file.

See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
 
l.12 \begin{document}
 
/Users/?/Desktop/卒論/卒論.tex:14: Undefined control sequence.
l.14 \maketitle
 
/Users/?/Desktop/卒論/卒論.tex:15: Undefined control sequence.
l.15 \tableofcontents
 

/Users/?/Desktop/卒論/卒論.tex:16: LaTeX Error: Environment abstract undefined.

See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
 
l.16 \begin{abstract}
 

/Users/?/Desktop/卒論/卒論.tex:18: LaTeX Error: \begin{document} ended by \end{abstract}.

See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
 
l.18 \end{abstract}
 

/Users/?/Desktop/卒論/卒論.tex:20: Package inputenc Error: Unicode character は (U+306F)
(inputenc) not set up for use with LaTeX.

See the inputenc package documentation for explanation.
Type H <return> for immediate help.
...
 
l.20 \chapter{は
じめに}

/Users/?/Desktop/卒論/卒論.tex:20: Package inputenc Error: Unicode character じ (U+3058)
(inputenc) not set up for use with LaTeX.

See the inputenc package documentation for explanation.
Type H <return> for immediate help.
...
 
l.20 \chapter{はじ
めに}

/Users/?/Desktop/卒論/卒論.tex:20: Package inputenc Error: Unicode character め (U+3081)
(inputenc) not set up for use with LaTeX.

See the inputenc package documentation for explanation.
Type H <return> for immediate help.
...
 
l.20 \chapter{はじめ
に}

/Users/?/Desktop/卒論/卒論.tex:20: Package inputenc Error: Unicode character に (U+306B)
(inputenc) not set up for use with LaTeX.

See the inputenc package documentation for explanation.
Type H <return> for immediate help.
...
 
l.20 \chapter{はじめに
}
/Users/?/Desktop/卒論/卒論.tex:22: TeX capacity exceeded, sorry [input stack size=5000].
\ttlf@section ->\ttlf@section
{\date }{\title }{\textgt {{\fontsize {18pt}{0...
l.22 \section{序章}
 
/Users/?/Desktop/卒論/卒論.tex:22: ==> Fatal error occurred, no output PDF file produced!
Transcript written on /Users/?/Desktop/卒論/卒論.log.
Collected error summary (may duplicate other messages):
pdflatex: Command for 'pdflatex' gave return code 1
Refer to '/Users/?/Desktop/卒論/卒論.log' for details
Latexmk: Use the -f option to force complete processing,
unless error was exceeding maximum runs, or warnings treated as errors.
=== TeX engine is 'pdfTeX'
Latexmk: Errors, so I did not complete making targets
和田 勇 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 坂田 銀時 の投稿
失礼しました。エラーメッセージの部分が黒くなってしまいました。
下記の通りです。
Rc files read:
NONE
Latexmk: This is Latexmk, John Collins, 17 Apr. 2020, version: 4.69a.
Rule 'pdflatex': The following rules & subrules became out-of-date:
'pdflatex'
------------
Run number 1 of rule 'pdflatex'
------------
------------
Running 'pdflatex -synctex=1 -interaction=nonstopmode -file-line-error -recorder -output-directory="/Users/?/Desktop/卒論" "/Users/?/Desktop/卒論/卒論.tex"'
------------
Latexmk: applying rule 'pdflatex'...
This is pdfTeX, Version 3.14159265-2.6-1.40.21 (TeX Live 2020) (preloaded format=pdflatex)
restricted \write18 enabled.
entering extended mode
(/Users/?/Desktop/卒論/卒論.tex
LaTeX2e <2020-02-02> patch level 5
L3 programming layer <2020-04-06> (/usr/local/texlive/2020/texmf-dist/tex/latex/nag/nag.sty (/usr/local/texlive/2020/texmf-dist/tex/latex/nag/nag-l2tabu.cfg) (/usr/local/texlive/2020/texmf-dist/tex/latex/nag/nag-orthodox.cfg)) (/usr/local/texlive/2020/texmf-dist/tex/platex/jsclasses/jsreport.cls

/usr/local/texlive/2020/texmf-dist/tex/platex/jsclasses/jsreport.cls:26: LaTeX Error: This file needs format `pLaTeX2e'
but this is `LaTeX2e'.

See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.26 \NeedsTeXFormat{pLaTeX2e}
) (/usr/local/texlive/2020/texmf-dist/tex/latex/onlyamsmath/onlyamsmath.sty (/usr/local/texlive/2020/texmf-dist/tex/latex/amsmath/amsmath.sty
For additional information on amsmath, use the `?' option.
(/usr/local/texlive/2020/texmf-dist/tex/latex/amsmath/amstext.sty (/usr/local/texlive/2020/texmf-dist/tex/latex/amsmath/amsgen.sty)) (/usr/local/texlive/2020/texmf-dist/tex/latex/amsmath/amsbsy.sty) (/usr/local/texlive/2020/texmf-dist/tex/latex/amsmath/amsopn.sty))) (/usr/local/texlive/2020/texmf-dist/tex/platex/japanese-otf-uptex/otf.sty

/usr/local/texlive/2020/texmf-dist/tex/platex/japanese-otf-uptex/otf.sty:1: LaTeX Error: This file needs format `pLaTeX2e'
but this is `LaTeX2e'.

See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.1 \NeedsTeXFormat{pLaTeX2e}
) (/usr/local/texlive/2020/texmf-dist/tex/latex/titlesec/titlesec.sty

Package titlesec Warning: Non standard sectioning command \section
(titlesec) detected. Using default spacing and no format.


Package titlesec Warning: Non standard sectioning command \subsection
(titlesec) detected. Using default spacing and no format.


Package titlesec Warning: Non standard sectioning command \subsubsection
(titlesec) detected. Using default spacing and no format.


Package titlesec Warning: Non standard sectioning command \paragraph
(titlesec) detected. Using default spacing and no format.


Package titlesec Warning: Non standard sectioning command \subparagraph
(titlesec) detected. Using default spacing and no format.

)

/Users/?/Desktop/卒論/卒論.tex:8: Package titlesec Error: Not allowed in `easy' settings.

See the titlesec package documentation for explanation.
Type H <return> for immediate help.
...
l.8 ...eformat*{\section}{\fontsize{11pt}{0pt}\gt}
/Users/?/Desktop/卒論/卒論.tex:11: Undefined control sequence.
l.11 \date{\today
}
(/usr/local/texlive/2020/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def) (/Users/?/Desktop/卒論/卒論.aux)

/Users/?/Desktop/卒論/卒論.tex:12: LaTeX Error: The font size command \normalsize is not defined:
there is probably something wrong with the class file.

See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.12 \begin{document}
/Users/?/Desktop/卒論/卒論.tex:14: Undefined control sequence.
l.14 \maketitle
/Users/?/Desktop/卒論/卒論.tex:15: Undefined control sequence.
l.15 \tableofcontents

/Users/?/Desktop/卒論/卒論.tex:16: LaTeX Error: Environment abstract undefined.

See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.16 \begin{abstract}

/Users/?/Desktop/卒論/卒論.tex:18: LaTeX Error: \begin{document} ended by \end{abstract}.

See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.18 \end{abstract}

/Users/?/Desktop/卒論/卒論.tex:20: Package inputenc Error: Unicode character は (U+306F)
(inputenc) not set up for use with LaTeX.

See the inputenc package documentation for explanation.
Type H <return> for immediate help.
...
l.20 \chapter{は
じめに}

/Users/?/Desktop/卒論/卒論.tex:20: Package inputenc Error: Unicode character じ (U+3058)
(inputenc) not set up for use with LaTeX.

See the inputenc package documentation for explanation.
Type H <return> for immediate help.
...
l.20 \chapter{はじ
めに}

/Users/?/Desktop/卒論/卒論.tex:20: Package inputenc Error: Unicode character め (U+3081)
(inputenc) not set up for use with LaTeX.

See the inputenc package documentation for explanation.
Type H <return> for immediate help.
...
l.20 \chapter{はじめ
に}

/Users/?/Desktop/卒論/卒論.tex:20: Package inputenc Error: Unicode character に (U+306B)
(inputenc) not set up for use with LaTeX.

See the inputenc package documentation for explanation.
Type H <return> for immediate help.
...
l.20 \chapter{はじめに
}
/Users/?/Desktop/卒論/卒論.tex:22: TeX capacity exceeded, sorry [input stack size=5000].
\ttlf@section ->\ttlf@section
{\date }{\title }{\textgt {{\fontsize {18pt}{0...
l.22 \section{序章}
/Users/?/Desktop/卒論/卒論.tex:22: ==> Fatal error occurred, no output PDF file produced!
Transcript written on /Users/?/Desktop/卒論/卒論.log.
Collected error summary (may duplicate other messages):
pdflatex: Command for 'pdflatex' gave return code 1
Refer to '/Users/?/Desktop/卒論/卒論.log' for details
Latexmk: Use the -f option to force complete processing,
unless error was exceeding maximum runs, or warnings treated as errors.
=== TeX engine is 'pdfTeX'
Latexmk: Errors, so I did not complete making targets

和田 勇 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 坂田 銀時 の投稿
ターミナルで入力してみるとこのようなエラーになりました。

Last login: Fri Apr 24 23:33:26 on ttys000

?@?noMacBook ~ % Desktop/卒論

zsh: permission denied: Desktop/卒論

?@?noMacBook ~ % latexmk -c Untitled-1

Rc files read:

NONE

Latexmk: This is Latexmk, John Collins, 17 Apr. 2020, version: 4.69a.


------------

Latexmk: Could not find file 'Untitled-1'.

-- Use the -f option to force complete processing.

?@?noMacBook ~ % latexmk Untitled-1

Rc files read:

NONE

Latexmk: This is Latexmk, John Collins, 17 Apr. 2020, version: 4.69a.


------------

Latexmk: Could not find file 'Untitled-1'.

-- Use the -f option to force complete processing.

?@?noMacBook ~ %


坂田 銀時 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 和田 勇 の投稿

NONE と表示されているところ見るとホームディレクトリに .latexmkrc は存在しないあるいは見え無い状態のようですね

  • 坂田さんのレポートその1

    Rc files read:

    NONE

    Latexmk: This is Latexmk, John Collins, 17 Apr. 2020, version: 4.69a.

    Rule 'pdflatex': The following rules & subrules became out-of-date:

    'pdflatex'

    • なぜ pdflatexが使われるかわかりませんが
    • もしかしたら VScode の拡張パッケージの影響かもしれません。
      • 和田は  LaTeX Workshop 8.8.0 を使っています。坂田さんはどんな拡張パッケージを利用されていますか?
    • 拡張パッケージによっては .latexmkrc が存在し無い、見え無いなど利用できない時は pdflatex に fallback するのかもしれません。
  • 坂田さんのレポートその2

    zsh: permission denied: Desktop/卒論

    Latexmk: Could not find file 'Untitled-1'.

    • もしかしたら以下で解決できるかもしれませんが macOS zsh: permission denied: で検索して見て下さい

      https://djeeeno.blogspot.com/2019/12/20191227-01-wireshark-permission-denied.html

番外

  • ターミナルでプロプトに自分の名前が出ているのをインターネットに晒したくない時 (bash, zsh)

    PS1="ありゃ % "

和田 勇 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 坂田 銀時 の投稿
Latexworkshopのバージョンは8.9.0です。
URLに記載されている通りにターミナルに入力したところcommand not foundとなりました。

if [ -x /usr/libexec/path_helper ]; then

eval `/usr/libexec/path_helper -s`

fi

:

ありゃ $ /usr/libexec/path_helper -s

Wireshark: Permission denied

PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/djeeno/google-cloud-sdk/bin:/Users/djeeno/.asdf/shims:/Users/djeeno/.asdf/bin:/Users/djeeno/.asdf/installs/golang/1.13.5/go/bin:/Users/djeeno/go/bin"; export PATH;


zsh: command not found: $

zsh: command not found: Wireshark:

ありゃ


名前の伏せ方を教えていただきありがとうございます。

和田 勇 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 坂田 銀時 の投稿

.latexmkrcファイルは半透明の状態で見えています。

坂田 銀時 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 和田 勇 の投稿
> .latexmkrcファイルは半透明の状態で見えています。

質問は、「ありますけど」っていうこと?

検証はしてい無いけど VScode で latexmk と連携する際、坂田さんがお使いの環境では zsh を介在するように動くのではと思いす。

つまりzsh を介して latexmk を動かそうとしたが、
→ zsh のアクセス権限が不足していて $HOME/.latexmkrc を読めない
→ それを検知して pdflatex へfallback して無理やりコンパイル試みたけど失敗

という状況なので
zsh の権限を直す・調整するのが第一というのが現在の和田の見解です。
が、申し訳ないが私は基本 bash なので catalina からデフォルトの shell が zsh になったのになぜ今回の事象が発生するのか現在頭を悩ませています。
ですので インターネット検索してねとお願いしたつもりです。
坂田 銀時 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 和田 勇 の投稿

坂田さんの 2020年 04月 25日(土曜日) 01:44 投稿の記事でを見直ししました。

結論から言えば zsh のアクセス権の懸念は無くなりました。

  1. zsh: permission denied: Desktop/卒論Desktop/卒論 といコマンドを実行した
    • Desktop/卒論 に移動したい場合は cd Desktop/卒論 というように cd というコマンドを前置して使って下さい
    • 移動できたか否かは以下のようなコマンドで確認可能です。
      • pwd ... 今どのディレクトリにいるか表示してくれます
      • ls ....... 今いるディレクトリに存在するファイルやディレクトリを表示してくれます
  2. Rc files read: NONE はホームディレクトリに .latexmlrc が存在していないようです

    • .latexmkrc のアクセス権を全て剥奪した場合でも以下のようなメッセ字を表示します。

      • Latexmk: I cannot read the rc-file '/Users/i-wada/.latexmkrc'
    • 存在するか否かは以下のコマンドを実行すれば判明します
      • cat ~/.latexmkrc #左の赤い部分だけをコピペして実行して下さい
    • 存在しなければ以下のように表示されます

      cat: /Users/ユーザ名/.latexmkrc: No such file or directory

  3. Latexmk: Could not find file 'Untitled-1'. は最初に行ったコマンドで移動したつもりで実行しているのでファイルはないと言われても当然です。

ということでまずはホームディレクトリに .latexmkrc が存在するか再確認をお願いします。 ちょっと難しいコマンドですが赤字のところだけコピペして結果を見せて下さい

  1. ホームディレクトリに移動

    cd

  2. 隠しファイルから tex に関係しそうなものを抜き出す

    find . -maxdepth 1 -name '.*' | grep -i tex

    私の環境では今回の検証用も含んでいるので以下のように表示されます。

    ./.CFUserTextEncoding

    ./.latexmkrc.wada

    ./.latexmkrc

    ./.texlive2019

和田 勇 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 坂田 銀時 の投稿

ホームディレクトリ には存在しないようです。

ありゃ cd

ありゃ pwd

/Users/?

ありゃ

ありゃ cat ~/.latexmkrc

cat: /Users/?/.latexmkrc: No such file or directory

ありゃ


再確認をしてみました。

ありゃ cd

ありゃ find . -maxdepth 1 -name '.*' | grep -i tex

./.CFUserTextEncoding

ありゃ


坂田 銀時 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 和田 勇 の投稿

ホームディレクトリに .latexmkrc を配置

  • 次のステップは .latexmrc を作ることなですが、もう作成されましたか?作り方がわからなければ、今まで坂田さんとやりとりして検証に利用してきた .latexmkrc をこの投稿に添付しますのでダウンロードしてホームディレクトリに配置して下さい。
    • 2020年 04月 24日(金曜日) 23:59 に投稿された時 .latexmkrc を設置されたとのことでしたが、それでもホームディレクトリやコンパイルを試みた /Users/?/Desktop/卒論 には存在しなかったようなのでダブルチェックお願いします。
    • latexmk はホームディレクトリとコンパイルするディレクトリの両方の .latexmkrc を読み込もうとし 読み込んだファイル名 あるいは どちらもなかったら NONE を表示します。 ですので以降でテストする際、このことを覚えておいて下さい。

latexmk が ~/.latexmkrc を取り込むかテスト

2020年 04月 24日(金曜日) 23:59 に投稿された時の状況からテスト用のファイルは ~/Desktop/卒論/卒論.tex だとしてコマンド例を記述します。

コマンドは % の行で % を含まないところをコピペするなどして利用して下さい。

  • テスト用ファイルがおいてあるディレクトリに移動

    % cd ~/Desktop/卒論

  • テスト用ファイルの確認

    % ls

    卒論.tex

  • latexmkrc でコンパイル 確認ポイントは Rc files read: の次の行が NONE 出ないこと

    % latexmk 卒論.tex

    Rc files read:

    /Users/i-wada/.latexmkrc

  • どんなファイルが作成されているか 卒論.pdf が作成されていること

    % ls

    卒論.aux 卒論.dvi 卒論.fdb_latexmk 卒論.fls 卒論.log 卒論.pdf 卒論.synctex.gz 卒論.tex 卒論.toc

  • PDF を表示してみる

    % open -a Preview 卒論.pdf

    あるいは

    % open 卒論.pdf

和田 勇 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 坂田 銀時 の投稿

三つ目の項目でNONEが出ないもののエラーが出てしまうようです。

ホームディレクトリ に配置というのは.latexmkcファイルを卒論フォルダ内に配置するということなのでしょうか?


ありゃ cd ~/Desktop/卒論

ありゃ ls

卒論.aux 卒論.log

卒論.fdb_latexmk 卒論.tex

卒論.fls 名称未設定.code-workspace

ありゃ latexmk 卒論.tex

Unquoted string "book" may clash with future reserved word at (eval 7) line 1, <GEN0> chunk 1.

Latexmk: Initialization file '.latexmkrc' gave an error:

syntax error at (eval 7) line 1, at EOF


Latexmk: Stopping because of problem with rc file

ありゃ ls

卒論.aux 卒論.log

卒論.fdb_latexmk 卒論.tex

卒論.fls 名称未設定.code-workspace

ありゃ open -a Preview 卒論.pdf

The file /Users/?/Desktop/卒論/卒論.pdf does not exist.

ありゃ


坂田 銀時 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 和田 勇 の投稿
  • 確かにNONEが出なければと書きましたが、Rc files read: が表示されていないし、表示されている内容から Unquated Clash error Stopping などの文字列が表示されているので設定がおかしいと判断して下さい。
  • 表示された内容から判断できませんか?

    Unquoted string "book" may clash with future reserved word at (eval 7) line 1, chunk 1.

    Latexmk: Initialization file '.latexmkrc' gave an error:

    syntax error at (eval 7) line 1, at EOF

    Latexmk: Stopping because of problem with rc file

  • 上記メッセージの概要は .latexmkrc に記述ミスあり処理できません

    • 覚えてますか? latexmk はホームディレクトリと今回のカレントディレクトリ ~/Desktop/卒論.latexmkrc を読み込もうとします。
    • おそらく後者だと思いますが ~/Desktop/卒論/.latexmkrc1行目bookらしき latexmk が理解できない文字列がありクラッシュしたのでStop
    • ということでこの時点で行うべき作業はホームディレクトリとカレントディレクトリの .latexmkrc の確認です。昨日の find コマンドを応用し以下のコマンドを実行します。(氏名情報などを表示されたくないことなのでいったんホームディレクトリに移動して行います)

      % cd

      % find . Desktop/卒論 -maxdepth 1 -name '.*' | grep tex

      ./.latexmkrc

      Desktop/卒論/.latexmkrc

    • 上記のように Desktop/卒論/.latexmkrc が表示されたら今は不要ですので以下のコマンドで削除

      % rm ~/Desktop/卒論/.latexmkrc

    • ./.latexmkrc だけであれば後段に記述してある方法を参考にその内容を VScode で正しく修正して下さい
  • Desktop/卒論 ディレクトリに移動して latexmkrc 卒論 でタイプセットの再開です

    • まず 卒論.tex をタイプセットした際に作成される不要なファイルのクリーニング
    • 副次効果として読み込んだ .latexmkrc が表示されるので次のような三行が表示されれば良い

      % cd ~/Desktop/卒論
      
      % latexmk -C 卒論.tex
      
      Rc files read:
      
      /Users/i-wada/.latexmkrc
      
      Latexmk: This is Latexmk, John Collins, 17 Apr. 2020, version: 4.69a.
      
      • ダブルチェックするなら ls コマンドで 卒論.tex 以外の 卒論関連以外のファイルが存在しないこと
    • 準備が整ったので以下のコマンドを実行

      % latexmk 卒論.tex
      
      • Unquoted string "book" may clash 云々 が表示されたら ~/.latexmkrc を今までのやりとりを見直しして修正しましょう。幸い VScode をお使いになっているので隠しファイルの表示操作をしてファイルを開いて編集・保存して下さい。
      • それでもエラーを回避できなければ以下のコマンドで ~/.latexmkrc をもう一度見せて下さい。

        % cat ~/.latexmkrc

和田 勇 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 坂田 銀時 の投稿
丁寧に教えてもらっているのにわからない部分が多くて申し訳ありません。
いくつか質問させてください。
1.[NONEが表示される場合の対処法はどのようにすればいいのでしょうか?]
以前の回答で
「ホームディレクトリに .latexmkrc は存在しないあるいは見え無い状態のようですね」
と回答して頂いているのですがアプリケーション内に.latexmkrcは半透明の状態で存在しています。この状態では.latexmkrcは存在しないものとして判断されてしまうのでしょうか?
2.[ホームディレクトリ とはアプリケーションも含むのでしょうか?]
つまり前述したようにアプリケーション内に.latexmkrc配置した場合これはホームディレクトリ に配置したということになるのでしょうか?
3.[.latexmkrcファイルと~/.latexmkrcは異なるものなのでしょうか?]
2020年 04月 26日(日曜日)の和田さんの返答内の文末に「それでもエラーを回避できなければ以下のコマンドで ~/.latexmkrc をもう一度見せて下さい。」とありますがこの二つは違うものなのでしょうか

坂田 銀時 への返信

Re: VScodeでビルドしてPDF出力する際に発生するエラーについて

- 和田 勇 の投稿
  • Q1 [NONEが表示される場合の対処法はどのようにすればいいのでしょうか?]

    以前の回答で
    「ホームディレクトリに .latexmkrc は存在しないあるいは見え無い状態のようですね」
    と回答して頂いているのですがアプリケーション内に.latexmkrcは半透明の状態で存在しています。
    

    ファイル名のスペルはあっていますか?

    2020年 04月 25日(土曜日) 19:41 - 坂田 銀時 の投稿 の回答では tex の文字列を含む隠しファイル存在していない となっている報告されています。

    この状態では.latexmkrcは存在しないものとして判断されてしまうのでしょうか?
    

    ではもう少し広く探すようコマンドオプションを調整しホームディレクトリと Desktop/卒論 ディレクトリ直下にある tex の文字列を含むファイルを探すコマンドを示しますので表示結果を教えて下さい。(この処理だけでははユーザ名などは隠せませんので適宜編集して下さい)

    % cd
    % find . Desktop/卒論 -maxdepth 1 | grep -i tex | xargs ls -l
    

    検証のために設定している私の結果も参考に示しておきます。

    -r-------- 1 i-wada staff    7 12 21 11:27 ./.CFUserTextEncoding
    -rw-r--r-- 1 i-wada staff  451  4 29 08:58 ./.latexmkrc              ← ホームディレクトリのもの
    -rw-r--r-- 1 i-wada staff  451  4 22 22:58 ./.latexmkrc.sakata
    -rw-r--r-- 1 i-wada staff  366  4 22 22:37 ./.latexmkrc.wada
    -rw-r--r-- 1 i-wada staff    0  4 29 09:18 ./LATEXMKRC               今回のテストのため
    -rw-r--r-- 1 i-wada staff    0  4 29 09:02 Desktop/卒論/.LATEXMKRC   ← Desktop/卒論 で作業時に参照
    -rw-r--r-- 1 i-wada staff  695  4 25 20:51 Desktop/卒論/卒論.tex
    
  • Q2 [ホームディレクトリ とはアプリケーションも含むのでしょうか?]

    • アプリケーションとは latexmk のことかな? VScode なのかな?いずれにしても含みません
    • 念のためホームディレクトリは

      • コンピュータにログイン・ログオンした時にそのユーザのベースとなる場所
      • 一般に HOME という環境変数に自動で設定されていますので以下のように確認できます。

        % echo $HOME

        /Users/i-wada

    • Q2-2 つまり前述したようにアプリケーション内に.latexmkrc配置した場合これはホームディレクトリ に配置したということになるのでしょうか?

      • この質問が出るということはアプリケーションとは「Desktop/卒論」と理解されているのかな?
      • そうであれば、私はそれを「カレントディレクトリ」と称しています。
      • そうであれば2、Q1 の結果で Desktop/卒論/.latexmkrc が存在すれば意図されたことだと思います。
      • 予備知識 ... 通常 macOS はファイル名の大文字小文字を同一視していますので .LATEXMKRC でも .LaTeXMKrc でも .latexmkrc として処理されます
  • Q3 [.latexmkrcファイルと~/.latexmkrcは異なるものなのでしょうか?]

    再掲ですが、latexmk はまずホームディレクトリに .latexmkrc を読みにゆきあれば読み込み、その後カレントディレクトリのを読み込みます。 簡単にその動きがわかるのは以下のコマンドを実行した時です。この情報もできれば教えて下さい。

    % cd ~/Desktop/卒論/
    % latexmk -C 卒論.tex
    Rc files read:
      /Users/i-wada/.latexmkrc    ← これがホームディレクトリのを読み込んだという証拠
      .latexmkrc                  ← こっちはカレントディレクトリ
    Latexmk: This is Latexmk, John Collins, 17 Apr. 2020, version: 4.69a.
    
    • Q3-2 2020年 04月 26日(日曜日)の和田さんの返答内の文末に「それでもエラーを回避できなければ以下のコマンドで ~/.latexmkrc をもう一度見せて下さい。」とありますがこの二つは違うものなのでしょうか

      質問の直接の答えにはなっていないかもしれませんが、どうして二つ読み込もうとしているか説明します。

      • ホームディレクトリの .latexmkrc
        • ユーザがどこで作業しても共通になる設定
      • カレントディレクトリの .latexmkrc
        • 一般には一つのディレクトリで複数の書式(主に documentclass )やタイプセット方法は一種類にした方がわかりやすいが、他の作業ディレクトリとは異なる場合、その差分などを追加設定するため。

      とういことで回答は 同じであっても良い異なっても良い ですが、カレントディレクトリのものがあれば、追加設定できたり、置き換えたりすることが可能になります。

  • 私の現在の見解では ホームディレクトリに .latexmkrc は存在しない と判断していますが Q1 の結果で存在が確認でき、 Q3 の latexmk -C 卒論.tex で読み込まないとすると macOS catalina のファイルアクセス制限とかも調べなければいけなくなりそうな感じがしています。