Post by Ulrike FischerPost by Martin B.We have a custom document class that always generates some font size
+ LaTeX Font Warning: Font shape `U/msa/m/n' in size<40> not available
+ (Font) size<24.88> substituted on input line 41.
As far as I understand I can safely ignore these warning, but how to get
rid of them?
Well 24.88pt instead of 40pt is quite a lot. I wouldn't ignore it.
Sorry. I should have added that the title in question is actually
generated in 40pt. If I change the 40pt in the snippet I provided to
30pt it gets generated as 30pt / 60pt as 60pt -- if I change it to
24.88pt the warning goes away.
I should also add that I basically clueless when it comes to LaTeX
intricacies, but the person who originally created the document class is
no longer available.
Post by Ulrike FischerPost by Martin B.I have tried with \RequirePackage{fix-cm} but it doesn't seem to make
any difference.
fix-cm fix the cm font family, not the msa family.
As far as I can see no msa fontfamily is used in the document class (ptm
seems to be the only one selected)
Post by Ulrike FischerSnippets are evil. In general the vital informations are missing.
Find the doc class and the MikTeX output below:
Thanks for any further pointers!
- Martin
++++++++++
Test Document:
++++++++++
%&latex
\documentclass[ngerman]{tornadodoku}
\InitClass
\usepackage{textcomp}
\usepackage{eqnarray}
\usepackage{natbib}
\usepackage[amssymb]{SIunits}
\usepackage{sistyle}
\usepackage{tabularx}
\usepackage{listings}
\usepackage{verbatim}
\usepackage{pdfpages}
\definecolor{lbcolor}{rgb}{0.95,0.95,0.95}
\lstset{breaklines=true,
breakautoindent=true,
postbreak=\space,
tabsize=2,
basicstyle=\ttfamily\scriptsize,
extendedchars=true,
backgroundcolor=\color{lbcolor},
}
\definecolor{grau}{gray}{0.85}
\Title{Our Title}
\Type{Our Type}
\Subsystem{The Subsystem}
\Revision{1.0}
\LastChangedMonth{August}
\LastChangedYear{2010}
\CopyrightStart{2008--}
\author{Me}
\date{\today}
\begin{document}
THIS IS THE DOCUMENT TEXT ...
\end{document}
++++++++++
++++++++++
The full document class
++++++++++
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{tornadodoku}[2007/07/27 Tornado Doku]
\newcommand{\headlinecolor}{\normalcolor}
%--------------------------------------------------------------------
\DeclareOption*{\PassOptionsToClass{\CurrentOption}{scrbook}}
\ProcessOptions\relax
%--------------------------------------------------------------------
\LoadClass[bibtotoc,twoside,fontsize=12pt,paper=a4,openright,cleardoublepage=empty,smallheadings]{scrbook}
\RequirePackage{ifthen}
\RequirePackage{multirow}
\RequirePackage{fancyhdr}
% wird meiner meinung nicht gebraucht!
%\RequirePackage{scrpage2} % for headers and footers in koma classes
like scrbook
\RequirePackage{eso-pic} % for the image on the title page
\RequirePackage{graphicx} % for all other images
\RequirePackage{longtable} % for the table containing contact info of
\RequirePackage{babel}
\RequirePackage[latin10]{inputenc} % for input encoding
\RequirePackage[T1]{fontenc}
\RequirePackage{lmodern}
\RequirePackage{amsmath}
\RequirePackage{amsfonts}
\RequirePackage{tocloft} % for formatting the table of contents
\RequirePackage{geometry} % for setting page preferences
\RequirePackage[overload]{textcase} % for using the MakeTextUppercase
commands
\RequirePackage{KSLanguages}
\RequirePackage{KSMakros}
\RequirePackage{makeidx}
\makeindex
\RequirePackage{array}
\RequirePackage{color}
\RequirePackage{xstring}
%--------------------------------------------------------------------
% format the table of contents
%\renewcommand{\cftsecfont}{\scshape} % sections are written in sc shape
\renewcommand{\cftchappresnum}{\underline} % chapter numbers are underlined
\renewcommand{\cftchapaftersnum}{\\\hspace{4mm}\rule[-0.5mm]{0.96\textwidth}{.4pt}}
% chapter entries are underlined as well
\renewcommand{\cftchapafterpnum}{\vspace*{5mm}}
%\renewcommand{\cftsubsecfont}{\slshape} % subsection titles are written
in sl shape
\renewcommand{\cftsecdotsep}{\cftnodots} % display dots between the
section title and the page number
\renewcommand{\cftsubsecdotsep}{\cftnodots} % no dots for subsections
\renewcommand{\cftsubsubsecdotsep}{\cftnodots} % no dots for subsubsections
\renewcommand{\cftparadotsep}{\cftnodots} % no dots for parqagraphs
\renewcommand{\cftsubparadotsep}{\cftnodots} % no dots for subparqagraphs
% 2. parameter ist indent; 3. Parameter ist num-width! siehe tocloft-doku
\cftsetindents{chapter}{0em}{1.5em} % chapter titles are not indented
\cftsetindents{section}{1em}{2.5em} % section titles are indented 1em
\cftsetindents{subsection}{2em}{3.5em} % subsection titles are indented 3em
\cftsetindents{subsubsection}{3em}{4.5em} % subsubsection titles are
indented 3em
\cftsetindents{paragraph}{4em}{5em} % paragraph titles are indented 3em
\cftsetindents{subparagraph}{5em}{5.5em} % subparagraph titles are
indented 3em
%---------------------------------------------------------------------
%general layout
\setcounter{secnumdepth}{6} % sections are numbered to level 6 (1.1.1.1.1)
\setcounter{tocdepth}{6} % sections appear in the toc to level 6
\geometry{a4paper,left=25mm,right=25mm, top=4cm, bottom=4cm} % the
layout of the paper
\setlength{\parindent}{0pt}
\setlength{\parskip}\medskipamount % besser als explizite Angabe in pt
\newcommand{\Revision}[1]{\newcommand{\tornadorevision}{#1}}
\newcommand{\LastChangedMonth}[1]{\newcommand{\lastchangedmonth}{#1}}
\newcommand{\LastChangedYear}[1]{\newcommand{\lastchangedyear}{#1}}
\newcommand{\CopyrightStart}[1]{\StrBefore{#1--}{--}[\copyrightstart]}
\newcommand{\type}{\ }
\title{\ }\newcommand{\thetitle}{\ }
\newcommand{\subsystem}{\ }
\newcommand{\shortsubsystem}{\ }
\newcommand{\Type}[1]{
\ifthenelse{\equal{#1}{}}{
\renewcommand{\type}{\ }
}{
\renewcommand{\type}{#1}
}
}
\newcommand{\Title}[1]{
\ifthenelse{\equal{#1}{}}{
\title{\ }\renewcommand{\thetitle}{\ }
}{
\title{#1}\renewcommand{\thetitle}{#1}
}
}
\newcommand{\ShortSubsystem}[1]{
\ifthenelse{\equal{#1}{}}{
\renewcommand{\shortsubsystem}{\ }
}{
\renewcommand{\shortsubsystem}{#1}
}
}
\newcommand{\Subsystem}[1]{
\ifthenelse{\equal{#1}{}}{
\renewcommand{\subsystem}{\ }
\renewcommand{\shortsubsystem}{\ }
}{
\renewcommand{\subsystem}{#1}
\renewcommand{\shortsubsystem}{#1}
}
}
\makeatletter
\def\cleardoublepage{\clearpage\***@twoside \ifodd\***@page\else
\hbox{}
\thispagestyle{empty}
\newpage
\***@twocolumn\hbox{}\newpage\fi\fi\fi}
\makeatother
%\renewcommand*{\***@chapter}[2]{%
% \ifnum \***@tocdepth >\***@ne
% \addpenalty{-\@highpenalty}%
% \vskip \cftbeforechapskip
% {\leftskip \cftchapindent\relax
% \rightskip \@tocrmarg
% \parfillskip -\rightskip
% \parindent \cftchapindent\relax\@afterindenttrue
% \interlinepenalty\@M
% \leavevmode
% \@tempdima \cftchapnumwidth\relax
% \let\@cftbsnum \cftchappresnum
% \let\@cftasnum \cftchapaftersnum
% \let\@cftasnumb \cftchapaftersnumb
% \advance\leftskip \@tempdima \null\nobreak\hskip -\leftskip
% {\cftchapfont {\uppercase{#1}}}\nobreak
% \cftchapfillnum{#2}}
% \fi}
\makeatletter
\renewcommand{\maketitle}{%
\begin{titlepage}
\pagestyle{empty}
\thispagestyle{empty}
\addtolength{\textheight}{20mm}
\setlength{\footskip}{0mm}
\IfStrEq{\lastchangedyear}{\copyrightstart}{\newcommand{\copyrightyears}{\copyrightstart}}{\newcommand{\copyrightyears}{\copyrightstart--\lastchangedyear}}
\InPDF{
\addtolength{\headheight}{35mm}
\AddToShipoutPicture*{\put(0,0){\includegraphics[height=297mm]{titlelogo.jpeg}}}
\ \vfill
\begin{minipage}[b]{\textwidth}
\ \vfill
\begin{longtable}[b]{ll}
\hspace{0.35\textwidth}\ &\vspace{1cm}\ \\
&\fontfamily{ptm}\fontseries{bx}\fontsize{40pt}{50pt}\selectfont\begin{minipage}{0.5\textwidth}\begin{flushleft}\@title\end{flushleft}\end{minipage}\\
&\vspace{2cm}\ \\
&\fontseries{b}\fontsize{24.88pt}{35pt}\selectfont\begin{minipage}{0.5\textwidth}\begin{flushleft}\type
\\ \subsystem \end{flushleft}\end{minipage}\\
&\vspace{1cm}\ \\
&\large Revision \tornadorevision, \lastchangedmonth \ \lastchangedyear\\
\end{longtable}
\end{minipage}
\newpage
\addtolength{\headheight}{-35mm}
%%%Contact-Page
\ %notwendig damit die table auch wirklich unten angeordnet wird!
\vfill
\begin{center}
\iflanguage{ngerman}{\input{CopyrightPage_g.tex}}{}\iflanguage{english}{\input{CopyrightPage_e.tex}}{}\\
\vspace{2cm}
\end{center}
\begin{tabular}[b]{ll}
\begin{tabular}{ll}
\includegraphics[width=0.33\textwidth]{KSEngineers.png}
\end{tabular}&\begin{tabular}{ll}
\footnotesize road & \footnotesize Tel.: 0000 \\
\footnotesize city & \footnotesize Fax.: 000 \\
\footnotesize country & \footnotesize Email: ***@y.net
\end{tabular}
\end{tabular}
\newpage
}\InHTML{
%%%Copyright-Page
\
\vfill
\begin{center}
\begin{tabular}[b]{c}
\begin{minipage}[b]{0.7\textwidth}
\begin{center}
{\Huge\@title}\\
\ \vspace{15mm}\\
{\LARGE\type}
\vspace{5mm}\\
{\huge\subsystem}
\vspace{5mm}\\
{\large Revision \tornadorevision, \lastchangedmonth \
\lastchangedyear}
\end{center}
\end{minipage}
\end{tabular}
\ \vspace{5cm}\\
\iflanguage{ngerman}{\input{CopyrightPage_g.tex}}{}\iflanguage{english}{\input{CopyrightPage_e.tex}}{}\\
\vspace{2cm}
\end{center}
\newpage
\ }
\newpage
\iflanguage{ngerman}{\input{SafetyInstructions_g.tex}}{}
\iflanguage{english}{\input{SafetyInstructions_e.tex}}{}
\addtolength{\textheight}{-20mm}
\newpage
\setcounter{page}{0}
\end{titlepage}
}
\makeatother
\InHTML{
\setcounter{secnumdepth}{-1}
}
\makeatletter
\newcommand{\InitClass}[1][]{
\ifpdfoutput{
\usepackage[pdftex,colorlinks,backref,pagebackref,hypertexnames]{hyperref}
}{
\usepackage{hyperref}
\usepackage{nameref}
}
\ifpdfoutput{
\hypersetup{pdfauthor={Kristl Seibt \& Co}}
\pdfcompresslevel=9
\definecolor{LinkColor}{rgb}{0,0,0.5}
\hypersetup{colorlinks=true,%
linkcolor=LinkColor,%
citecolor=LinkColor,%
filecolor=LinkColor,%
menucolor=LinkColor,%
% pagecolor=LinkColor,%
urlcolor=LinkColor}
}{}
\AtBeginDocument{
%bakomatex-workaround
\ifx\undefined\pdfoutput
\else
\iflanguage{ngerman}{
\hypersetup{pdfkeywords=Dokumentation}
}{}
\iflanguage{english}{
\hypersetup{pdfkeywords=Documentation}
}{}
\ifthenelse{\equal{\thetitle}{\ }}{
\hypersetup{pdftitle=}
}{
\hypersetup{pdftitle=\thetitle}
}
\ifthenelse{\equal{\type}{\ }}{
\ifthenelse{\equal{\subsystem}{\ }}{
\hypersetup{pdfsubject=}
}{
\hypersetup{pdfsubject=\subsystem}
}
}{
\ifthenelse{\equal{\subsystem}{\ }}{
\hypersetup{pdfsubject=\type}
}{
\hypersetup{pdfsubject=\type\ -\ \subsystem}
}
}
\fi
\pagestyle{fancy}
\fancyhf{}
\fancyhead[LO]{\nouppercase{\rightmark}}
\fancyhead[RE]{\nouppercase{\textnormal\leftmark}}
\fancyhead[LE,RO]{}
\fancypagestyle{plain}{
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\addtolength{\footskip}{\headheight}
\addtolength{\footskip}{\headsep}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\headheight}{0pt}
\renewcommand{\headsep}{0pt}
\fancyhf{}
\fancyfoot[LE,RO]{\thepage}
\fancyfoot[CE,CO]{\footnotesize\thetitle \ \type \ \shortsubsystem \
\tiny{Revision \tornadorevision}}
\fancyfoot[RE,LO]{\includegraphics[height=8mm]{KS.png}}
}
\fancyfoot[LE,RO]{\thepage}
\fancyfoot[CE,CO]{\footnotesize\thetitle \ \type \ \shortsubsystem \
\tiny{Revision \tornadorevision}}
\fancyfoot[RE,LO]{\includegraphics[height=8mm]{KS.png}}
\maketitle
\pagenumbering{Roman}
\InPDF{
\tableofcontents
}\newpage
\ifodd\***@page\else
\hbox{}
\thispagestyle{empty}
\newpage
\fi
\pagenumbering{arabic}
% \setcounter{page}{0}
\fancypagestyle{plain}{
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\addtolength{\footskip}{\headheight}
\addtolength{\footskip}{\headsep}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\headheight}{0pt}
\renewcommand{\headsep}{0pt}
\fancyhf{}
\fancyfoot[LE,RO]{\ifpdfoutput{\hypersetup{linkcolor=black}}{}\textnormal{\normalsize{\thepage\
/\ \pageref{LastPage}}}\ifpdfoutput{\hypersetup{linkcolor=LinkColor}}{}}
\fancyfoot[CE,CO]{\footnotesize\thetitle \ \type \ \shortsubsystem \
\tiny{Revision \tornadorevision}}
\fancyfoot[RE,LO]{\includegraphics[height=8mm]{KS.png}}
}
\fancyfoot[LE,RO]{\ifpdfoutput{\hypersetup{linkcolor=black}}{}\textnormal{\normalsize{\thepage\
/\ \pageref{LastPage}}}\ifpdfoutput{\hypersetup{linkcolor=LinkColor}}{}}
\fancyfoot[CE,CO]{\footnotesize\thetitle \ \type \ \shortsubsystem \
\tiny{Revision \tornadorevision}}
\fancyfoot[RE,LO]{\includegraphics[height=8mm]{KS.png}}
%Sollte das Inhaltsverzeichnis eine ungerade seitenanzahl haben wird
hier eine leere seite eingefügt...
\InHTML{
%keine nummerierung in der html-version
\renewcommand{\thechapter}{}
\renewcommand{\thesection}{}
\renewcommand{\thesubsection}{}
\renewcommand{\thesubsubsection}{}
\renewcommand{\theparagraph}{}
\renewcommand{\thesubparagraph}{}
\setcounter{secnumdepth}{-1}
\renewcommand{\thefigure}{\arabic{figure}}
}
}
\AtEndDocument{
\renewcommand{\indexname}{\KSIndexName}
\printindex
}
\RequirePackage{lastpage}
}
\makeatother
++++++++++
++++++++++
MikTeX output for generating the document
++++++++++
LOG FILE :
This is pdfTeX, Version 3.141592-1.40.4 (MiKTeX 2.6) (preloaded
format=latex 2010.7.22) 27 AUG 2010 14:17
entering extended mode
**Test.tex
(Test.tex
LaTeX2e <2005/12/01>
Babel <v3.8g> and hyphenation patterns for english, dumylang,
nohyphenation, ge
rman, ngerman, french, loaded.
("C:\Programme\MiKTeX 2.6\tex\latex\KS\tornadodoku.cls"
Document Class: tornadodoku 2007/07/27 Tornado Doku
("C:\Programme\MiKTeX 2.6\tex\latex\koma-script\scrbook.cls"
Document Class: scrbook 2007/03/07 v2.97a KOMA-Script document class (book)
("C:\Programme\MiKTeX 2.6\tex\latex\koma-script\scrkbase.sty"
Package: scrkbase 2007/03/07 v2.97a KOMA-Script package (basics and
keyval use)
("C:\Programme\MiKTeX 2.6\tex\latex\graphics\keyval.sty"
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
\***@toks@=\toks14
)
("C:\Programme\MiKTeX 2.6\tex\latex\koma-script\scrlfile.sty"
Package: scrlfile 2007/03/07 v2.97a KOMA-Script package (loading files)
Package scrlfile, 2007/03/07 v2.97a KOMA-Script package (loading files)
Copyright (C) Markus Kohm
))
Class scrbook Info: File `bk12.clo' used to setup font sizes on input
line 955.
("C:\Programme\MiKTeX 2.6\tex\latex\base\bk12.clo"
File: bk12.clo 2005/09/16 v1.4f Standard LaTeX file (size option)
)
("C:\Programme\MiKTeX 2.6\tex\latex\koma-script\typearea.sty"
Package: typearea 2007/03/07 v2.97a KOMA-Script package (type area)
Package typearea, 2007/03/07 v2.97a KOMA-Script package (type area)
Copyright (C) Frank Neukam, 1992-1994
Copyright (C) Markus Kohm, 1994-
\***@bcor=\skip41
\***@div=\count79
\***@hblk=\skip42
\***@vblk=\skip43
\***@temp=\skip44
Package typearea Info: These are the values describing the layout:
(typearea) DIV = 12
(typearea) BCOR = 0.0pt
(typearea) \paperwidth = 597.50793pt
(typearea) \textwidth = 448.13095pt
(typearea) DIV-departure = -6/100
(typearea) \evensidemargin = 27.31467pt
(typearea) \oddsidemargin = -22.47766pt
(typearea) \paperheight = 845.04694pt
(typearea) \textheight = 635.5pt
(typearea) \topmargin = -41.72441pt
(typearea) \headheight = 18.125pt
(typearea) \headsep = 21.75pt
(typearea) \topskip = 12.0pt
(typearea) \footskip = 50.75pt
(typearea) \baselineskip = 14.5pt
(typearea) on input line 879.
)
\***@part=\count80
\***@chapter=\count81
\***@section=\count82
\***@subsection=\count83
\***@subsubsection=\count84
\***@paragraph=\count85
\***@subparagraph=\count86
\abovecaptionskip=\skip45
\belowcaptionskip=\skip46
\***@pti@***@sid@***@x=\box26
\***@figure=\count87
\***@table=\count88
\bibindent=\dimen102
) ("C:\Programme\MiKTeX 2.6\tex\latex\base\ifthen.sty"
Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
)
("C:\Programme\MiKTeX 2.6\tex\latex\multirow\multirow.sty"
\bigstrutjot=\dimen103
)
("C:\Programme\MiKTeX 2.6\tex\latex\fancyhdr\fancyhdr.sty"
\***@headwidth=\skip47
\***@ncyO@elh=\skip48
\***@ncyO@erh=\skip49
\***@ncyO@olh=\skip50
\***@ncyO@orh=\skip51
\***@ncyO@elf=\skip52
\***@ncyO@erf=\skip53
\***@ncyO@olf=\skip54
\***@ncyO@orf=\skip55
)
("C:\Programme\MiKTeX 2.6\tex\latex\eso-pic\eso-pic.sty"
Package: eso-pic 2006/07/14 v1.1d eso-pic (RN)
("C:\Programme\MiKTeX 2.6\tex\latex\ms\everyshi.sty"
Package: everyshi 2001/05/15 v3.00 EveryShipout Package (MS)
))
("C:\Programme\MiKTeX 2.6\tex\latex\graphics\graphicx.sty"
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
("C:\Programme\MiKTeX 2.6\tex\latex\graphics\graphics.sty"
Package: graphics 2006/02/20 v1.0o Standard LaTeX Graphics (DPC,SPQR)
("C:\Programme\MiKTeX 2.6\tex\latex\graphics\trig.sty"
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
("C:\Programme\MiKTeX 2.6\tex\latex\00miktex\graphics.cfg"
File: graphics.cfg 2007/01/18 v1.5 graphics configuration of teTeX/TeXLive
)
Package graphics Info: Driver file: pdftex.def on input line 90.
("C:\Programme\MiKTeX 2.6\tex\latex\graphics\pdftex.def"
File: pdftex.def 2007/06/12 v0.04h Graphics/color for pdfTeX
\***@gobject=\count89
))
\***@req@height=\dimen104
\***@req@width=\dimen105
)
("C:\Programme\MiKTeX 2.6\tex\latex\tools\longtable.sty"
Package: longtable 2004/02/01 v4.11 Multi-page Table package (DPC)
\LTleft=\skip56
\LTright=\skip57
\LTpre=\skip58
\LTpost=\skip59
\LTchunksize=\count90
\LTcapwidth=\dimen106
\***@head=\box27
\***@firsthead=\box28
\***@foot=\box29
\***@lastfoot=\box30
\***@cols=\count91
\***@rows=\count92
\***@LT@tables=\count93
\***@LT@chunks=\count94
\***@p@ftn=\toks15
)
Class scrbook Info: longtable captions redefined on input line 33.
("C:\Programme\MiKTeX 2.6\tex\generic\babel\babel.sty"
Package: babel 2005/05/21 v3.8g The Babel package
*************************************
* Local config file bblopts.cfg used
*
("C:\Programme\MiKTeX 2.6\tex\latex\00miktex\bblopts.cfg"
File: bblopts.cfg 2006/07/31 v1.0 MiKTeX 'babel' configuration
)
("C:\Programme\MiKTeX 2.6\tex\generic\babel\ngermanb.ldf"
Language: ngermanb 2004/02/20 v2.6m new German support from the babel system
("C:\Programme\MiKTeX 2.6\tex\generic\babel\babel.def"
File: babel.def 2005/05/21 v3.8g Babel common definitions
\***@savecnt=\count95
\***@D=\dimen107
)
\***@naustrian = a dialect from \language\***@ngerman
Package babel Info: Making " an active character on input line 92.
))
("C:\Programme\MiKTeX 2.6\tex\latex\base\inputenc.sty"
Package: inputenc 2006/05/05 v1.1b Input encoding file
\***@prehook=\toks16
\***@posthook=\toks17
("C:\Programme\MiKTeX 2.6\tex\latex\base\latin10.def"
File: latin10.def 2006/05/05 v1.1b Input encoding file
))
("C:\Programme\MiKTeX 2.6\tex\latex\base\fontenc.sty"
Package: fontenc 2005/09/27 v1.99g Standard LaTeX package
("C:\Programme\MiKTeX 2.6\tex\latex\base\t1enc.def"
File: t1enc.def 2005/09/27 v1.99g Standard LaTeX file
LaTeX Font Info: Redeclaring font encoding T1 on input line 43.
))
("C:\Programme\MiKTeX 2.6\tex\latex\lm\lmodern.sty"
Package: lmodern 2007/01/14 v1.3 Latin Modern Fonts
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> OT1/lmr/m/n on input line 13.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> OML/lmm/m/it on input line 14.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> OMS/lmsy/m/n on input line 15.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 16.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 17.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> OML/lmm/b/it on input line 18.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> OMS/lmsy/b/n on input line 19.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 20.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 22.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> OT1/lmss/m/n on input line 23.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> OT1/lmr/m/it on input line 24.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 25.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 26.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> OT1/lmss/bx/n on input line 27.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> OT1/lmr/bx/it on input line 28.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 29.
)
("C:\Programme\MiKTeX 2.6\tex\latex\amsmath\amsmath.sty"
Package: amsmath 2000/07/18 v2.13 AMS math features
\@mathmargin=\skip60
For additional information on amsmath, use the `?' option.
("C:\Programme\MiKTeX 2.6\tex\latex\amsmath\amstext.sty"
Package: amstext 2000/06/29 v2.01
("C:\Programme\MiKTeX 2.6\tex\latex\amsmath\amsgen.sty"
File: amsgen.sty 1999/11/30 v2.0
\@emptytoks=\toks18
\ex@=\dimen108
))
("C:\Programme\MiKTeX 2.6\tex\latex\amsmath\amsbsy.sty"
Package: amsbsy 1999/11/29 v1.2d
\pmbraise@=\dimen109
)
("C:\Programme\MiKTeX 2.6\tex\latex\amsmath\amsopn.sty"
Package: amsopn 1999/12/14 v2.01 operator names
)
\***@bad=\count96
LaTeX Info: Redefining \frac on input line 211.
\uproot@=\count97
\leftroot@=\count98
LaTeX Info: Redefining \overline on input line 307.
\classnum@=\count99
\DOTSCASE@=\count100
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@=\box31
\strutbox@=\box32
\***@size=\dimen110
LaTeX Font Info: Redeclaring font encoding OML on input line 567.
LaTeX Font Info: Redeclaring font encoding OMS on input line 568.
\***@depth=\count101
\***@MaxMatrixCols=\count102
\dotsspace@=\muskip10
\***@parentequation=\count103
\***@lvl=\count104
\***@help=\toks19
\row@=\count105
\column@=\count106
\maxfields@=\count107
\andhelp@=\toks20
\eqnshift@=\dimen111
\alignsep@=\dimen112
\tagshift@=\dimen113
\tagwidth@=\dimen114
\totwidth@=\dimen115
\lineht@=\dimen116
\@envbody=\toks21
\multlinegap=\skip61
\multlinetaggap=\skip62
\***@stack=\toks22
LaTeX Info: Redefining \[ on input line 2666.
LaTeX Info: Redefining \] on input line 2667.
)
("C:\Programme\MiKTeX 2.6\tex\latex\amsfonts\amsfonts.sty"
Package: amsfonts 2001/10/25 v2.2f
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 132.
)
("C:\Programme\MiKTeX 2.6\tex\latex\tocloft\tocloft.sty"
Package: tocloft 2003/09/26 v2.3c parameterised ToC, etc., typesetting
Package tocloft Note: The document has chapter divisions.
\cftparskip=\skip63
\cftbeforetoctitleskip=\skip64
\cftaftertoctitleskip=\skip65
\cftbeforepartskip=\skip66
\cftpartnumwidth=\skip67
\cftpartindent=\skip68
\cftbeforechapskip=\skip69
\cftchapindent=\skip70
\cftchapnumwidth=\skip71
\cftbeforesecskip=\skip72
\cftsecindent=\skip73
\cftsecnumwidth=\skip74
\cftbeforesubsecskip=\skip75
\cftsubsecindent=\skip76
\cftsubsecnumwidth=\skip77
\cftbeforesubsubsecskip=\skip78
\cftsubsubsecindent=\skip79
\cftsubsubsecnumwidth=\skip80
\cftbeforeparaskip=\skip81
\cftparaindent=\skip82
\cftparanumwidth=\skip83
\cftbeforesubparaskip=\skip84
\cftsubparaindent=\skip85
\cftsubparanumwidth=\skip86
\cftbeforeloftitleskip=\skip87
\cftafterloftitleskip=\skip88
\cftbeforefigskip=\skip89
\cftfigindent=\skip90
\cftfignumwidth=\skip91
\***@lofdepth=\count108
\***@lotdepth=\count109
\cftbeforelottitleskip=\skip92
\cftafterlottitleskip=\skip93
\cftbeforetabskip=\skip94
\cfttabindent=\skip95
\cfttabnumwidth=\skip96
) ("C:\Programme\MiKTeX 2.6\tex\latex\geometry\geometry.sty"
Package: geometry 2002/07/08 v3.2 Page Geometry
\***@cnth=\count110
\***@cntv=\count111
\***@Gm@tempcnt=\count112
\***@bindingoffset=\dimen117
\***@wd@mp=\dimen118
\***@odd@mp=\dimen119
\***@even@mp=\dimen120
\***@dimlist=\toks23
("C:\Programme\MiKTeX 2.6\tex\latex\geometry\geometry.cfg"))
("C:\Programme\MiKTeX 2.6\tex\latex\textcase\textcase.sty"
Package: textcase 2004/10/07 v0.07 Text only upper/lower case changing (DPC)
)
("C:\Programme\MiKTeX 2.6\tex\latex\KS\KSLanguages.sty"
Package: KSLanguages
)
("C:\Programme\MiKTeX 2.6\tex\latex\KS\KSMakros.sty"
Package: KSMakros
("C:\Programme\MiKTeX 2.6\tex\latex\base\textcomp.sty"
Package: textcomp 2005/09/27 v1.99g Standard LaTeX package
Package textcomp Info: Sub-encoding information:
(textcomp) 5 = only ISO-Adobe without \textcurrency
(textcomp) 4 = 5 + \texteuro
(textcomp) 3 = 4 + \textohm
(textcomp) 2 = 3 + \textestimated + \textcurrency
(textcomp) 1 = TS1 - \textcircled - \t
(textcomp) 0 = TS1 (full)
(textcomp) Font families with sub-encoding setting implement
(textcomp) only a restricted character set as indicated.
(textcomp) Family '?' is the default used for unknown fonts.
(textcomp) See the documentation for details.
Package textcomp Info: Setting ? sub-encoding to TS1/1 on input line 71.
("C:\Programme\MiKTeX 2.6\tex\latex\base\ts1enc.def"
File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
)
LaTeX Info: Redefining \oldstylenums on input line 266.
Package textcomp Info: Setting cmr sub-encoding to TS1/0 on input line 281.
Package textcomp Info: Setting cmss sub-encoding to TS1/0 on input line 282.
Package textcomp Info: Setting cmtt sub-encoding to TS1/0 on input line 283.
Package textcomp Info: Setting cmvtt sub-encoding to TS1/0 on input line
284.
Package textcomp Info: Setting cmbr sub-encoding to TS1/0 on input line 285.
Package textcomp Info: Setting cmtl sub-encoding to TS1/0 on input line 286.
Package textcomp Info: Setting ccr sub-encoding to TS1/0 on input line 287.
Package textcomp Info: Setting ptm sub-encoding to TS1/4 on input line 288.
Package textcomp Info: Setting pcr sub-encoding to TS1/4 on input line 289.
Package textcomp Info: Setting phv sub-encoding to TS1/4 on input line 290.
Package textcomp Info: Setting ppl sub-encoding to TS1/3 on input line 291.
Package textcomp Info: Setting pag sub-encoding to TS1/4 on input line 292.
Package textcomp Info: Setting pbk sub-encoding to TS1/4 on input line 293.
Package textcomp Info: Setting pnc sub-encoding to TS1/4 on input line 294.
Package textcomp Info: Setting pzc sub-encoding to TS1/4 on input line 295.
Package textcomp Info: Setting bch sub-encoding to TS1/4 on input line 296.
Package textcomp Info: Setting put sub-encoding to TS1/5 on input line 297.
Package textcomp Info: Setting uag sub-encoding to TS1/5 on input line 298.
Package textcomp Info: Setting ugq sub-encoding to TS1/5 on input line 299.
Package textcomp Info: Setting ul8 sub-encoding to TS1/4 on input line 300.
Package textcomp Info: Setting ul9 sub-encoding to TS1/4 on input line 301.
Package textcomp Info: Setting augie sub-encoding to TS1/5 on input line
302.
Package textcomp Info: Setting dayrom sub-encoding to TS1/3 on input
line 303.
Package textcomp Info: Setting dayroms sub-encoding to TS1/3 on input
line 304.
Package textcomp Info: Setting pxr sub-encoding to TS1/0 on input line 305.
Package textcomp Info: Setting pxss sub-encoding to TS1/0 on input line 306.
Package textcomp Info: Setting pxtt sub-encoding to TS1/0 on input line 307.
Package textcomp Info: Setting txr sub-encoding to TS1/0 on input line 308.
Package textcomp Info: Setting txss sub-encoding to TS1/0 on input line 309.
Package textcomp Info: Setting txtt sub-encoding to TS1/0 on input line 310.
Package textcomp Info: Setting futs sub-encoding to TS1/4 on input line 311.
Package textcomp Info: Setting futx sub-encoding to TS1/4 on input line 312.
Package textcomp Info: Setting futj sub-encoding to TS1/4 on input line 313.
Package textcomp Info: Setting hlh sub-encoding to TS1/3 on input line 314.
Package textcomp Info: Setting hls sub-encoding to TS1/3 on input line 315.
Package textcomp Info: Setting hlst sub-encoding to TS1/3 on input line 316.
Package textcomp Info: Setting hlct sub-encoding to TS1/5 on input line 317.
Package textcomp Info: Setting hlx sub-encoding to TS1/5 on input line 318.
Package textcomp Info: Setting hlce sub-encoding to TS1/5 on input line 319.
Package textcomp Info: Setting hlcn sub-encoding to TS1/5 on input line 320.
Package textcomp Info: Setting hlcw sub-encoding to TS1/5 on input line 321.
Package textcomp Info: Setting hlcf sub-encoding to TS1/5 on input line 322.
Package textcomp Info: Setting pplx sub-encoding to TS1/3 on input line 323.
Package textcomp Info: Setting pplj sub-encoding to TS1/3 on input line 324.
Package textcomp Info: Setting ptmx sub-encoding to TS1/4 on input line 325.
Package textcomp Info: Setting ptmj sub-encoding to TS1/4 on input line 326.
)
\***@KSDummySectioningCounter=\count113
)
("C:\Programme\MiKTeX 2.6\tex\latex\base\makeidx.sty"
Package: makeidx 2000/03/29 v1.0m Standard LaTeX package
)
\@indexfile=\write3
Writing index file Test.idx
("C:\Programme\MiKTeX 2.6\tex\latex\tools\array.sty"
Package: array 2005/08/23 v2.4b Tabular extension package (FMi)
\***@sep=\dimen121
\extrarowheight=\dimen122
\***@list=\toks24
\extratabsurround=\skip97
\***@length=\skip98
)
("C:\Programme\MiKTeX 2.6\tex\latex\graphics\color.sty"
Package: color 2005/11/14 v1.0j Standard LaTeX Color (DPC)
("C:\Programme\MiKTeX 2.6\tex\latex\00miktex\color.cfg"
File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
)
Package color Info: Driver file: pdftex.def on input line 130.
)
("C:\Programme\MiKTeX 2.6\tex\latex\xstring\xstring.sty"
("C:\Programme\MiKTeX 2.6\tex\latex\xstring\xstring.tex"
\@***@unused=\write4
\@***@count=\count114
\integerpart=\count115
\decimalpart=\count116
)
Package: xstring 2008/11/16 v1.4b String manipulations (C Tellechea)
))
("C:\Programme\MiKTeX 2.6\tex\latex\hyperref\hyperref.sty"
Package: hyperref 2007/06/14 v6.76i Hypertext links for LaTeX
("C:\Programme\MiKTeX 2.6\tex\latex\oberdiek\hycolor.sty"
Package: hycolor 2007/04/11 v1.1 Code for color options of
hyperref/bookmark (H
O)
)
\@linkdim=\dimen123
\***@linkcounter=\count117
\***@pagecounter=\count118
("C:\Programme\MiKTeX 2.6\tex\latex\hyperref\pd1enc.def"
File: pd1enc.def 2007/06/14 v6.76i Hyperref: PDFDocEncoding definition (HO)
)
("C:\Programme\MiKTeX 2.6\tex\generic\oberdiek\etexcmds.sty"
Package: etexcmds 2007/05/06 v1.0 Providing prefix for e-TeX command
names (HO)
("C:\Programme\MiKTeX 2.6\tex\generic\oberdiek\infwarerr.sty"
Package: infwarerr 2007/06/14 v1.1 Providing info/warning/message (HO)
))
("C:\Programme\MiKTeX 2.6\tex\latex\00miktex\hyperref.cfg"
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
("C:\Programme\MiKTeX 2.6\tex\latex\oberdiek\kvoptions.sty"
Package: kvoptions 2007/06/11 v2.7 Connects package keyval with LaTeX
options (
HO)
)
Package hyperref Info: Option `colorlinks' set `true' on input line 2537.
Package hyperref Info: Option `hypertexnames' set `true' on input line 2537.
Package hyperref Info: Hyper figures OFF on input line 2571.
Package hyperref Info: Link nesting OFF on input line 2576.
Package hyperref Info: Hyper index ON on input line 2579.
Package hyperref Info: Plain pages OFF on input line 2586.
Package hyperref Info: Backreferencing ON on input line 2589.
Implicit mode ON; LaTeX internals redefined
Package hyperref Info: Bookmarks ON on input line 2741.
("C:\Programme\MiKTeX 2.6\tex\latex\hyperref\backref.sty"
Package: backref 2006/10/06 v1.27 Bibliographical back referencing
)
("C:\Programme\MiKTeX 2.6\tex\latex\ltxmisc\url.sty"
\Urlmuskip=\muskip11
Package: url 2005/06/27 ver 3.2 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 2909.
\***@menulength=\count119
\***@Width=\dimen124
\***@charsize=\dimen125
\***@toks=\toks25
\***@toks=\toks26
Package hyperref Info: Hyper figures OFF on input line 3393.
Package hyperref Info: Link nesting OFF on input line 3398.
Package hyperref Info: Hyper index ON on input line 3401.
Package hyperref Info: backreferencing ON on input line 3406.
Package hyperref Info: Link coloring ON on input line 3411.
\***@abspage=\count120
\***@Item=\count121
\***@Hfootnote=\count122
)
*hyperref using driver hpdftex*
("C:\Programme\MiKTeX 2.6\tex\latex\hyperref\hpdftex.def"
File: hpdftex.def 2007/06/14 v6.76i Hyperref driver for pdfTeX
\***@listcount=\count123
)
Package hyperref Info: Option `colorlinks' set `true' on input line 4.
("C:\Programme\MiKTeX 2.6\tex\latex\lastpage\lastpage.sty"
Package: lastpage 1994/06/25 v0.1b LaTeX2e package for refs to last page
number
(JPG)
)
("C:\Programme\MiKTeX 2.6\tex\latex\eqnarray\eqnarray.sty"
equationarray 1.2 <17 May 1995>
English documentation <17 May 1995>
\@eqargcnt=\count124
) ("C:\Programme\MiKTeX 2.6\tex\latex\natbib\natbib.sty"
Package: natbib 2007/02/05 8.0 (PWD)
\bibhang=\skip99
\bibsep=\skip100
LaTeX Info: Redefining \cite on input line 602.
\***@NAT@ctr=\count125
)
("C:\Programme\MiKTeX 2.6\tex\latex\siunits\SIunits.sty"
Package: SIunits 2002/08/01 v1.33 Support for the International System
of units
(MH)
\@qskwidth=\skip101
LaTeX Font Info: Redeclaring font encoding TS1 on input line 46.
\symgreek=\mathgroup6
("C:\Programme\MiKTeX 2.6\tex\latex\siunits\SIunits.cfg")
Option `amssymb' provided!
) ("C:\Programme\MiKTeX 2.6\tex\latex\sistyle\sistyle.sty"
Package: sistyle 2006/12/20 v2.3 SI units and numbers (DNJ Els)
\***@A=\toks27
\***@B=\toks28
)
("C:\Programme\MiKTeX 2.6\tex\latex\tools\tabularx.sty"
Package: tabularx 1999/01/07 v2.07 `tabularx' package (DPC)
\***@col@width=\dimen126
\***@old@table=\dimen127
\***@old@col=\dimen128
\***@target=\dimen129
\***@delta=\dimen130
\***@cols=\count126
\***@ftn=\toks29
)
("C:\Programme\MiKTeX 2.6\tex\latex\listings\listings.sty"
\***@mode=\count127
\***@gtempboxa=\box33
\***@token=\toks30
\***@length=\count128
\***@currlwidth=\dimen131
\***@column=\count129
\***@pos=\count130
\***@lostspace=\dimen132
\***@width=\dimen133
\***@newlines=\count131
\***@lineno=\count132
\***@maxwidth=\dimen134
("C:\Programme\MiKTeX 2.6\tex\latex\listings\lstmisc.sty"
File: lstmisc.sty 2007/02/22 1.4 (Carsten Heinz)
\***@lstnumber=\count133
\***@skipnumbers=\count134
\***@framebox=\box34
)
("C:\Programme\MiKTeX 2.6\tex\latex\listings\listings.cfg"
File: listings.cfg 2007/02/22 1.4 listings configuration
))
Package: listings 2007/02/22 1.4 (Carsten Heinz)
("C:\Programme\MiKTeX 2.6\tex\latex\tools\verbatim.sty"
Package: verbatim 2003/08/22 v1.5q LaTeX2e package for verbatim enhancements
\***@verbatim=\toks31
\***@line=\toks32
\***@in@stream=\read1
)
("C:\Programme\MiKTeX 2.6\tex\latex\pdfpages\pdfpages.sty"
Package: pdfpages 2006/08/12 v0.4a Insert pages of external PDF
documents (AM)
("C:\Programme\MiKTeX 2.6\tex\latex\tools\calc.sty"
Package: calc 2005/08/06 v4.2 Infix arithmetic (KKT,FJ)
\***@Acount=\count135
\***@Bcount=\count136
\***@Adimen=\dimen135
\***@Bdimen=\dimen136
\***@Askip=\skip102
\***@Bskip=\skip103
LaTeX Info: Redefining \setlength on input line 75.
LaTeX Info: Redefining \addtolength on input line 76.
\***@Ccount=\count137
\***@Cskip=\skip104
)
("C:\Programme\MiKTeX 2.6\tex\latex\pdfpages\pppdftex.def"
File: pppdftex.def 2006/08/12 v0.4a Pdfpages driver for pdfTeX (AM)
)
\***@pagebox=\box35
\***@toc@title=\toks33
\***@AM@survey=\count138
) (Test.aux)
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 40.
LaTeX Font Info: ... okay on input line 40.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 40.
LaTeX Font Info: ... okay on input line 40.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 40.
LaTeX Font Info: ... okay on input line 40.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 40.
LaTeX Font Info: ... okay on input line 40.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 40.
LaTeX Font Info: ... okay on input line 40.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 40.
LaTeX Font Info: ... okay on input line 40.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 40.
LaTeX Font Info: Try loading font information for TS1+cmr on input line 40.
("C:\Programme\MiKTeX 2.6\tex\latex\base\ts1cmr.fd"
File: ts1cmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
)
LaTeX Font Info: ... okay on input line 40.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 40.
LaTeX Font Info: ... okay on input line 40.
LaTeX Font Info: Try loading font information for T1+lmr on input line 40.
("C:\Programme\MiKTeX 2.6\tex\latex\lm\t1lmr.fd"
File: t1lmr.fd 2007/01/14 v1.3 Font defs for Latin Modern
)
ABD: EveryShipout initializing macros
("C:\Programme\MiKTeX 2.6\tex\context\base\supp-pdf.tex"
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count139
\scratchdimen=\dimen137
\scratchbox=\box36
\nofMPsegments=\count140
\nofMParguments=\count141
\MPscratchCnt=\count142
\MPscratchDim=\dimen138
\MPnumerator=\count143
\everyMPtoPDFconversion=\toks34
)
-------------------- Geometry parameters
paper: a4paper
landscape: --
twocolumn: --
twoside: true
asymmetric: --
h-parts: 71.13188pt, 455.24411pt, 71.13188pt
v-parts: 113.81102pt, 617.4248pt, 113.81102pt
hmarginratio: --
vmarginratio: --
lines: --
heightrounded: --
bindingoffset: 0.0pt
truedimen: --
includehead: --
includefoot: --
includemp: --
driver: pdftex
-------------------- Page layout dimensions and switches
\paperwidth 597.50787pt
\paperheight 845.04684pt
\textwidth 455.24411pt
\textheight 617.4248pt
\oddsidemargin -1.1381pt
\evensidemargin -1.1381pt
\topmargin 1.66603pt
\headheight 18.125pt
\headsep 21.75pt
\footskip 50.75pt
\marginparwidth 74.68849pt
\marginparsep 12.8401pt
\columnsep 10.0pt
\skip\footins 10.8pt plus 4.0pt minus 2.0pt
\hoffset 0.0pt
\voffset 0.0pt
\mag 1000
\@twosidetrue \@mparswitchtrue
(1in=72.27pt, 1cm=28.45pt)
-----------------------
Package hyperref Info: Link coloring ON on input line 40.
("C:\Programme\MiKTeX 2.6\tex\latex\hyperref\nameref.sty"
Package: nameref 2007/05/29 v2.31 Cross-referencing by name of section
("C:\Programme\MiKTeX 2.6\tex\latex\oberdiek\refcount.sty"
Package: refcount 2006/02/20 v3.0 Data extraction from references (HO)
)
\***@section@level=\count144
)
LaTeX Info: Redefining \ref on input line 40.
LaTeX Info: Redefining \pageref on input line 40.
(Test.out)
(Test.out)
\@outlinefile=\write5
Package backref Info: ** backref set up for natbib ** on input line 40.
LaTeX Font Info: Try loading font information for T1+ptm on input line 40.
("C:\Programme\MiKTeX 2.6\tex\latex\psnfss\t1ptm.fd"
File: t1ptm.fd 2001/06/04 font definitions for T1/ptm.
)
LaTeX Font Info: Font shape `T1/ptm/bx/n' in size <40> not available
(Font) Font shape `T1/ptm/b/n' tried instead on input line 40.
LaTeX Font Info: Calculating math sizes for size <40> on input line 40.
LaTeX Font Info: Try loading font information for OT1+lmr on input line 40.
("C:\Programme\MiKTeX 2.6\tex\latex\lm\ot1lmr.fd"
File: ot1lmr.fd 2007/01/14 v1.3 Font defs for Latin Modern
)
LaTeX Font Info: Try loading font information for OML+lmm on input line 40.
("C:\Programme\MiKTeX 2.6\tex\latex\lm\omllmm.fd"
File: omllmm.fd 2007/01/14 v1.3 Font defs for Latin Modern
)
LaTeX Font Info: Try loading font information for OMS+lmsy on input line 40.
("C:\Programme\MiKTeX 2.6\tex\latex\lm\omslmsy.fd"
File: omslmsy.fd 2007/01/14 v1.3 Font defs for Latin Modern
)
LaTeX Font Info: Try loading font information for OMX+lmex on input line 40.
("C:\Programme\MiKTeX 2.6\tex\latex\lm\omxlmex.fd"
File: omxlmex.fd 2007/01/14 v1.3 Font defs for Latin Modern
)
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <40> on input line 40.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <27.99988> on input line 40.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <20> on input line 40.
LaTeX Font Info: Try loading font information for U+msa on input line 40.
("C:\Programme\MiKTeX 2.6\tex\latex\amsfonts\umsa.fd"
File: umsa.fd 2002/01/19 v2.2g AMS font definitions
)
LaTeX Font Warning: Font shape `U/msa/m/n' in size <40> not available
(Font) size <24.88> substituted on input line 40.
LaTeX Font Warning: Font shape `U/msa/m/n' in size <27.99988> not available
(Font) size <24.88> substituted on input line 40.
LaTeX Font Warning: Font shape `U/msa/m/n' in size <20> not available
(Font) size <20.74> substituted on input line 40.
LaTeX Font Info: Try loading font information for U+msb on input line 40.
("C:\Programme\MiKTeX 2.6\tex\latex\amsfonts\umsb.fd"
File: umsb.fd 2002/01/19 v2.2g AMS font definitions
)
LaTeX Font Warning: Font shape `U/msb/m/n' in size <40> not available
(Font) size <24.88> substituted on input line 40.
LaTeX Font Warning: Font shape `U/msb/m/n' in size <27.99988> not available
(Font) size <24.88> substituted on input line 40.
LaTeX Font Warning: Font shape `U/msb/m/n' in size <20> not available
(Font) size <20.74> substituted on input line 40.
LaTeX Font Warning: Font shape `OML/eur/m/n' in size <40> not available
(Font) size <24.88> substituted on input line 40.
LaTeX Font Warning: Font shape `OML/eur/m/n' in size <27.99988> not
available
(Font) size <24.88> substituted on input line 40.
LaTeX Font Warning: Font shape `OML/eur/m/n' in size <20> not available
(Font) size <20.74> substituted on input line 40.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <24.88> on input line 40.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <20.74> on input line 40.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <17.28> on input line 40.
<titlelogo.jpeg, id=7, 236.885pt x 829.0975pt>
File: titlelogo.jpeg Graphic file (type jpg)
<use titlelogo.jpeg> [1
{psfonts.map} <C:/Programme/MiKTeX 2.6/tex/latex/KS/titlelogo.jpeg>]
("C:\Programme\MiKTeX 2.6\tex\latex\KS\CopyrightPage_g.tex"
LaTeX Font Info: Try loading font information for TS1+lmr on input line 7.
("C:\Programme\MiKTeX 2.6\tex\latex\lm\ts1lmr.fd"
File: ts1lmr.fd 2007/01/14 v1.3 Font defs for Latin Modern
)
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <12> on input line 16.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <8> on input line 16.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <6> on input line 16.
)
<KSEngineers.png, id=17, 1021.8175pt x 367.3725pt>
File: KSEngineers.png Graphic file (type png)
<use KSEngineers.png>
[2 <C:/Programme/MiKTeX 2.6/tex/latex/KS/KSEngineers.png (PNG copy)>]
("C:\Programme\MiKTeX 2.6\tex\latex\KS\SafetyInstructions_g.tex"
<warning.png, id=26, 80.34015pt x 80.34015pt>
File: warning.png Graphic file (type png)
<use warning.png>
<attention.png, id=27, 80.34015pt x 80.34015pt>
File: attention.png Graphic file (type png)
<use attention.png>
<info.png, id=28, 25.69514pt x 25.69514pt>
File: info.png Graphic file (type png)
<use info.png> [3 <C:/Programme/MiKTeX 2.6/tex/latex/KS/warning.png>
<C:/Progr
amme/MiKTeX 2.6/tex/latex/KS/attention.png> <C:/Programme/MiKTeX
2.6/tex/latex/
KS/info.png>]
File: warning.png Graphic file (type png)
<use warning.png>
File: warning.png Graphic file (type png)
<use warning.png>) [4]
LaTeX Font Info: Try loading font information for T1+lmss on input line 40.
("C:\Programme\MiKTeX 2.6\tex\latex\lm\t1lmss.fd"
File: t1lmss.fd 2007/01/14 v1.3 Font defs for Latin Modern
)
No file Test.toc.
\***@toc=\write6
<KS.png, id=40, 75.28125pt x 76.285pt>
File: KS.png Graphic file (type png)
<use KS.png> [1 <C:/Programme/MiKTeX 2.6/tex/latex/KS/KS.png (PNG
copy)>] [2]
Option `amssymb' provided!
Command \square redefined by SIunits package!
LaTeX Font Info: Try loading font information for OT1+lmss on input line 40.
("C:\Programme\MiKTeX 2.6\tex\latex\lm\ot1lmss.fd"
File: ot1lmss.fd 2007/01/14 v1.3 Font defs for Latin Modern
)
LaTeX Font Info: Try loading font information for OT1+lmtt on input line 40.
("C:\Programme\MiKTeX 2.6\tex\latex\lm\ot1lmtt.fd"
File: ot1lmtt.fd 2007/01/14 v1.3 Font defs for Latin Modern
)
\***@lstlisting=\count145
pdfTeX warning (ext4): destination with the same identifier
(name{page.1}) has
been already used, duplicate ignored
<to be read again>
\relax
l.44 \end{document}
File: KS.png Graphic file (type png)
<use KS.png>
LaTeX Warning: Reference `LastPage' on page 1 undefined on input line 44.
[1]
No file Test.ind.
AED: lastpage setting LastPage (Test.aux)
LaTeX Font Warning: Size substitutions with differences
(Font) up to 15.12pt have occurred.
LaTeX Warning: There were undefined references.
LaTeX Warning: Label(s) may have changed. Rerun to get cross-references
right.
)
Here is how much of TeX's memory you used:
10388 strings out of 95296
139568 string characters out of 1184997
232232 words of memory out of 1230812
13020 multiletter control sequences out of 60000
87426 words of font info for 82 fonts, out of 1000000 for 2000
14 hyphenation exceptions out of 8191
40i,16n,49p,549b,449s stack positions out of
5000i,500n,10000p,200000b,32768s
{lm-ec.enc}{lm-ts1.enc}{8r.enc}<C:/Programme/MiKTeX
2.6/fonts/type1/public/lm
/lmb10.pfb><C:/Programme/MiKTeX
2.6/fonts/type1/public/lm/lmbx12.pfb><C:/Progra
mme/MiKTeX 2.6/fonts/type1/public/lm/lmr10.pfb><C:/Programme/MiKTeX
2.6/fonts/t
ype1/public/lm/lmr12.pfb><C:/Programme/MiKTeX
2.6/fonts/type1/public/lm/lmr6.pf
b><C:/Programme/MiKTeX
2.6/fonts/type1/public/lm/lmr8.pfb><C:/Programme/MiKTeX
2.6/fonts/type1/public/lm/lmssbx10.pfb><C:/Programme/MiKTeX
2.6/fonts/type1/urw
/times/utmb8a.pfb>
Output written on Test.pdf (7 pages, 410411 bytes).
PDF statistics:
91 PDF objects out of 300000 (max. 8388607)
8 named destinations out of 300000 (max. 131072)
47 words of extra memory for PDF output out of 65536 (max. 10000000)
++++++++++