變音符號在 Windows 中不工作

變音符號在 Windows 中不工作

我對 LaTeX 相當陌生,想要設定我的 Visual Studio Code 以使用 LaTeX。

目前,當我嘗試編譯包含變音符號的文件時,編譯器總是會拋出錯誤。

我使用的是 Windows 計算機,因此每個教程都建議使用以下軟體包來完成此任務:

\usepackage[ngerman]{babel}
\usepackage[ansinew]{inputenc}
\usepackage[T1]{fontenc}

我總是收到以下錯誤訊息:

Output written on <<path of pdf file>> (3 pages, 23589 
bytes).
Transcript written on <<path to log file>>.
Latexmk: Log file says output to 'test.pdf'
Collected error summary (may duplicate other messages):
  pdflatex: Command for 'pdflatex' gave return code 1
      Refer to <<path to log file>> for details
=== TeX engine is 'pdfTeX'
Latexmk: Errors, so I did not complete making targets
Latexmk: Use the -f option to force complete processing,
unless error was exceeding maximum runs, or warnings treated as errors.

我什至看不到損壞的編譯 PDF。

我嘗試使用選項utf8,latin1latin9forinputenc但到目前為止它們都不起作用。

我錯過了什麼嗎?還有什麼我該嘗試的嗎?

編輯:感謝您的所有想法,按照這裡的要求是我最小的項目,但不起作用:

\documentclass[14pt]{extarticle}
\usepackage[ngerman]{babel}
\usepackage[ansinew]{inputenc}
\usepackage[T1]{fontenc}

\begin{document}

Ä Ö Ü ä ö ü ß

\end{document}

答案1

您說您嘗試了 inputenc 的 utf8 選項 - 以下給出了什麼錯誤訊息?

\documentclass[14pt]{extarticle}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}

\begin{document}
Ä Ö Ü ä ö ü ß
\end{document}

相關內容