前提・実現したいこと
https://qiita.com/Gandats/items/d7718f12d71e688f3573
LaTexとVSCodeの環境構築を上記のサイトを参考に終えtexソースをビルドしたときに以下のエラーが起きます。
色々調べSetting.json内のビルドのレシピやツールまたは吐き出すディレクトリが悪いのかなと思いましたが、初心者のためどこをどう修正すればよいのかがわかりません。ご教示お願いいたします。
発生している問題・エラーメッセージ
Latexmk: Run number 1 of rule 'latex' This is e-pTeX, Version 3.14159265-p3.8.3-191112-2.6 (utf8.sjis) (TeX Live 2020/W32TeX) (preloaded format=platex) restricted \write18 enabled. entering extended mode (guessed encoding: UTF-8 = utf8)(guessed encoding: UTF-8 = utf8)Latexmk: Log file says no output from latex Latexmk: For rule 'latex', no output was made Collected error summary (may duplicate other messages): latex: Command for 'latex' gave return code 1 Refer to 'out/textest.log' for details Latexmk: Use the -f option to force complete processing, unless error was exceeding maximum runs, or warnings treated as errors.
該当のソースコード
texソース
\documentclass[a4paper,11pt]{jsarticle} % 数式 \usepackage{amsmath,amsfonts} \usepackage{bm} % 画像 \usepackage[dvipdfmx]{graphicx} \begin{document} \title{VSCode で \Latex} \author{UserName} \date{2020/6/29} \maketitle \section{\LaTexをインストール} Tex Liveをインストールしよう \end{document}
settings.json
{"editor.suggest.snippetsPreventQuickSuggestions": false, "editor.tabSize": 2, "latex-workshop.intellisense.package.enabled": true, "latex-workshop.latex.clean.fileTypes": [ "*.aux", "*.bbl", "*.blg", "*.idx", "*.ind", "*.lof", "*.lot", "*.out", "*.toc", "*.acn", "*.acr", "*.alg", "*.glg", "*.glo", "*.gls", "*.ist", "*.fls", "*.log", "*.fdb_latexmk", "*.snm", "*.nav", "*.dvi", "*.synctex.gz" ], "latex-workshop.latex.outDir": "out", "latex-workshop.latex.recipes": [ { "name": "latexmk", "tools": [ "latexmk" ] }, ], "latex-workshop.latex.tools": [ { "name": "latexmk", "command": "latexmk", "args": [ "-silent", "-outdir=%OUTDIR%", "%DOC%" ], }, ], }
補足情報(FW/ツールのバージョンなど)
VSCode:1.46.1
LaTex Workshop:8.11.0
.latexmkrcはC:\Users\USERNAME下に格納してあります。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/08 02:24