That's great, the problem it s disappeared after your advices Mr Stefan thank you, now it rest other Error but can't find it where exactly!!Stefan Kottwitz wrote:Do you have a filecaption.sty
in your document directory? If yes, then delete it or rename it. Seems there is an old version. From the .log file:
First, a current caption package would print "Code: Select all
(caption.sty Package: caption 2012/02/19 v3.2f Customizing captions (AR) ("C:\Users\...\AppData\Local\Programs\MiKTeX 2.9\tex/latex/caption\caption3.sty " Package: caption3 2018/09/12 v1.8c caption3 kernel (AR)
Package: caption 2019/09/01 v3.3d Customizing captions (AR)
". Second, there is noC:\Users\...\AppData\Local\Programs\MiKTeX 2.9
path for caption.sty.
Stefan
General ⇒ Command 'caption@box'
Command 'caption@box'
- Attachments
-
- PICTURE0.PNG (32 KiB) Viewed 8704 times
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Command 'caption@box'
Stefan Kottwitz wrote:Do you have a filecaption.sty
in your document directory? If yes, then delete it or rename it. Seems there is an old version. From the .log file:
First, a current caption package would print "Code: Select all
(caption.sty Package: caption 2012/02/19 v3.2f Customizing captions (AR) ("C:\Users\...\AppData\Local\Programs\MiKTeX 2.9\tex/latex/caption\caption3.sty " Package: caption3 2018/09/12 v1.8c caption3 kernel (AR)
Package: caption 2019/09/01 v3.3d Customizing captions (AR)
". Second, there is noC:\Users\...\AppData\Local\Programs\MiKTeX 2.9
path for caption.sty.
Stefan
- Attachments
-
- PICTURE4.PNG (208.89 KiB) Viewed 8701 times
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Command 'caption@box'
Stefab
- Ijon Tichy
- Posts: 640
- Joined: Mon Dec 24, 2018 10:12 am
Command 'caption@box'
BTW: Some other package files, i. e., enumitem.sty, seem to be in the document folder, too. This could also cause problems. Generally it is better to use the »MiKTeX console« to install (and update) packages. But indeed sometimes it could be nesseccary to use local (outdated) copies to process an old document. But in this case it is always risky to combine local copies with distribution files.
It seems, you've two pages with the logical number 1. This often happens, if users use aCode: Select all
pdfTeX warning (ext4): destination with the same identifier (name{page.1}) has been already used, duplicate ignored
\pagenumbering{arabic}
(without having a \pagenumbering{roman}
or similar before) or \setcounter{page}{1}
after the title (which is typographically wrong).Same for page 2.Code: Select all
pdfTeX warning (ext4): destination with the same identifier (name{page.2}) has been already used, duplicate ignored
It seems also, you've usedCode: Select all
l.130 $$ \phi=U_0x+\varepsilon\varphi_{1}+\varepsilon^{2}\varphi_{2}+\varepsi...
$$…$$
to make displayed math. You should not use $$…$$
in LaTeX. This is low-level TeX and breaks several LaTeX features (like correct spacing an alignment of the equation). Better use \[…\]
.To say more, I would need a


Command 'caption@box'
Command 'caption@box'
It seems, you've two pages with the logical number 1. This often happens, if users use aCode: Select all
pdfTeX warning (ext4): destination with the same identifier (name{page.1}) has been already used, duplicate ignored
\pagenumbering{arabic}
(without having a \pagenumbering{roman}
or similar before) or \setcounter{page}{1}
after the title (which is typographically wrong).Here I want to show the pages with: i , ii, ...beginning with Acknowledgement, table of content ....But the numbering page 1,2,3....beginning with introduction.
Please how can I do this?
- Ijon Tichy
- Posts: 640
- Joined: Mon Dec 24, 2018 10:12 am
Command 'caption@box'

However, try any book in you bookshelf. The pages are counted from the first right page behind the cover. The title pages do not show the page number but are counted invisibly. So you should switch to small Roman numbers before the title page. An if you have a cover pages, you should use a different numbering scheme for them. And with class book, you should use
\frontmatter
to start the front matter and \mainmatter
to switch to the main matter. The front matter uses small Roman pagenumbers automatically, the main matter uses Arabic pagenumbers automatically.