|
回复 5# kuing
谢谢,我明白了。原来直接用ntheorem那个也可以,如果同时用了ntheorem和这个amsthm反而出了很多问题。现在是这样的:- \usepackage[amsmath, thmmarks]{ntheorem}
- {
- \theoremstyle{nonumberplain}
- \theoremheaderfont{\indent\bfseries}
- \theorembodyfont{\normalfont}
- \theoremsymbol{\ensuremath{\Box}}
- \newtheorem{proof}{证明}
- }
- %\newtheoremstyle{xtheorem}{3pt}{3pt}{\normalfont}{0pt}{\indent\bfseries}{}{0pt}{}
- %\theoremstyle{xtheorem}
- \theoremheaderfont{\indent\bfseries}
- \theorembodyfont{\normalfont}
- \newtheorem{example}{例}[chapter]
- %\newtheoremstyle{xtheoremsharp}{3pt}{3pt}{\normalfont}{0pt}{\indent\bfseries}{}{0pt}{}
- %\theoremstyle{xtheoremsharp}
- \theoremsymbol{\textup{\#}}
- \newtheorem{definition}{定义}[chapter]
- \newtheorem{theorem}{定理}[chapter]
- \newtheorem{corollary}{推论}[theorem]
- %\newtheoremstyle{xnote}{3pt}{3pt}{\scriptsize}{0pt}{\indent\bfseries}{}{0pt}{}
- %\theoremstyle{xnote}
- \theorembodyfont{\scriptsize}
- \newtheorem*{note*}{说明}
复制代码 |
|