Autor Beitrag
Marco D.
ontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic star
Beiträge: 2750

Windows Vista
Delphi 7, Delphi 2005 PE, PHP 4 + 5 (Notepad++), Java (Eclipse), XML, XML Schema, ABAP, ABAP OO
BeitragVerfasst: Fr 12.08.11 12:07 
Für die Latex-Liebhaber unter uns,

Ich möchte vor der Einleitung alle Seitenzahlen unterdrücken, das macht man mit
\pagestyle{empty}
Die Normaleinstellung ist \pagestyle{plain}

Im Literaturverzeichnis am Ende (\bibliography} will ich auch keine Seitenzahlen haben.
Dort fügt Latex aber trotz \pagestyle{empty} immer automatisch auf der ersten Seite des Verzeichnisses die Seitenzahl ein -.-

Hat da jemand eine Lösung für?
Hab auch schon mit dem Package fancyhdr gearbeitet, aber da bin ich auch zu keiner Lösung gekommen.

Cheers
Marco

_________________
Pascal keeps your hand tied. C gives you enough rope to hang yourself. C++ gives you enough rope to shoot yourself in the foot
Jakob_Ullmann
ontopic starontopic starontopic starontopic starontopic starontopic starofftopic starofftopic star
Beiträge: 1747
Erhaltene Danke: 15

Win 7, *Ubuntu GNU/Linux*
*Anjuta* (C, C++, Python), Geany (Vala), Lazarus (Pascal), Eclipse (Java)
BeitragVerfasst: Fr 12.08.11 13:12 
Vielleicht hilft es, dort noch einmal mit der \pagestyle-Anweisung zu kommen? Und noch \thispagestyle{empty} auf der ersten Seite.

Schau dir mal die Seiten an:
www.golatex.de/pages...iographie-t3072.html
www.latex-community.....php?f=47&t=5857

Für diesen Beitrag haben gedankt: Marco D.
Marco D. Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic star
Beiträge: 2750

Windows Vista
Delphi 7, Delphi 2005 PE, PHP 4 + 5 (Notepad++), Java (Eclipse), XML, XML Schema, ABAP, ABAP OO
BeitragVerfasst: Mo 15.08.11 11:08 
In deinem ersten Link ist die richtige Antwort erhalten. Der Befehl \bibliography setzt den Pagestyle intern wieder auf plain. Man muss also vorher mit fancyhdr den Plain-Pagestyle seinen Bedürfnissen entsprechend adaptieren:
ausblenden Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
\fancypagestyle{plain}{%
        \fancyhf{} % clear all header and footer fields
        \fancyhead[R]{\thepage} % except the right top corner
        \renewcommand{\headrulewidth}{0pt} % remove line between header and main text
       % or do whatever you want here with fancyhdr
    }
\pagestyle{plain}
\bibliography(myBibFile}


Problem damit also gelöst.

Danke.

_________________
Pascal keeps your hand tied. C gives you enough rope to hang yourself. C++ gives you enough rope to shoot yourself in the foot