如何解决 LaTeX 中的错误:包 inputenc. \usepackage 的选项冲突?

如何解决 LaTeX 中的错误:包 inputenc. \usepackage 的选项冲突?

这是我的文档

\documentclass[12pt,a4paper]{article}
\usepackage[latin1]{inputenc}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amsopn}
\usepackage[utf8]{inputenc}
\usepackage[ngerman] {babel} 
\usepackage[T1]{fontenc}
\usepackage{textcomp} 
\usepackage{latexsym} 
\usepackage{titlesec}
\usepackage{lipsum}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{tabularx}
\usepackage[left=2.00cm, right=2.00cm, top=2.00cm]{geometry}

\newtheorem{name}{Printed Output}
\newtheoremstyle{dotless}{}{}{\itshape}{}{\bfseries}{}{ }{} 
\theoremstyle{dotless} 
\newtheorem{thm}{Proposition} 
\newtheorem{defi}[thm]{Definition} 
\newtheorem{sat}[thm]{Satz} 
\newtheorem{bem}[thm]{Bemerkung} 
\newtheorem*{bemo}{Bemerkung} 
\newtheorem{lem}[thm]{Lemma} 

\renewcommand{\contentsname}{Inthaltsverzeichnis}
\renewcommand{\abstractname}{Abstrakt}

\newcommand{\KK}{\mathbb{K}}
\newcommand{\RR}{\mathbb{R}}
\newcommand{\CC}{\mathbb{C}}
\newcommand{\NN}{\mathbb{N}}
\newcommand{\ZZ}{\mathbb{Z}}
\newcommand{\QQ}{\mathbb{Q}}
\newcommand{\uu}{ü}
\newcommand{\aaa}{ä}
\newcommand{\oo}{ö}
\newcommand{\sss}{ß}

\titleformat{\chapter}{\normalfont\Large\scshape}{\thechapter}{1em}{} \vspace{6pt}
\newpage
\begin{document}

        \title{Das Sekretärinnenproblem}

        \author{Polina Nazarova}
        \date{\today}
        \maketitle

        \begin{abstract}
        \begin{center}
            Korrigiert ung beaufsichtigt von Prof. Peter Pickl
        \end{center}
        \end{abstract}

        \tableofcontents{Inthaltsverzeichnis}
        \newpage

\section{Motivation}
\subsection{Einleitung zum Sekretärinnenproblem}

它说错误发生在第 7 行,因此\usepackege[ngerman]{babel}

答案1

序言部分包括:

...
\usepackage[latin1]{inputenc}
...
\usepackage[utf8]{inputenc}

这是矛盾的,因为latin是8位输入编码,而utf8是多字节编码。

应使用正确的输入编码选项加载包inputenc。如果输入编码不清楚,请查看包selinput

相关内容