PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : PDF wird nicht erstellt und weitere Fehler (Verbatim)



j_wolt05
20-04-2008, 14:44
Hallo!!
Ich hab das Problem, dass das PDF Dokument nicht mehr erstellt wird. Es kommt keine Fehlermeldung, wenn ich auf "PDF erstellen" drücke oder so... (ich benutze den Texmaker). Es ist einfach nicht mehr da und bei der DVI File werden auch nur die ersten beiden Seite angezeigt, dabei sind es mindestens 4 Seiten! :(
Des Weiteren bekomme ich auch eine komische Fehlermeldung, seit dem ich die Funktion verbatim angewendet habe.

Hier die Datails:

\usepackage[left=2.5cm,right=2.5cm,top=4cm,bottom=4cm,includeh eadfoot]{geometry}
\usepackage[latin1]{inputenc}


\begin{verbatim}
public static void turm ( int n, int A, int C, int B) {
if (n >= 1) {
turm (n -1,A, B, C);
System . out. println (” von ” + A + ” nach ” + C);
turm (n -1,B, C, A);
}
}
\end{verbatim}


der Fehler:
! Package inputenc Error: Keyboard character used is undefined (inputenc) in inputencoding `latin1'.
See the inputenc package documentation for explanation. Type H <return> for immediate help.
...
l.74 \end{verbatim}
You need to provide a definition with \DeclareInputText or \DeclareInputMath before using this key.

Dieser wird insgesamt 4 mal wiederholt...

Ein weiterer Fehler:
Package Fancyhdr Warning: \headheight is too small (12.0pt):
Make it at least 27.11469pt.
We now make it that large for the rest of the document. This may cause the page layout to be inconsistent, however. [2]

Also meine Frage nun, was kann ich machen, damit die Fehler weg sind und ich die Datei komplett bekomme! Ich muss das Dokument Donnerstag abgeben, deswegen bräuchte ich relativ schnell ne Antwort.

MfG Julia

localghost
20-04-2008, 15:03
Da es ganz danach aussieht, als wolltest Du ein Listing in dein Dokument integrieren, solltest Du einen Blick auf listings (http://dante.ctan.org/CTAN/help/Catalogue/entries/listings.html) werfen. Das könnte schon vieles lösen und Du musst dich nicht mit der verbatim-Umgebung herumschlagen. Falls weitere Probleme auftauchen, kannst Du ja hier nachfragen.


Package Fancyhdr Warning: \headheight is too small (12.0pt):
Make it at least 27.11469pt.
We now make it that large for the rest of the document. This may cause the page layout to be inconsistent, however.
Das ist lediglich eine Warnung. Irgendetwas in der Kopfzeile passt dort vom Platz her nicht hinein. Vielleicht eine Grafik oder etwas ähnliches. Das lässt sich aber leicht anpassen.

\addtolength{\headheight}{16pt} % weil 12pt+16pt=28pt



MfG
Thorsten¹

voss
20-04-2008, 15:05
\usepackage[latin1]{inputenc}

der Fehler:
! Package inputenc Error: Keyboard character used is undefined (inputenc) in inputencoding `latin1'.
See the inputenc package documentation for explanation. Type H <return> for immediate help.
...
l.74 \end{verbatim}
You need to provide a definition with \DeclareInputText or \DeclareInputMath before using this key.

Dieser wird insgesamt 4 mal wiederholt...

Ein weiterer Fehler:
Package Fancyhdr Warning: \headheight is too small (12.0pt):
Make it at least 27.11469pt.
We now make it that large for the rest of the document. This may cause the page layout to be inconsistent, however. [2]



Dein Editor ist auf utf8 eingestellt, also nimm daher


\usepackage[utf8]{inputenc}
dann sollte es gehen.

Headheight kannst du ignorieren, wenn es nicht weiter im Ausdruck sichtbar ist.

Herbert