PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Maximale Anzahl von Paketen?



tttboarder
22-07-2010, 22:47
Hi an alle,

ich verwende Texmaker aufm Apple. Ich habe auf einmal das Problem dass der Paketname des Paketes aus Zeile 18 in der Preambel in meinem pdf File ausgeschrieben als erste Seite vor Titelpage auftaucht???

Also in Zeile 18 habe ich zum bsp:\usepackage{microtype} %einheitlicher Randausgleich dann zeigt er mir im pdf: „microtype an? Egal welches Paket ich an diese Stelle setze, es ist immer der entsprechende Name!!!!

Gibt es vlt eine Maximal Anzahl an Paketen?
Wenn kann mir jemand sagen welche raus können?

Hier mal meine Minibsp mit dazugehörigen Fehlermeldung:

\documentclass[10pt,a4paper,titlepage]{scrreprt}
\usepackage{ngerman}
\usepackage[ngerman]{babel}
\usepackage{color}%Farbige Schrift
\usepackage{german,latexsym,alltt,textcomp,hyperre f}
\usepackage[utf8]{inputenc}
\usepackage{scrpage2}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{makeidx}
\usepackage{graphicx}
\usepackage{subfig}%subfig für Bilder nebeneinander
\usepackage{caption}%Bildunterschriften bearbeiten
\usepackage{ragged2e}%Bildunterschrift linksbündig
\usepackage[justification=RaggedRight,singlelinecheck=false] %Bildunterschrift Linksbündig befehl, bei mehr als 1 Zeile
\usepackage{microtype} %einheitlicher Randausgleich <-- das ist Zeile 18!!!


\begin{document}

Fehlermeldungen:

! Argument of \@fileswith@pti@ns has an extra }.
<inserted text>
\par
l.18 \usepackage{
microtype} %einheitlicher Randausgleich
I've run across a `}' that doesn't seem to match anything.
For example, `\def\a#1{...}' and `\a}' would produce
this error. If you simply proceed now, the `\par' that
I've just inserted will cause me to report a runaway
argument that might be the root of the problem. But if
your `}' was spurious, just type `2' and it will go away.
Runaway argument?
\usepackage {\@fileswith@ptions \@pkgextension }\def \reserved@b {\@fileswith@p
tions \ETC.
! Paragraph ended before \@fileswith@pti@ns was complete.
<to be read again>
\par
l.18 \usepackage{
microtype} %einheitlicher Randausgleich
I suspect you've forgotten a `}', causing me to apply this
control sequence to too much text. How can we recover?
My plan is to forget the whole thing and hope for the best.
Runaway argument?
\let \reserved@d =[\def
! Paragraph ended before \reserved@b was complete.
<to be read again>
\par
l.18 \usepackage{
microtype} %einheitlicher Randausgleich
I suspect you've forgotten a `}', causing me to apply this
control sequence to too much text. How can we recover?
My plan is to forget the whole thing and hope for the best.
! Undefined control sequence.
\@fileswith@pti@ns ...served@b \reserved@a ,\@nil
,}\fi \reserved@a
l.18 \usepackage{
microtype} %einheitlicher Randausgleich
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.
! LaTeX Error: Missing \begin{document}.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.18 \usepackage{
microtype} %einheitlicher Randausgleich
You're in trouble here. Try typing <return> to proceed.
If that doesn't work, type X <return> to quit.
(./Pucknat_2010_DiplomKartierung.aux)
\openout1 = `Pucknat_2010_DiplomKartierung.aux'.

Vielleicht blickts ja einer von euch.

Danke:eek:

bobmalaria
22-07-2010, 22:49
hi,

das liegt wohl daran


\usepackage[justification=RaggedRight,singlelinecheck=false]

es geht sowas wie


\usepackage{caption}
\captionsetup{justification=RaggedRight,singleline check=false}

aber deine konstruktion versucht optionen ohne paket zu laden

lockstep
22-07-2010, 22:59
Im Übrigen: Entscheide dich für EINES der drei Pakete german, ngerman und babel. Lade außerdem hyperref als letztes Paket.

lockstep

tttboarder
23-07-2010, 00:01
Hmm...

OK die Leere Seite am Anfang ist weg. Hatte wohl ausversehen einen Befehl vor \documentclass gesetzt

Ich habe die Pakete jetzt mal umsortiert und \usepackage{ngerman} raus geworfen.

Habe jetzt nur noch \usepackage{ngerman}[babel]

hypref steht jetzt am Ende.

Bekomm zwar jetzt ein paar neue Fehlermeldungen.werd mal noch ein wenig probieren.

Danke an Euch

voss
23-07-2010, 07:18
Ich habe die Pakete jetzt mal umsortiert und \usepackage{ngerman} raus geworfen.


auch german muss raus!

Herbert

bobmalaria
23-07-2010, 07:46
hi

und es muss
\usepackage[ngerman]{babel} heißen. der paketname in einem {} klammerpaar und davor eventuelle optionen für das paket in einem [] klammerpaar

grüße