我想对我的定义和评论使用不同的定理样式。但不知何故,该命令\theoremstyle{definiton}
目前根本没有改变任何东西:这里的代码希望得到一些帮助。
\documentclass[a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english, ngerman]{babel}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{hyperref}
\theoremstyle{plain}
\newtheorem{satz}{Satz}[section]
\newtheorem{lem}[satz]{Lemma}
\newtheorem{cor}[satz]{Korrolar}
\theoremstyle{definiton}
\newtheorem{rem}[satz]{Bemerkung}
\newtheorem{defn}[satz]{Definition}
\begin{document}
\chapter{1}
\begin{satz}
test one two three
\end{satz}
\begin{defn}
test one two three
\end{defn}
\end{document}
由于某种原因,satz 和 defn 具有相同的风格......
答案1
这是因为你写\theoremstyle{definiton}
的不是\theoremstyle{definition}
(请注意附加的i
)