PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : begrenzte Seitenzahl



Slevin
11-09-2012, 21:12
Hallo,
ich habe ein vorgegebenes latex-Dokument welches exklusive Deckblatt u. Inhaltsverzeichnis aus 14 Textseiten (also die PDF) sowie einer Seite Abkürzungsverzeichnis (= S.15) und einem Literaturverzeichnis (= S.16) bestand.
Dieses Dokument habe ich nun im Textteil editiert. Nun ist soviel Text vorhanden, dass der Textteil eigentlich aus ca. 16-17 Seiten bestehen müsste. Das Problem ist, dass die ausgegebene PDF weiterhin nur 14 Textseiten hat, danach wird der restliche Text einfach abgeschnitten und auf Seite 15 folgt das Abkürzungsverzeichnis.
Leider habe ich nicht sonderlich viel Ahnung von latex, sodass ich nicht weiß nach welchen Einstellungen des Originalautors ich Ausschau halten muss. ich hoffe ihr könnt mir helfen.

u_fischer
12-09-2012, 09:48
Du wirst schon den Code zeigen müssen.

Slevin
12-09-2012, 18:26
Hm, ich schätze mal du willst das hier sehen:

\documentclass
[ oneside, % oneside/twoside : Einseitiger oder zweiseitiger Druck?
12pt, % Bezug: 12-Punkt Schriftgröße
DIV15, % Randaufteilung, siehe Dokumentation "KOMA"-Script
BCOR17mm, % Bindekorrektur: Innen 17mm Platz lassen. Copyshop-getestet.
headsepline, % Unter Kopfzeile Trennlinie (aus: headnosepline)
footsepline, % Über Fußzeile Trennlinie (aus: footnosepline)
a4paper, % Seitenformat A4
liststotoc, % Div. Verzeichnisse ins Inhaltsverzeichnis aufnehmen
bibtotoc, % Literaturverzeichnis ins Inhaltsverzeichnis aufnehmen
titlepage, % Titelseite aktivieren
headinclude, % Seiten-Head in die Satzspiegelberechnung mit einbeziehen
footexclude, % Seiten-Foot nicht in die Satzspiegelberechnung mit einbeziehen
pointlessnumbers % Gliederungsnummern ohne abschließenden Punkt darstellen
] {scrartcl} % Dokumentenstil: "Article" aus dem KOMA-Skript-Paket

\usepackage[active]{srcltx}
\usepackage[ngerman]{babel} % Neue Deutsche Rechtschreibung
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[T1]{url}
\usepackage{lmodern}
%\usepackage{ae}
\usepackage[final]{graphicx}
\usepackage[automark]{scrpage2}
\usepackage{setspace}
%\usepackage[first,light]{draftcopy} % Für Probedruck
\usepackage[plainpages=false,pdfpagelabels,hypertexnames=false]{hyperref}
\usepackage[numbers]{natbib}

% Tiefe der Kapitelnummerierung beeinflussen
\setcounter{secnumdepth}{3} % Tiefe der Nummerierung
\setcounter{tocdepth}{3} % Tiefe des Inhaltsverzeichnisses

