MiKTeX and proTeXtProblem using Miktex form doxywizard tool

Information and discussion about MikTeX distribution for Windows and the related proTeXt: Installing, updating, configuring
Post Reply
giox79
Posts: 1
Joined: Thu Oct 11, 2012 5:05 pm

Problem using Miktex form doxywizard tool

Post by giox79 »

Hello everybody.
I'm currently using MikTex Version 2.9.4521 and I would like to document a doxygen project.
I correctly setup path variable, but when I try to generate the files, it seems that I'm not able to generate refman.
The output in file texput.log is:
This is pdfTeX, Version 3.1415926-2.3-1.40.12 (MiKTeX 2.9) (preloaded format=pdflatex 2012.10.11) 11 OCT 2012 15:55
entering extended mode
**refman

! Emergency stop.
<*> refman

End of file on the terminal!


Here is how much of TeX's memory you used:
2 strings out of 494045
16 string characters out of 3145962
48890 words of memory out of 3000000
3399 multiletter control sequences out of 15000+200000
3640 words of font info for 14 fonts, out of 3000000 for 9000
715 hyphenation exceptions out of 8191
0i,0n,0p,1b,6s stack positions out of 5000i,500n,10000p,200000b,50000s
! ==> Fatal error occurred, no output PDF file produced!

The make.bat file is as follows:
del /s /f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out *.brf *.blg *.bbl refman.pdf

pdflatex refman
echo ----
makeindex refman.idx
echo ----
pdflatex refman

setlocal enabledelayedexpansion
set count=5
:repeat
set content=X
for /F "tokens=*" %%T in ( 'findstr /C:"Rerun LaTeX" refman.log' ) do set content="%%~T"
if !content! == X for /F "tokens=*" %%T in ( 'findstr /C:"Rerun to get cross-references right" refman.log' ) do set content="%%~T"
if !content! == X goto :skip
set /a count-=1
if !count! EQU 0 goto :skip

echo ----
pdflatex refman
goto :repeat
:skip
endlocal
Is there someone that can provide me some hint to solve this problem?
Thanks a lot
Giovanni
Attachments
doxygen.sty
STY file
(11.53 KiB) Downloaded 448 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
Post Reply