用特定数字开始方程编号

用特定数字开始方程编号

我想用 开始对方程式进行编号 (8.67),因此我使用了\setcounter{chapter}{7}但使用\setcounter{equation}{66}没有帮助。我怎样才能从不同于 的数字开始对章节内的方程式进行编号1

以下是更多代码:

\documentclass[12pt, c5paper]{book}
\usepackage{latexsym}%symbole do \LaTeXe
\usepackage{amsmath}
\usepackage{chngcntr}
\usepackage{polski}
\usepackage[utf8]{inputenc}
\numberwithin{equation}{chapter}
\begin{document}

\setcounter{chapter}{7}
\setcounter{equation}{66}

\begin{equation} \label{eq1}
\frac{i_{k}}{i_{p}}=\frac{1}{1,02+0471\surd\bar{a}/K\surd\bar{l}}
\end{equation}

\end{document}

答案1

这应该可以工作:因为\setcounter{equation}{66}之后通常会重置方程计数器。\chapter{...}\chapter

\documentclass{book}


\begin{document}
\setcounter{chapter}{7}
\chapter{foo}   % chapter steps to 8 and resets equation to 1

\setcounter{equation}{66}
\begin{equation}
  E = mc^2
\end{equation}
\end{document}

相关内容