% Abkürzungsverzeichnis beeinflussen. Hier nichts ändern!
\usepackage{nomencl}
%\let\abbrev\nomenclature
\renewcommand{\nomname}{Abkürzungsverzeichnis}
\setlength{\nomlabelwidth}{.25\hsize}
\renewcommand{\nomlabel}[1]{#1 \dotfill}
\setlength{\nomitemsep}{-\parsep}
\makenomenclature
\usepackage[normalem]{ulem}
\newcommand{\markup}[1]{\textbf{#1}}


% Seitenlayout festlegen. Hier nichts ändern!
\pagestyle{scrplain}
\ihead[]{\headmark}
\ohead[]{\pagemark}
\chead[]{}
\ifoot[]{\scriptsize Fachgebiet Kommunikationsnetze}
\ofoot[]{\scriptsize Bluetooth-Praktikum }
\cfoot[]{}
\renewcommand{\titlepagestyle}{scrheadings}
%\renewcommand{\partpagestyle}{scrheadings}
\renewcommand{\indexpagestyle}{scrheadings}

% Trennvorschläge für falsch getrennte Wörter.
% Wird häufig bei eingedeutschen Wörtern benötigt, da LaTeX hierbei
% gerne falsch trennt. Alternativ kann auch im Fliesstext ein
% Trennvorschlag per "\-" hinterlegt werden, bspw.:
% Die Hard\-ware besteht aus A und B.
\hyphenation{
A-na-ly-sa-tor
Soft-ware
Sta-tus-in-for-ma-ti-onen
Blue-tooth
Wäh-rend
Con-trol-ler
Pro-to-col
Da-ten-ü-ber-tra-gung
Ver-bin-dung
Cur-sor-po-si-ti-on
Fahr-scheinen
Dis-cov-er
RF-COMM
BENP
Syn-chro-ni-sie-rung
}

%\setlength{\oddsidemargin}{1.46cm}
%\setlength{\textwidth}{14cm}
\setlength{\oddsidemargin}{-0.4mm}
\setlength{\textwidth}{155mm}
\setlength{\textheight}{247mm}
\setlength{\topmargin}{-17mm}


\hypersetup{% Ä=\304; Ö=\326; Ü=\334; ä=\344; ö=\366; ü=\374; ß=\377
pdftitle={Bluetooth-Praktikum},
pdfauthor={Karsten Renhak},
pdfsubject={Bluetooth-Praktikumsanleitung und Vorbereitungsaufgaben},
pdfkeywords={Bluetooth, Praktikum, Kommunikationsnetze, TU-Ilmenau}
}


\title{Bluetooth-Praktikum}


\begin{document}
\thispagestyle{empty}

\title{\textbf{Praktikumsversuch\\\emph{Bluetooth} }}

\author{Dipl.-Ing. Karsten Renhak}

\date{\today}

%%% ----------------------------------------------------------------------
\maketitle
%%% ----------------------------------------------------------------------

% \begin{center}
% {
%
% \vspace{2cm}
% \begin{Huge}Bluetooth-Praktikum\\
% %v0.4\\
% \end{Huge}
% \vspace{2cm}
% \begin{large} Fachgebiet Kommunikationsnetze\\
% \end{large}
% \author{Dipl.-Ing. Karsten Renhak}
% }
% \vspace{2cm}
% \large \bf \today
% \end{center}
% \normalsize
\newpage
\pagenumbering{roman} % Nummerierung der Seiten ab hier: i, ii, iii, iv...
\pagestyle{scrheadings} % Ab hier mit Kopf- und Fusszeile
\tableofcontents

\newpage
\pagenumbering{arabic} % Nummerierung der Seiten ab hier: 1, 2, 3, 4...

\input{inhalt.tex}

%\listoffigures

\newpage
\ihead[]{Abkürzungsverzeichnis}
\addcontentsline{toc}{section}{\nomname}

\printnomenclature

\nomenclature{ACL}{\markup{A}synchron \markup{C}onnection-\markup{L}ess}
\nomenclature{AFH}{\markup{A}daptive \markup{F}requency \markup{H}opping}
\nomenclature{BNEP}{\markup{B}luetooth \markup{N}etwork \markup{E}ncapsulation \markup{P}rotocol}
\nomenclature{DSL}{\markup{D}igital \markup{S}ubscriber \markup{L}ine}
\nomenclature{eQoS}{\markup{e}nhanced \markup{Q}ality \markup{o}f \markup{S}ervice}
\nomenclature{eSCO}{\markup{e}nhanced \markup{S}ynchronous \markup{C}onnection \markup{O}riented}
\nomenclature{FEC}{\markup{F}orward \markup{E}rror \markup{C}orrection}
\nomenclature{FHSS}{\markup{F}requency \markup{H}opping \markup{S}pread \markup{S}pectrum}
\nomenclature{GAP}{\markup{G}eneric \markup{A}ccess \markup{P}rofile}
\nomenclature{HCI}{\markup{H}ost \markup{C}ontroller \markup{I}nterface}
\nomenclature{I/O}{\markup{I}nput / \markup{O}utput}
\nomenclature{ICMP}{\markup{I}nternet \markup{C}ontrol \markup{M}essage \markup{P}rotocol}
\nomenclature{IP}{\markup{I}nternet \markup{P}rotocol}
\nomenclature{ISDN}{\markup{I}ntegrated \markup{S}ervices \markup{D}igital \markup{N}etwork}
\nomenclature{ISM}{\markup{I}ndustrial \markup{S}cientific \markup{M}edical}
\nomenclature{ISO}{\markup{I}nternational \markup{S}tandard \markup{O}rganisation}
\nomenclature{L2CAP}{\markup{L}ogical \markup{L}ink \markup{C}ontrol and \markup{A}daption \markup{P}rotocol}
\nomenclature{LAN}{\markup{L}ocal \markup{A}rea \markup{N}etwork}
\nomenclature{LMP}{\markup{L}ink \markup{M}anager \markup{P}rotocol}
\nomenclature{MAC}{\markup{M}edia \markup{A}ccess \markup{C}ontrol}
\nomenclature{NAP}{\markup{N}etwork \markup{A}ccess\markup{p}oint}
\nomenclature{OBEX}{\markup{Ob}ject \markup{Ex}change Protocol}
\nomenclature{OSI}{\markup{O}pen \markup{S}ystem \markup{I}nterconnection}
\nomenclature{PAN}{\markup{P}ersonal \markup{A}rea \markup{N}etwork}
\nomenclature{PC}{\markup{P}ersonal \markup{C}omputer}
\nomenclature{PCMCIA}{\markup{P}ersonal \markup{C}omputer \markup{M}emory {C}ard \markup{I}nternational \markup{A}ssociation}
\nomenclature{PDA}{\markup{P}ersonal \markup{D}igital \markup{A}ssistant}
\nomenclature{PIN}{\markup{P}ersonal \markup{I}dentification \markup{N}umber}
\nomenclature{RF}{\markup{R}adio \markup{F}requency}
\nomenclature{RFCOMM}{\markup{R}adio \markup{F}requency \markup{Com}munication Port e\markup{m}ulation}
\nomenclature{SCO}{\markup{S}ynchronous \markup{C}onnection-\markup{O}riented}
\nomenclature{SDP}{\markup{S}ervice \markup{D}iscovery \markup{P}rotocol}
\nomenclature{SIG}{\markup{S}pecial \markup{I}nterest \markup{G}roup}
\nomenclature{SPP}{\markup{S}erial-\markup{P}ort \markup{P}rofile}
\nomenclature{TCP}{\markup{T}ransmission \markup{C}ontrol \markup{P}rotocol}
\nomenclature{TCS}{\markup{T}elephony \markup{C}ontrol \markup{S}pecification}
\nomenclature{TDD}{\markup{T}ime \markup{D}ivison \markup{D}uplex}
\nomenclature{UDP}{\markup{U}ser \markup{D}atagram \markup{P}rotocol}
\nomenclature{USB}{\markup{U}niversal \markup{S}erial \markup{B}us}
\nomenclature{WLAN}{\markup{W}ireless \markup{L}ocal \markup{A}rea \markup{N}etwork}
\nomenclature{EDR}{\markup{E}nhanced \markup{D}ata \markup{R}ate}

\newpage
\ihead[]{Literatur}
\begin{thebibliography}{tief}
%\addcontentsline{toc}{section}{\numberline{}\bibn ame}

\bibitem{CORE11} Bluetooth SIG: {\it Bluetooth Core Specification 1.1, The Official Bluetooth Membership Website, 2001}\\
\url{https://www.bluetooth.org/docman2/ViewProperties.php?group_id=90&document_content_id=41580}\\
\url{https://www.bluetooth.org/docman2/ViewProperties.php?group_id=90&document_content_id=42350}
\bibitem{CORE12} Bluetooth SIG: {\it Bluetooth Core Specification 1.2, The Official Bluetooth Membership Website, 2003}\\
\url{http://www.bluetooth.org/foundry/adopters/document/Bluetooth_Core_Specification_v1.2}
\bibitem{CORE20} Bluetooth SIG: {\it Bluetooth Core Specification 2.0+EDR, The Official Bluetooth Membership Website, 2004}\\
\url{https://www.bluetooth.org/docman2/ViewProperties.php?group_id=90&document_content_id=42104}
%http://www.bluetooth.org/spec/
\bibitem{Hildebrandt}Holger Hildebrandt und Kay Pein: {\it Studienarbeit
Bluetooth-Anwendungen}
\bibitem{Stuphorn} Jörn Stuphorn: {\it Was ist Bluetooth, 2002}\\
\url{http://www.holtmann.org/lecture/bluetooth/bt_slides_021031.pdf}
\bibitem{Grenzend} Lars Grenzendörfer: {\it Seminararbeit
Untersuchungen zu Bluetooth, 2002}.
%\bibitem{AVM} AVM Computersysteme: {\it AVM Techniklexikon, AVM GmbH, 2005}\\
% \url{http://www.avm.de/de/index.php3?Service/TechnikLexikon/}
\bibitem{SIG20} Bluetooth SIG: {\it Bluetooth 2.0 Press Release, The Official Bluetooth Website, 2004}\\
\url{http://www.bluetooth.com/news/releases.asp?A=2&PID=1437&ARC=1}
\bibitem{Heise} Dusan Zivadinovic: {\it Wegweisend, Was die Bluetooth-Roadmap verspricht, Heise Mobil, 2005}\\
\url{http://www.heise.de/mobil/artikel/54025}
\bibitem{BLUEZ} BlueZ Project: {\it Official Linux Bluetooth protocol stack, 2005}\\
\url{http://www.bluez.org}
\bibitem{IPERF} NLANR: {\it Iperf, 2005}\\
\url{http://iperf.sourceforge.net/}
\bibitem{NETCAT} Giovanni Giacobbi: {\it Official GNU Netcat Project, 2004}\\
\url{http://netcat.sourceforge.net/}
\end{thebibliography}



\end{document}




Bitte nicht wundern - es handelt sich um ein uraltes Dokument =)
Mir wäre es aber lieb, wenn ich nicht sonderlich viel am Code ändern müsste, da ich lediglich ein paar Absätze hinzugefügt habe und das Dokument danach wohl nie wieder anrühren werde

Donalduck
12-09-2012, 19:01
Sinnvoll wäre ein Dokument das man auch kompilieren kann (nichts mit include, input), und das den Fehler zeigt. Noch besser wäre ein Minimalbeispiel (http://minimalbeispiel.de/).

Slevin
13-09-2012, 10:47
Ich habe den Fehler jetzt selbst entdeckt und muss mich entschuldigen:
Ich habe bei einem
\textbf{ die
} vergessen ... und eben an dieser Stelle wurde mein Text abgeschnitten (Zufall, dass es genau an der gleichen Stelle passiert ist, wo der Originaltext endete - daher meine Verwirrung)