变音符号在 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。

我曾尝试使用选项utf8latin1和,latin9inputenc到目前为止它们都没有起作用。

我是不是遗漏了什么?我还应该尝试其他方法吗?

编辑:感谢您的所有想法,正如所要求的,这是我的最小的项目,但它不起作用:

\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}

相关内容