저는 LaTeX를 처음 접했고 LaTeX와 함께 작동하도록 Visual Studio Code를 설정하고 싶었습니다.
현재 움라우트가 포함된 문서를 컴파일하려고 하면 컴파일러에서 항상 오류가 발생합니다.
저는 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
지금 까지는 둘 다 작동하지 않았습니다.latin1
latin9
inputenc
뭔가 빠졌나요? 내가 또 시도해야 할 것이 있나요?
편집: 귀하의 모든 아이디어에 감사드립니다. 여기에서 요청한 대로 작동하지 않는 가장 작은 프로젝트가 있습니다.
\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}