How do I fix my pdflatex?? I work on Windows!
Thanks,
--Elijah
Did you try the `Refresh Now' and `Update Now' buttons on the MiKTeX
Options utility dialog?
Hope this helps. . .
---Norvell
>I updated my MikTex 2-3 days back, and use pdflatex extensively,
Do you mean the beta of pdflatex.exe? Or
>now it doesnt compile anything. I updated the package with the
>internet update option. Anyone knows where I can get help??
>
.err... http://www.miktex.org/support.html !
:-)
There is both a mailing list, and an online forum. In addition, if you
have registered MikTex, you can get direct email support.
>How do I fix my pdflatex?? I work on Windows!
I'm afraid you'll have to be more specific - e.g. create a simple
.ltx file like a short letter, try to compile it with pdflatex and
post the resulting error messages. Saying "it doesn't compile
anything" doesn't give us anything to go on!
[btw, I keep my miktex distribution current, and haven't had any
problems with the recent updates, so your problem should be fixable.]
did the upgrade also get the latest versions of pdftex.def and
hyperref? if not get those, for sure.
otherwise, if you're using pdftex primitives for including images,
you're probably using the "old" ones. convert the lot to using the
latex graphics package, and you won't be caught again if the pdftex
primitives change again...
(on reflection, i guess the second option is the likelier.)
\input epsf
\newcommand{\OCfigure}[4]{
\begin{centering}
\begin{figure}[htbp]
\centerline{
\ifpdf
\includegraphics[width=#3,height=#4]{#1.pdf}
\else
\includegraphics[width=#3,height=#4]{#1.eps}
\fi
}
\caption{#2}
\label{fig:#1}
\end{figure}
\end{centering}}
This is the code snippet I use for image inclusion so that it
is included using latex and pdflatex without problems.
Now this following line creates a problem!
\OCfigure{hand}{xxx}{3.6in}{2.7in}
Everywhere else in the paper it works except in the introduction
section???!!
pdflatex --quiet my.tex
my.tex:335: Missing number, treated as zero
my.tex:335: Illegal unit of measure (
my.tex:335: Missing = inserted for
my.tex:335: Missing number, treated as zero
my.tex:335: Illegal unit of measure (
my.tex:335: Missing
my.tex:335: Extra
my.tex:335: Missing
my.tex:335: Missing
my.tex:335: Missing
my.tex:335: Undefined control sequence
my.tex:335: Undefined control sequence
my.tex:335: Extra make: *** [my.pdf] Error 1
Any ideas???
Thanks for your help in advance,
--Elijah
geom...@hotmail.com (Elijah Bailey) wrote in message news:<e008fef8.01110...@posting.google.com>...
Elijah> But now I have a strange problem. Most papers I was
Elijah> writing using MikTex compile now, except one , In which I
Elijah> use an include graphics command. The one in the
Elijah> Introduction section doesnt work, the rest all work.
And you think we are all divinators so that it is not even necessary
to give us a short example exhibiting the problem? Do you think it is
a standard problem that LaTeX will fail on document parts that the
author intended to be an introduction to something?
Elijah> \input epsf
Argh! You are including an outdated graphics interface intended for
pure EPS inclusion for non-pdfTeX plain TeX. Why, for crying out
loud? What is wrong with simply using the graphicx style?
--
David Kastrup, Kriemhildstr. 15, 44793 Bochum
Email: David....@t-online.de
> [SNIP]
This code is bad under many respects: the most important flaw is the
use of epsf.sty, which is outdated. In modern distributions, this is just
a wrapper for graphicx. Second, why the inexistent `centering' environment?
And why the \centerline command? Your form also introduces spurious spaces.
You should write in the preamble
\usepackage{graphicx}
Then your definition can be
\newcommand{\OCfigure}[4]{
\begin{figure}[htbp]
\begin{center}
\includegraphics[width=#3,height=#4]{#1}
\end{center}
\caption{#2}
\label{fig:#1}
\end{figure}}
This is because graphicx has built-in support to recognize
whether pdftex or normal TeX is used.
Ciao
Enrico
> \usepackage{graphicx}
>
> Then your definition can be
>
> \newcommand{\OCfigure}[4]{
> \begin{figure}[htbp]
> \begin{center}
> \includegraphics[width=#3,height=#4]{#1}
> \end{center}
> \caption{#2}
> \label{fig:#1}
> \end{figure}}
>
> This is because graphicx has built-in support to recognize
> whether pdftex or normal TeX is used.
Not graphicx, but graphics.sty can have this built-in support.
If the correct driver is loaded (dvips.def or pdftex.def), then
it knows about the supported extensions (.eps, .pdf, ...) and
you can omit the file extension in \includegraphics.
A note to center/centering:
center is an environment. It adds additional vertical space.
So the command (not environment) \centering can be
used to avoid this:
\begin{figure}
\centering
...
\end{figure}
Yours sincerely
Heiko <ober...@uni-freiburg.de>
I still cant run the pdflatex on my file! Gives some
error, If I remove the Introduction Section, it compiles!!!
Otherwise:
pdflatex --quiet my.tex
my.tex:333: Missing
my.tex:333: Missing number, treated as zero
my.tex:333: Missing = inserted for
---------------------------------breif description
my.tex : Introduction section empty
Compiles with both latex and pdflatex
my.tex : Insert the following command in Introduction
\OCfigure{hand}{xxx}{3.6in}{2.7in}
pdflatex doesnt compile[error's enumerated above],
I used the new version of OCfigure that was suggested in your answer!!!
Any ideas, why OCfigure is creating so much trouble??
I also dont understand why it leaves more spaces
above and below the figures than the original version!
Thanks,
--Elijah
greg...@math.unipd.it (Enrico Gregorio) wrote in message news:<gregorio-ya0240800...@news.supernews.com>...
so everyone guessed wrong about what your problem is. which isn't
surprising since you so carefully edit out most possible clues.
take a look at
http://www.tex.ac.uk/cgi-bin/texfaq2html?label=erroradvice
and (in particular) the errorcontextlines patching. run your job
again and post some *log* file, not the truncated rubbish you've
posted so far.
it's often said that many people on c.t.t have remarkable psychic
powers. however, to continue to rely on these powers when they've
evidently failed you smacks of irrational faith.
gi's a clue, mate!
--
Robin Fairbairns, Cambridge -- rf10 at cam dot ac dot uk
> On Sun, 04 Nov 2001 17:31:42 +0100, greg...@math.unipd.it (Enrico
> Gregorio) wrote:
>
>[SNIP]
> A note to center/centering:
>
> center is an environment. It adds additional vertical space.
> So the command (not environment) \centering can be
> used to avoid this:
>
> \begin{figure}
> \centering
> ...
> \end{figure}
You are right, of course. Still can't know why the first poster
is not able to work his example.
It seems something is missing.
Ciao
Enrico
Did you regenerate the format files? IIRC pdfLaTeX is not updated when
you click on the Update Now button: you have to go to TeX Formats,
select pdflatex, and Build.
--
Giuseppe "Oblomov" Bilotta
Axiom I of the Giuseppe Bilotta
theory of IT:
Anything is better than MS
Do not use the --quiet flag when you are troubleshooting. If something
is not working, you want as much information as possible!
Thanks for pointing out that. I did BUILD The pdflatex format file
using the Tex Format tab in the MikTex options, So that shouldnt
be the real problem! :( Anything else I again missed??
Thanks,
--Elijah
This is pdfTeX, Version 3.14159-14f-released-20000525 (MiKTeX 2.1)
(preloaded format=latex 2000.11.28) 5 NOV 2001 19:53
**my
(my.tex{pdftex.cfg}
LaTeX2e <2001/06/01>
Babel <v3.7h> and hyphenation patterns for english, french, german,
ngerman, du
mylang, nohyphenation, loaded.
(c:\progra~1\miktex\tex\latex\base\article.cls
Document Class: article 2001/04/21 v1.4e Standard LaTeX document class
(c:\progra~1\miktex\tex\latex\base\size11.clo
File: size11.clo 2001/04/21 v1.4e Standard LaTeX file (size option)
)
\c@part=\count79
\c@section=\count80
\c@subsection=\count81
\c@subsubsection=\count82
\c@paragraph=\count83
\c@subparagraph=\count84
\c@figure=\count85
\c@table=\count86
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
)
(c:\progra~1\miktex\tex\latex\graphics\color.sty
Package: color 1999/02/16 v1.0i Standard LaTeX Color (DPC)
(c:\progra~1\miktex\tex\latex\00miktex\color.cfg)
Package color Info: Driver file: pdftex.def on input line 125.
(c:\progra~1\miktex\tex\latex\graphics\pdftex.def
File: pdftex.def 2000/06/16 v0.03a graphics/color for pdftex
\Gread@gobject=\count87
))
(c:\progra~1\miktex\tex\latex\graphics\graphicx.sty
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
(c:\progra~1\miktex\tex\latex\graphics\keyval.sty
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
\KV@toks@=\toks14
)
(c:\progra~1\miktex\tex\latex\graphics\graphics.sty
Package: graphics 2001/07/07 v1.0n Standard LaTeX Graphics (DPC,SPQR)
(c:\progra~1\miktex\tex\latex\graphics\trig.sty
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
(c:\progra~1\miktex\tex\latex\00miktex\graphics.cfg)
Package graphics Info: Driver file: pdftex.def on input line 80.
)
\Gin@req@height=\dimen103
\Gin@req@width=\dimen104
)
(c:\progra~1\miktex\tex\latex\hyperref\hyperref.sty
Package: hyperref 2001/10/11 v6.71r Hypertext links for LaTeX
\@linkdim=\dimen105
\Hy@linkcounter=\count88
\Hy@pagecounter=\count89
(c:\progra~1\miktex\tex\latex\hyperref\pd1enc.def
File: pd1enc.def 2001/10/11 v6.71r Hyperref: PDFDocEncoding definition
(HO)
)
(c:\progra~1\miktex\tex\latex\00miktex\hyperref.cfg)
Package hyperref Info: Option `verbose' set `true' on input line 1649.
Package hyperref Info: Option `hypertexnames' set `false' on input
line 1649.
Package hyperref Info: Option `bookmarksopen' set `true' on input line
1649.
Package hyperref Info: Option `colorlinks' set `true' on input line
1649.
Package hyperref Info: Option `plainpages' set `false' on input line
1649.
Package hyperref Info: Option `linktocpage' set `true' on input line
1649.
Package hyperref Info: Bookmarks ON on input line 1707.
Package hyperref Info: Hyper figures OFF on input line 1726.
Package hyperref Info: Link nesting OFF on input line 1731.
Package hyperref Info: Hyper index ON on input line 1734.
Package hyperref Info: Plain pages OFF on input line 1741.
Package hyperref Info: Backreferencing OFF on input line 1746.
Implicit mode ON; LaTeX internals redefined
(url.sty
Package: url 1996/02/06 ver 1.1 Verb mode for urls, email addresses,
and file
names
)
LaTeX Info: Redefining \url on input line 1956.
\Fld@menulength=\count90
\Field@Width=\dimen106
\Fld@charsize=\dimen107
\Choice@toks=\toks15
\Field@toks=\toks16
Package hyperref Info: Hyper figures OFF on input line 2402.
Package hyperref Info: Link nesting OFF on input line 2407.
Package hyperref Info: Hyper index ON on input line 2410.
Package hyperref Info: backreferencing OFF on input line 2417.
Package hyperref Info: Link coloring ON on input line 2420.
\c@Item=\count91
\c@Hfootnote=\count92
)
*hyperref using driver hpdftex*
(c:\progra~1\miktex\tex\latex\hyperref\hpdftex.def
File: hpdftex.def 2001/10/11 v6.71r Hyperref driver for pdfTeX
(c:\progra~1\miktex\tex\latex\psnfss\pifont.sty
Package: pifont 2001/06/04 PSNFSS-v8.2 Pi font support (SPQR)
LaTeX Font Info: Try loading font information for U+pzd on input
line 62.
(c:\progra~1\miktex\tex\latex\psnfss\upzd.fd
File: upzd.fd 2000/01/12 PSNFSS-v8.1 font definitions for U/pzd.
)
LaTeX Font Info: Try loading font information for U+psy on input
line 63.
(c:\progra~1\miktex\tex\latex\psnfss\upsy.fd
File: upsy.fd 2000/01/12 PSNFSS-v8.1 font definitions for U/psy.
))
\Fld@listcount=\count93
\@outlinefile=\write3
) (thumbpdf.sty
Package: thumbpdf 2001/01/12 v2.8 Inclusion of thumbnails (HO)
\c@thumb=\count94
(my.tpt))
(jeffe.sty (c:\progra~1\miktex\tex\latex\misc\fullpage.sty
Style Option FULLPAGE Version 2 as of 15 Dec 1988
) (c:\progra~1\miktex\tex\latex\base\latexsym.sty
Package: latexsym 1998/08/17 v2.2e Standard LaTeX package (lasy
symbols)
\symlasy=\mathgroup4
LaTeX Font Info: Overwriting symbol font `lasy' in version `bold'
(Font) U/lasy/m/n --> U/lasy/b/n on input line 42.
)
(c:\progra~1\miktex\tex\latex\amsmath\amsmath.sty
Package: amsmath 2000/07/18 v2.13 AMS math features
\@mathmargin=\skip43
For additional information on amsmath, use the `?' option.
(c:\progra~1\miktex\tex\latex\amsmath\amstext.sty
Package: amstext 2000/06/29 v2.01
(c:\progra~1\miktex\tex\latex\amsmath\amsgen.sty
File: amsgen.sty 1999/11/30 v2.0
\@emptytoks=\toks17
\ex@=\dimen108
))
(c:\progra~1\miktex\tex\latex\amsmath\amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d
\pmbraise@=\dimen109
)
(c:\progra~1\miktex\tex\latex\amsmath\amsopn.sty
Package: amsopn 1999/12/14 v2.01 operator names
)
\inf@bad=\count95
LaTeX Info: Redefining \frac on input line 211.
\uproot@=\count96
\leftroot@=\count97
LaTeX Info: Redefining \overline on input line 307.
\classnum@=\count98
\DOTSCASE@=\count99
LaTeX Info: Redefining \ldots on input line 379.
LaTeX Info: Redefining \dots on input line 382.
LaTeX Info: Redefining \cdots on input line 467.
\Mathstrutbox@=\box26
\strutbox@=\box27
\big@size=\dimen110
LaTeX Font Info: Redeclaring font encoding OML on input line 567.
LaTeX Font Info: Redeclaring font encoding OMS on input line 568.
\macc@depth=\count100
\c@MaxMatrixCols=\count101
\dotsspace@=\muskip10
\c@parentequation=\count102
\dspbrk@lvl=\count103
\tag@help=\toks18
\row@=\count104
\column@=\count105
\maxfields@=\count106
\andhelp@=\toks19
\eqnshift@=\dimen111
\alignsep@=\dimen112
\tagshift@=\dimen113
\tagwidth@=\dimen114
\totwidth@=\dimen115
\lineht@=\dimen116
\@envbody=\toks20
\multlinegap=\skip44
\multlinetaggap=\skip45
\mathdisplay@stack=\toks21
LaTeX Info: Redefining \[ on input line 2666.
LaTeX Info: Redefining \] on input line 2667.
)
(c:\progra~1\miktex\tex\latex\amsfonts\amssymb.sty
Package: amssymb 1996/11/03 v2.2b
(c:\progra~1\miktex\tex\latex\amsfonts\amsfonts.sty
Package: amsfonts 1997/09/17 v2.2e
\symAMSa=\mathgroup5
\symAMSb=\mathgroup6
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version
`bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 133.
))
(c:\progra~1\miktex\tex\latex\base\textcomp.sty
Package: textcomp 2001/06/05 v1.94 Standard LaTeX package
(c:\progra~1\miktex\tex\latex\base\ts1enc.def
File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
))
\timehh=\count107
\timemm=\count108
\mdYY=\count109
) (jeffeproc.sty
Package: jeffeproc
\copyrightlength=\skip46
) (algorithm.sty
Package: algorithm
Document Style `algorithm' - floating environment
(c:\progra~1\miktex\tex\latex\float\float.sty
Package: float 2001/08/17 v1.3c Float enhancements (AL)
\c@float@type=\count110
\float@exts=\toks22
\float@box=\box28
\@float@everytoks=\toks23
\@floatcapt=\box29
)
(c:\progra~1\miktex\tex\latex\base\ifthen.sty
Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
)
\@float@every@algorithm=\toks24
\c@algorithm=\count111
) (algorithmic.sty
Package: algorithmic
Document Style `algorithmic' - environment
\c@ALC@line=\count112
\c@ALC@rem=\count113
\ALC@tlm=\skip47
) (c:\progra~1\miktex\tex\latex\epigraph\epigraph.sty
Package: epigraph 2000/01/16 v1.4 typesetting epigraphs
\beforeepigraphskip=\skip48
\afterepigraphskip=\skip49
\epigraphwidth=\skip50
\epigraphrule=\skip51
)
(c:\progra~1\miktex\tex\latex\tools\tabularx.sty
Package: tabularx 1999/01/07 v2.07 `tabularx' package (DPC)
(c:\progra~1\miktex\tex\latex\tools\array.sty
Package: array 1998/05/13 v2.3m Tabular extension package (FMi)
\col@sep=\dimen117
\extrarowheight=\dimen118
\NC@list=\toks25
\extratabsurround=\skip52
\backup@length=\skip53
)
\TX@col@width=\dimen119
\TX@old@table=\dimen120
\TX@old@col=\dimen121
\TX@target=\dimen122
\TX@delta=\dimen123
\TX@cols=\count114
\TX@ftn=\toks26
)
(c:\progra~1\miktex\tex\latex\tools\multicol.sty
Package: multicol 2000/07/10 v1.5z multicolumn formatting (FMi)
\c@tracingmulticols=\count115
Package multicol Warning: May not work with the twocolumn option on
input line
132.
\mult@box=\box30
\multicol@leftmargin=\dimen124
\c@unbalance=\count116
\c@collectmore=\count117
\doublecol@number=\count118
\multicoltolerance=\count119
\multicolpretolerance=\count120
\full@width=\dimen125
\page@free=\dimen126
\premulticols=\dimen127
\postmulticols=\dimen128
\multicolsep=\skip54
\multicolbaselineskip=\skip55
\partial@page=\box31
\last@line=\box32
\mult@rightbox=\box33
\mult@grightbox=\box34
\mult@gfirstbox=\box35
\mult@firstbox=\box36
\@tempa=\box37
\@tempa=\box38
\@tempa=\box39
\@tempa=\box40
\@tempa=\box41
\@tempa=\box42
\@tempa=\box43
\@tempa=\box44
\@tempa=\box45
\@tempa=\box46
\@tempa=\box47
\@tempa=\box48
\@tempa=\box49
\@tempa=\box50
\@tempa=\box51
\@tempa=\box52
\@tempa=\box53
\c@columnbadness=\count121
\c@finalcolumnbadness=\count122
\last@try=\dimen129
\multicolovershoot=\dimen130
\multicolundershoot=\dimen131
\mult@nat@firstbox=\box54
\colbreak@box=\box55
) (c:\progra~1\miktex\tex\latex\tools\dcolumn.sty
Package: dcolumn 2001/05/28 v1.06 decimal alignment package (DPC)
)
(c:\progra~1\miktex\tex\latex\amsfonts\eufrak.sty
Package eufrak Warning: The eufrak package is redundant if the
amsfonts package
is used on input line 49.
) (c:\progra~1\miktex\tex\latex\amsfonts\euscript.sty
Package: euscript 1995/01/06 v2.2 Euler Script fonts
LaTeX Font Info: Overwriting math alphabet `\EuScript' in version
`bold'
(Font) U/eus/m/n --> U/eus/b/n on input line 47.
)
(c:\progra~1\miktex\tex\latex\pxfonts\pxfonts.sty
Package: pxfonts 2000/12/14 v1.0
LaTeX Font Info: Redeclaring symbol font `operators' on input line
14.
LaTeX Font Info: Overwriting symbol font `operators' in version
`normal'
(Font) OT1/cmr/m/n --> OT1/pxr/m/n on input line 14.
LaTeX Font Info: Overwriting symbol font `operators' in version
`bold'
(Font) OT1/cmr/bx/n --> OT1/pxr/m/n on input line 14.
LaTeX Font Info: Overwriting symbol font `operators' in version
`bold'
(Font) OT1/pxr/m/n --> OT1/pxr/bx/n on input line 15.
\symitalic=\mathgroup7
LaTeX Font Info: Overwriting symbol font `italic' in version `bold'
(Font) OT1/pxr/m/it --> OT1/pxr/bx/it on input line
19.
LaTeX Font Info: Redeclaring math alphabet \mathrm on input line
21.
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line
22.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version
`normal'
(Font) OT1/cmr/bx/n --> OT1/pxr/bx/n on input line
22.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version
`bold'
(Font) OT1/cmr/bx/n --> OT1/pxr/bx/n on input line
22.
LaTeX Font Info: Redeclaring math alphabet \mathit on input line
23.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version
`normal'
(Font) OT1/cmr/m/it --> OT1/pxr/m/it on input line
23.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version
`bold'
(Font) OT1/cmr/bx/it --> OT1/pxr/m/it on input line
23.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version
`bold'
(Font) OT1/pxr/m/it --> OT1/pxr/bx/it on input line
24.
LaTeX Font Info: Redeclaring math alphabet \mathsf on input line
33.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version
`normal'
(Font) OT1/cmss/m/n --> OT1/pxss/m/n on input line
33.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version
`bold'
(Font) OT1/cmss/bx/n --> OT1/pxss/m/n on input line
33.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version
`bold'
(Font) OT1/pxss/m/n --> OT1/pxss/b/n on input line
34.
LaTeX Font Info: Redeclaring math alphabet \mathtt on input line
43.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version
`normal'
(Font) OT1/cmtt/m/n --> OT1/pxtt/m/n on input line
43.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version
`bold'
(Font) OT1/cmtt/m/n --> OT1/pxtt/m/n on input line
43.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version
`bold'
(Font) OT1/pxtt/m/n --> OT1/pxtt/b/n on input line
44.
LaTeX Font Info: Redeclaring symbol font `letters' on input line
51.
LaTeX Font Info: Overwriting symbol font `letters' in version
`normal'
(Font) OML/cmm/m/it --> OML/pxmi/m/it on input line
51.
LaTeX Font Info: Overwriting symbol font `letters' in version
`bold'
(Font) OML/cmm/b/it --> OML/pxmi/m/it on input line
51.
LaTeX Font Info: Overwriting symbol font `letters' in version
`bold'
(Font) OML/pxmi/m/it --> OML/pxmi/bx/it on input line
52.
\symlettersA=\mathgroup8
LaTeX Font Info: Overwriting symbol font `lettersA' in version
`bold'
(Font) U/pxmia/m/it --> U/pxmia/bx/it on input line
60.
LaTeX Font Info: Redeclaring math alphabet \mathfrak on input line
63.
LaTeX Font Info: Redeclaring symbol font `symbols' on input line
70.
LaTeX Font Info: Overwriting symbol font `symbols' in version
`normal'
(Font) OMS/cmsy/m/n --> OMS/pxsy/m/n on input line
70.
LaTeX Font Info: Overwriting symbol font `symbols' in version
`bold'
(Font) OMS/cmsy/b/n --> OMS/pxsy/m/n on input line
70.
LaTeX Font Info: Overwriting symbol font `symbols' in version
`bold'
(Font) OMS/pxsy/m/n --> OMS/pxsy/bx/n on input line
71.
LaTeX Font Info: Redeclaring symbol font `AMSa' on input line 86.
LaTeX Font Info: Overwriting symbol font `AMSa' in version `normal'
(Font) U/msa/m/n --> U/pxsya/m/n on input line 86.
LaTeX Font Info: Overwriting symbol font `AMSa' in version `bold'
(Font) U/msa/m/n --> U/pxsya/m/n on input line 86.
LaTeX Font Info: Overwriting symbol font `AMSa' in version `bold'
(Font) U/pxsya/m/n --> U/pxsya/bx/n on input line 87.
LaTeX Font Info: Redeclaring symbol font `AMSb' on input line 95.
LaTeX Font Info: Overwriting symbol font `AMSb' in version `normal'
(Font) U/msb/m/n --> U/pxsyb/m/n on input line 95.
LaTeX Font Info: Overwriting symbol font `AMSb' in version `bold'
(Font) U/msb/m/n --> U/pxsyb/m/n on input line 95.
LaTeX Font Info: Overwriting symbol font `AMSb' in version `bold'
(Font) U/pxsyb/m/n --> U/pxsyb/bx/n on input line 96.
LaTeX Font Info: Redeclaring math alphabet \mathbb on input line
99.
\symsymbolsC=\mathgroup9
LaTeX Font Info: Overwriting symbol font `symbolsC' in version
`bold'
(Font) U/pxsyc/m/n --> U/pxsyc/bx/n on input line
106.
LaTeX Font Info: Redeclaring symbol font `largesymbols' on input
line 113.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version
`normal'
(Font) OMX/cmex/m/n --> OMX/pxex/m/n on input line
113.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version
`bold'
(Font) OMX/cmex/m/n --> OMX/pxex/m/n on input line
113.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version
`bold'
(Font) OMX/pxex/m/n --> OMX/pxex/bx/n on input line
114.
\symlargesymbolsA=\mathgroup10
LaTeX Font Info: Overwriting symbol font `largesymbolsA' in version
`bold'
(Font) U/pxexa/m/n --> U/pxexa/bx/n on input line
122.
LaTeX Info: Redefining \not on input line 990.
)
(c:\progra~1\miktex\tex\latex\marvosym\marvosym.sty
Package: marvosym 2000/05/01 v2.0 Martin Vogel's Symbols font
definitions
)
(c:\progra~1\miktex\tex\latex\tools\ftnright.sty
Package: ftnright 2000/04/14 v1.1e footnote layout package (FMi)
\rcol@footinsskip=\skip56
\ftn@amount=\dimen132
)
(c:\progra~1\miktex\tex\latex\tools\theorem.sty
Package: theorem 1995/11/23 v2.2c Theorem extension package (FMi)
\theorem@style=\toks27
\theorem@bodyfont=\toks28
\theorempreskipamount=\skip57
\theorempostskipamount=\skip58
(c:\progra~1\miktex\tex\latex\tools\thp.sty
File: thp.sty 1995/11/23 v2.2c Theorem extension package (FMi)
))
LaTeX Font Info: Try loading font information for OT1+pxr on input
line 121.
(c:\progra~1\miktex\tex\latex\pxfonts\ot1pxr.fd
File: ot1pxr.fd 2000/12/14 v1.0
)
\c@theorem=\count123
\c@conjecture=\count124
\c@claim=\count125
\c@property=\count126
\c@invariant=\count127
\c@proposition=\count128
\c@open=\count129
(fancyheadings.sty
\headrulewidth=\dimen133
\footrulewidth=\dimen134
\plainheadrulewidth=\dimen135
\plainfootrulewidth=\dimen136
\headwidth=\dimen137
)
LaTeX Warning: Unused global option(s):
[a4,amsmath,amssymb,siggraph].
(my.aux)
LaTeX Font Info: Checking defaults for OML/pxmi/m/it on input line
253.
LaTeX Font Info: Try loading font information for OML+pxmi on input
line 253
.
(c:\progra~1\miktex\tex\latex\pxfonts\omlpxmi.fd
File: omlpxmi.fd 2000/12/14 v1.0
)
LaTeX Font Info: ... okay on input line 253.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line
253.
LaTeX Font Info: ... okay on input line 253.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line
253.
LaTeX Font Info: ... okay on input line 253.
LaTeX Font Info: Checking defaults for OMS/pxsy/m/n on input line
253.
LaTeX Font Info: Try loading font information for OMS+pxsy on input
line 253
.
(c:\progra~1\miktex\tex\latex\pxfonts\omspxsy.fd
File: omspxsy.fd 2000/12/14 v1.0
)
LaTeX Font Info: ... okay on input line 253.
LaTeX Font Info: Checking defaults for OMX/pxex/m/n on input line
253.
LaTeX Font Info: Try loading font information for OMX+pxex on input
line 253
.
(c:\progra~1\miktex\tex\latex\pxfonts\omxpxex.fd
File: omxpxex.fd 2000/12/14 v1.0
)
LaTeX Font Info: ... okay on input line 253.
LaTeX Font Info: Checking defaults for U/pxexa/m/n on input line
253.
LaTeX Font Info: Try loading font information for U+pxexa on input
line 253.
(c:\progra~1\miktex\tex\latex\pxfonts\upxexa.fd
File: upxexa.fd 2000/12/14 v1.0
)
LaTeX Font Info: ... okay on input line 253.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line
253.
LaTeX Font Info: ... okay on input line 253.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line
253.
LaTeX Font Info: Try loading font information for TS1+cmr on input
line 253.
(c:\progra~1\miktex\tex\latex\base\ts1cmr.fd
File: ts1cmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
)
LaTeX Font Info: ... okay on input line 253.
(c:\progra~1\miktex\tex\context\base\supp-pdf.tex
(c:\progra~1\miktex\tex\context\base\supp-mis.tex
loading : Context Support Macros / Missing
\protectiondepth=\count130
\scratchcounter=\count131
\scratchtoks=\toks29
\scratchdimen=\dimen138
\scratchskip=\skip59
\scratchmuskip=\muskip11
\scratchbox=\box56
\scratchread=\read1
\scratchwrite=\write4
\zeropoint=\dimen139
\nextbox=\box57
\nextdepth=\dimen140
\everyline=\toks30
\!!counta=\count132
\!!countb=\count133
\recursecounter=\count134
)
loading : Context Support Macros / PDF
\nofMPsegments=\count135
\nofMParguments=\count136
\everyMPtoPDFconversion=\toks31
)
Package hyperref Info: Link coloring ON on input line 253.
(c:\progra~1\miktex\tex\latex\hyperref\nameref.sty
Package: nameref 2001/01/27 v2.19 Cross-referencing by name of section
\c@section@level=\count137
)
LaTeX Info: Redefining \ref on input line 253.
LaTeX Info: Redefining \pageref on input line 253.
(my.out) (my.out)
pdftex: define anchor at line 253: Doc-Start
LaTeX Font Info: Try loading font information for U+lasy on input
line 255.
(c:\progra~1\miktex\tex\latex\base\ulasy.fd
File: ulasy.fd 1998/08/17 v2.2e LaTeX symbol font definitions
)
LaTeX Font Info: Try loading font information for U+pxsya on input
line 255.
(c:\progra~1\miktex\tex\latex\pxfonts\upxsya.fd
File: upxsya.fd 2000/12/14 v1.0
)
LaTeX Font Info: Try loading font information for U+pxsyb on input
line 255.
(c:\progra~1\miktex\tex\latex\pxfonts\upxsyb.fd
File: utxsyb.fd 2000/12/14 v1.0
)
LaTeX Font Info: Try loading font information for U+pxmia on input
line 255.
(c:\progra~1\miktex\tex\latex\pxfonts\upxmia.fd
File: upxmia.fd 2000/12/14 v1.0
)
LaTeX Font Info: Try loading font information for U+pxsyc on input
line 255.
(c:\progra~1\miktex\tex\latex\pxfonts\upxsyc.fd
File: upxsyc.fd 2000/12/14 v1.0
)
LaTeX Font Info: Try loading font information for OT1+pxtt on input
line 255
.
(c:\progra~1\miktex\tex\latex\pxfonts\ot1pxtt.fd
File: ot1pxtt.fd 2000/12/14 v1.0
)
<logokr.pdf 903.375pt, 522.95375pt, image 17>
File: logokr.pdf Graphic file (type pdf)
<use logokr.pdf>
LaTeX Font Info: Try loading font information for T1+ppl on input
line 261.
(c:\progra~1\miktex\tex\latex\psnfss\t1ppl.fd
File: t1ppl.fd 2000/01/12 PSNFSS-v8.1 font definitions for T1/ppl.
)
LaTeX Font Info: Try loading font information for T1+pad on input
line 263.
(c:\progra~1\miktex\tex\latex\psnfss\t1pad.fd
File: t1pad.fd 1998/11/04 Fontinst v1.800 font definitions for T1/pad.
)
pdftex: define anchor at line 263: section*.4
LaTeX Warning: Citation `AB' on page 1 undefined on input line 271.
pdftex: define anchor at line 276: section.5
pdftex: bookmark at 276: {1} {\numberline{1}Introduction}
{section.5}{1}{toc}
<hand.pdf 803.0pt, 602.25pt, image 18>
File: hand.pdf Graphic file (type pdf)
<use hand.pdf>
Overfull \hbox (19.2753pt too wide) in paragraph at lines 279--279
[]
[]
pdftex: define anchor at line 279: figure.6
pdftex: bookmark at 279: {1} {\numberline{1}{\ignorespaces xxx}}
{figure.7}{0}{
lof}
LaTeX Font Info: Try loading font information for OT1+pxss on input
line 279
.
(c:\progra~1\miktex\tex\latex\pxfonts\ot1pxss.fd
File: ot1pxss.fd 2000/12/14 v1.0
)
LaTeX Font Info: Font shape `OT1/pxss/bx/n' in size <9> not
available
(Font) Font shape `OT1/pxss/b/n' tried instead on input
line 279.
pdftex: define anchor at line 279: figure.7
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\@ifnextchar' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\@ifnextchar' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\f@encoding' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<let>-command' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\f@family' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\f@series' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\f@shape' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\font@name' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\OT1/pxr/m/n/10.95' on input line
288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\ignorespaces' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\f@shape' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\font@name' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\OT1/pxr/m/n/10.95' on input line
288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\begingroup' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\catcode' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\active' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\csname\endcsname' on input line
288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\catcode' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\active' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<let>-command' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\csname\endcsname' on input line
288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<let>-command' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\%' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\catcode' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\active' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\csname\endcsname' on input line
288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\#' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\catcode' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\active' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\csname\endcsname' on input line
288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<let>-command' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\csname\endcsname' on input line
288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<let>-command' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\~' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\Hy@tempa' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\f@encoding' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<let>-command' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\f@family' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\f@series' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\f@shape' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\font@name' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\OT1/pxr/m/n/10.95' on input line
288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\ignorespaces' on input line 288.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\@ifnextchar' on input line 288.
! Missing \endcsname inserted.
<to be read again>
\csname\endcsname
l.288 \end{document}
?
! Missing number, treated as zero.
<to be read again>
\Hy@toclevel
l.288 \end{document}
?
! Missing = inserted for \ifnum.
<to be read again>
\Hy@toclevel
l.288 \end{document}
?
! Missing number, treated as zero.
<to be read again>
\Hy@toclevel
l.288 \end{document}
?
! Missing number, treated as zero.
<to be read again>
\<let>-command
l.288 \end{document}
?
! Illegal unit of measure (pt inserted).
<to be read again>
\<let>-command
l.288 \end{document}
?
! Missing = inserted for \ifdim.
<to be read again>
\<let>-command
l.288 \end{document}
?
! Missing number, treated as zero.
<to be read again>
\<let>-command
l.288 \end{document}
? x
No pages of output.
i note you didn't read my post (about errorcontextlines) -- or maybe
you read it and couldn't be bothered with my suggestiong. this is a
bit unfortunate, since the errors we observe seem to demand context.
however, perhaps someone more expert than i in the use of hyperref
will have his psychic antennae twitching at what you _have_ posted...
Yes I did, before I posted my last post.
Thanks for your reply,
Best,
--Elijah
So here is the new log file that includes the contexlines setting.
I still cant make any sense out of it, but maybe people here
can! Thanks for trying to help.
--Elijah
This is pdfTeX, Version 3.14159-14f-released-20000525 (MiKTeX 2.1)
(preloaded format=latex 2000.11.28) 6 NOV 2001 09:59
254.
LaTeX Font Info: Try loading font information for OML+pxmi on input
line 254
.
(c:\progra~1\miktex\tex\latex\pxfonts\omlpxmi.fd
File: omlpxmi.fd 2000/12/14 v1.0
)
LaTeX Font Info: ... okay on input line 254.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line
254.
LaTeX Font Info: ... okay on input line 254.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line
254.
LaTeX Font Info: ... okay on input line 254.
LaTeX Font Info: Checking defaults for OMS/pxsy/m/n on input line
254.
LaTeX Font Info: Try loading font information for OMS+pxsy on input
line 254
.
(c:\progra~1\miktex\tex\latex\pxfonts\omspxsy.fd
File: omspxsy.fd 2000/12/14 v1.0
)
LaTeX Font Info: ... okay on input line 254.
LaTeX Font Info: Checking defaults for OMX/pxex/m/n on input line
254.
LaTeX Font Info: Try loading font information for OMX+pxex on input
line 254
.
(c:\progra~1\miktex\tex\latex\pxfonts\omxpxex.fd
File: omxpxex.fd 2000/12/14 v1.0
)
LaTeX Font Info: ... okay on input line 254.
LaTeX Font Info: Checking defaults for U/pxexa/m/n on input line
254.
LaTeX Font Info: Try loading font information for U+pxexa on input
line 254.
(c:\progra~1\miktex\tex\latex\pxfonts\upxexa.fd
File: upxexa.fd 2000/12/14 v1.0
)
LaTeX Font Info: ... okay on input line 254.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line
254.
LaTeX Font Info: ... okay on input line 254.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line
254.
LaTeX Font Info: Try loading font information for TS1+cmr on input
line 254.
(c:\progra~1\miktex\tex\latex\base\ts1cmr.fd
File: ts1cmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
)
LaTeX Font Info: ... okay on input line 254.
Package hyperref Info: Link coloring ON on input line 254.
(c:\progra~1\miktex\tex\latex\hyperref\nameref.sty
Package: nameref 2001/01/27 v2.19 Cross-referencing by name of section
\c@section@level=\count137
)
LaTeX Info: Redefining \ref on input line 254.
LaTeX Info: Redefining \pageref on input line 254.
(my.out) (my.out)
pdftex: define anchor at line 254: Doc-Start
LaTeX Font Info: Try loading font information for U+lasy on input
line 256.
(c:\progra~1\miktex\tex\latex\base\ulasy.fd
File: ulasy.fd 1998/08/17 v2.2e LaTeX symbol font definitions
)
LaTeX Font Info: Try loading font information for U+pxsya on input
line 256.
(c:\progra~1\miktex\tex\latex\pxfonts\upxsya.fd
File: upxsya.fd 2000/12/14 v1.0
)
LaTeX Font Info: Try loading font information for U+pxsyb on input
line 256.
(c:\progra~1\miktex\tex\latex\pxfonts\upxsyb.fd
File: utxsyb.fd 2000/12/14 v1.0
)
LaTeX Font Info: Try loading font information for U+pxmia on input
line 256.
(c:\progra~1\miktex\tex\latex\pxfonts\upxmia.fd
File: upxmia.fd 2000/12/14 v1.0
)
LaTeX Font Info: Try loading font information for U+pxsyc on input
line 256.
(c:\progra~1\miktex\tex\latex\pxfonts\upxsyc.fd
File: upxsyc.fd 2000/12/14 v1.0
)
LaTeX Font Info: Try loading font information for OT1+pxtt on input
line 256
.
(c:\progra~1\miktex\tex\latex\pxfonts\ot1pxtt.fd
File: ot1pxtt.fd 2000/12/14 v1.0
)
<logokr.pdf 903.375pt, 522.95375pt, image 17>
File: logokr.pdf Graphic file (type pdf)
<use logokr.pdf>
LaTeX Font Info: Try loading font information for T1+ppl on input
line 262.
(c:\progra~1\miktex\tex\latex\psnfss\t1ppl.fd
File: t1ppl.fd 2000/01/12 PSNFSS-v8.1 font definitions for T1/ppl.
)
LaTeX Font Info: Try loading font information for T1+pad on input
line 264.
(c:\progra~1\miktex\tex\latex\psnfss\t1pad.fd
File: t1pad.fd 1998/11/04 Fontinst v1.800 font definitions for T1/pad.
)
pdftex: define anchor at line 264: section*.4
LaTeX Warning: Citation `AB' on page 1 undefined on input line 272.
pdftex: define anchor at line 277: section.5
pdftex: bookmark at 277: {1} {\numberline{1}Introduction}
{section.5}{1}{toc}
<hand.pdf 803.0pt, 602.25pt, image 18>
File: hand.pdf Graphic file (type pdf)
<use hand.pdf>
Overfull \hbox (19.2753pt too wide) in paragraph at lines 280--280
[]
[]
pdftex: define anchor at line 280: figure.6
pdftex: bookmark at 280: {1} {\numberline{1}{\ignorespaces xxx}}
{figure.7}{0}{
lof}
LaTeX Font Info: Try loading font information for OT1+pxss on input
line 280
.
(c:\progra~1\miktex\tex\latex\pxfonts\ot1pxss.fd
File: ot1pxss.fd 2000/12/14 v1.0
)
LaTeX Font Info: Font shape `OT1/pxss/bx/n' in size <9> not
available
(Font) Font shape `OT1/pxss/b/n' tried instead on input
line 280.
pdftex: define anchor at line 280: figure.7
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\@ifnextchar' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\@ifnextchar' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\f@encoding' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<let>-command' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\f@family' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\f@series' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\f@shape' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\font@name' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\OT1/pxr/m/n/10.95' on input line
289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\ignorespaces' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\f@shape' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\font@name' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\OT1/pxr/m/n/10.95' on input line
289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\begingroup' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\catcode' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\active' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\csname\endcsname' on input line
289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\catcode' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\active' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<let>-command' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\csname\endcsname' on input line
289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<let>-command' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\%' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\catcode' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\active' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\csname\endcsname' on input line
289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\#' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\catcode' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\active' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\csname\endcsname' on input line
289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<let>-command' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\csname\endcsname' on input line
289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<let>-command' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\~' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\Hy@tempa' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\f@encoding' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<let>-command' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\f@family' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\f@series' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\f@shape' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\font@name' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\OT1/pxr/m/n/10.95' on input line
289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\ignorespaces' on input line 289.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\@ifnextchar' on input line 289.
! Missing \endcsname inserted.
<to be read again>
\csname\endcsname
\@stpelt ...global \csname c@#1\endcsname
\z@
\stepcounter ...et \@elt \@stpelt \csname
cl@#1\endcsname \endgroup
\fi
\H@refstepcounter #1->\stepcounter {#1}
\protected@edef
\@currentlabel...
\refstepcounter #1->\H@refstepcounter {#1}
\edef \This@name {#1}\ifx
\...
\H@old@sect ... \else \refstepcounter {#1}
\protected@edef \@svsec
{\@...
\NR@sect ...{#2}{#3}{#4}{#5}{#6}[{#7}]{#8}
\ifnum #2>\c@secnumdepth
\H...
\Hy@author ...g}}}\\ \\ \includegraphics [
scale=.1]{logokr} \\
\pdfstringdef ...LetCommand \Hy@temp #1{#2
}\endgroup \ifx #1\@empty
\...
<argument> ...csname Hy@author\endcsname }
\fi
\@secondoftwo #1#2->#2
\PDF@FinishDoc ->\Hy@UseMaketitleInfos
\pdfinfo {/Author
(\@pdfauthor...
\@hyperfixhead ...ty \else \PDF@FinishDoc
\gdef \PDF@FinishDoc {}\fi
\Hy@begindvi ...pageanchor \@hyperfixhead
\fi \HyPL@EveryPage
\@begindvi ... \@begindvibox \Hy@begindvi
\global \let \@begindvi
\Hy...
\@outputpage ...eskiplimit \z@ \@begindvi
\vskip \topmargin
\moverigh...
\@outputdblcol ...edblfloats \@outputpage
\begingroup
\@dblfloatplace...
\@opcol ->\if@twocolumn \@outputdblcol
\else \@outputpage \fi
\global...
\@doclearpage ...\vfil }\@makecol \@opcol
\clearpage \fi
\@specialoutput ... >-\@Mii \@doclearpage
\else \ifnum
\outputpenalty...
<output> ...penalty <-\@M \@specialoutput
\else \@makecol \@opcol
\@s...
\clearpage ...ne {}\vbox {}\penalty -\@Mi
\enddocument ...kend {document}\clearpage
\begingroup \if@filesw
\imm...
\end #1->\csname end#1\endcsname
\@checkend {#1}\expandafter
\endgrou...
l.289 \end{document}
> however, perhaps someone more expert than i in the use of hyperref
> will have his psychic antennae twitching at what you _have_ posted...
The .log file is very useless. A minimal test file with few lines
does not waste thousands of lines and will be of more help.
Yours sincerely
Heiko <ober...@uni-freiburg.de>
A missing brace or a syntax error are common causes for
\end{document} to spew errors. This seems especially likely in view
of the preceeding hyperref warnings. The content of those warnings
does suggest they _might_ be some infelicitous side effect of the
pxfonts package (assuming that's the package that defines the pxr
family).
That's as far as my psychic antenna points. I second Heiko's
suggestion: post a minimal file with as many packages removed and
as few lines as possible that still shows the error.
Dan Luecking
Thanks to everyone who tried to help,
--Elijah
geom...@hotmail.com (Elijah Bailey) wrote in message news:<e008fef8.0111...@posting.google.com>...