|
original poster
abababa
posted 2023-3-14 21:34
这个用renewcommand也不行,因为第一次编译时还没有定义,所以不能重定义。
最后的方法是调换引入包的顺序:
- \documentclass[12pt]{article}
- \usepackage{amsmath,bm,yhmath,amssymb,etoolbox,esvect,stmaryrd,cite,enumitem,extarrows,mathtools,ifthen}
- \usepackage[amsmath, thmmarks]{ntheorem}
- {
- \theoremstyle{nonumberplain}
- \theoremheaderfont{\indent\bfseries}
- \theorembodyfont{\normalfont}
- \theoremsymbol{\ensuremath{\Box}}
- \newtheorem{proof}{证明}
- }
- \newcommand\equationautorefname{公式}
- \usepackage{pgf,tikz}
- \usepackage[inline]{asymptote}
- \usepackage{tkz-euclide}
- \begin{document}
- \end{document}
Copy the Code
把画图的那些全都调到最后面,这样能编译通过,暂时不知道会不会有其它问题。 |
|