PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Leere Seite wegbekommen



chris1234567
13-05-2009, 15:05
Ich habe diese Lebenslauf Vorlage gebastelt! Jedoch wird eine zusätzliche weiße Seite am Anfang generiert. Ich glaube, dass das gesamte Dokument irgendwie nach unten springt. Aber grundsätzlich geht sich der Text ja auf einer Seite aus. Hat jemand eine Idee wie ich die erste Seite wegbekomme?

BG C

Anbei das Minimalbeispiel:


\documentclass[a4paper,bibtotoc,oneside,fleqn]{scrbook}
\usepackage[ansinew]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{fancyhdr}
\usepackage[pdftex]{graphicx}
\usepackage [pdfpagelayout=SinglePage]{hyperref}
\begin{document}
%
--------------------------------------------------------------------------------
%
--------------------------------------------------------------------------------
% begin new page
%\newpage

% insert entry "Abstract" to index
%\addcontentsline{toc}{chapter}{Curriculum Vitae}
\section*{Curriculum Vitae}
\fancyfoot{}
%\fancyhead{}
\thispagestyle{empty}

\vspace{1cm}
\begin{minipage}{1\textwidth}

\begin{minipage}{0.75\textwidth}%% 75% of textwidth of A4 page
\begin{tabular}[htbp]{p{4.488cm}|l}
\hfill \small \textbf{Personal Information}\\
& \\
\hfill \small First Name / Surname / PN & \small \textbf{Your
Name}\\
\hfill \small & \small \\
\hfill \small E-Mail & \small 123.123@123.at\\
\small & \small 123.123@123.at\\

\end{tabular}

\end{minipage}


%\begin{minipage}{0.2\textwidth} %% 20% der Textbreite einer A4-Seite
%\includegraphics[width=40mm]{Bild.pdf}
%\end{minipage}

\begin{tabular}[htbp]{p{4.488cm}|l}%\rule{4.2cm}{0.2pt}

\hfill \small Nationality & \small \\
\hfill \small Date of Birth & \small \\
\small & \small \\
\end{tabular}

\begin{tabular}[htbp]{p{4.488cm}|l}
\hfill \small \textbf{Completion of M. Thesis}\\

\hfill \small Dates & \small January 2009 - month 2009\\

\hfill \small Occupation or position held & \small \\

\hfill \small Name and adress of employer & \small \\
\small & \small \\
\small & \small \\
\small & \small \\
\small & \small \\
\small & \small \\
\hfill \small & \small \\

\end{tabular}

\begin{tabular}[htbp]{p{4.488cm}|l}
\hfill \small \textbf{Education}\\

\hfill \small Dates & \small \\

\hfill \small Title of Qualification & \small \\

\hfill \small Name and type of & \small \\
\hfill \small organisation & \small \\
\small & \small \\
\small & \small NAME OF COUNTRY \\

\hfill \small Level in international & \small \\
\hfill \small classification & \small \\
\small & \small \\
\hfill \small Dates & \small \\
\hfill \small Title of Qualification & \small \\

\hfill \small Name and type of & \small \\
\hfill \small organisation & \small \\
\small & \small \\
\small & \small \\

\hfill \small Level in international & \small \\
\hfill \small classification & \small ISCED 5a\\
\small & \small \\
\hfill \small Dates & \small \\
\hfill \small Title of Qualification & \small \\
\hfill \small Name and type of & \small \\
\hfill \small organisation & \small \\
\small & \small \\
\small & \small \\
\small & \small \\
\hfill \small Level in international & \small \\
\hfill \small classification & \small ISCED 3a\\
\end{tabular}

\end{minipage}

\end{document}

Stefan_K
13-05-2009, 15:35
Hallo Chris,

der Text ist zu lang und passt nicht auf die erste Seite. Du hast den ganzen Text in eine minipage-Umgebung gepackt, darin wird nicht umgebrochen, die gesamte Umgebung landet auf der nächsten Seite, wird zwar ausgegeben doch erzeugt eine Warnung: overfull \vbox.

Würdest Du die äußere minipage-Umgebung entfernen, würde auf der 1. Seite begonnen und auf der 2. Seite fortgesetzt. Dass die Seite nur zu voll ist, erkennst Du auch, wenn Du einmal testhalber

\usepackage[vmargin={1cm,1cm}]{geometry}
in Deine Präambel einfügst, mit anderen Rändern und mehr Platz entsteht nämlich keine leere erste Seite. Überlege Dir Layout und Seiteneinteilung/Ränder, wenn Du alles auf eine Seite kriegen möchtest.

Viele Grüße,

Stefan


--
TeXblog.net (http://texblog.net)

chris1234567
13-05-2009, 18:45
Ah Danke! Dann funktioniert es.
Ich hab den ganzen Text noch in eine Minipage gepackt weil sonst der Abstand zwischen der Überschrift (Curriculum Vitae) und dem Rest der Seite nicht gepasst hat. Dieses Zusammenstückeln der Einzelnen Tables war wegen dem Picture für die rechte Seite nötig!
Ich möchte, diese besondere Seiteneinstellung

\usepackage[vmargin={1cm,1cm}]{geometry} nur für diese eine Seite verwenden. Nicht für die vorhergehenden. Aber das usepackage muss ich doch zu Beginn einbinden. Wie kann ich diese Optionen nur für eine Seite verwenden? Geht das?

BG C

Stefan_K
13-05-2009, 19:01
Hallo Chris,

1cm is echt wenig Rand, es war als Beispiel gemeint, um den Effekt zu sehen. Die Optionen würden dokumentweit gelten, Bastelei wie mit gmeometric lohnt sich wohl nicht. Vielleicht reicht Dir ein \vspace*{Abstand} (http://texblog.net/help/latex/ltx-347.html) mit negativem Abstand zu Beginn sowie ein \enlargethispage (http://www.tac.dk/cgi-bin/info2www?(latex)\enlargethispage) auf der ersten Seite.

Stefan

chris1234567
13-05-2009, 20:21
Ich habe es jetzt mit
\enlargethispage*{2.7cm}
\vspace{0.9cm} gelöst, wobei ich nicht weiß wie weit ich das \enlargethispage verwenden kann (in Bezug auf cm). Funktionieren tut es allerdings so super! Danke für die Hilfe!

Anbei das Minimalbeispiel:


\documentclass[a4paper,bibtotoc,oneside,fleqn]{scrbook}
\usepackage[ansinew]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{fancyhdr}
\usepackage[pdftex]{graphicx}
\usepackage [pdfpagelayout=SinglePage]{hyperref}

% ------------------------------

\enlargethispage*{2.7cm}
\vspace{0.9cm}


% ------------------------------

\begin{document}
% ------------------------------
% ------------------------------
% begin new page
%\newpage

% insert entry "Abstract" to index
%\addcontentsline{toc}{chapter}{Curriculum Vitae}
\section*{Curriculum Vitae}
\fancyfoot{}
%\fancyhead{}
\thispagestyle{empty}

\vspace{1cm}
\begin{minipage}{1\textwidth}

\begin{minipage}{0.75\textwidth}%% 75% of textwidth of A4 page
\begin{tabular}[htbp]{p{4.488cm}|l}
\hfill \small \textbf{Personal Information}\\
& \\
\hfill \small First Name / Surname / PN & \small \textbf{Your
Name}\\
\hfill \small & \small \\
\hfill \small E-Mail & \small 123.123@123.at\\
\small & \small 123.123@123.at\\

\end{tabular}

\end{minipage}


%\begin{minipage}{0.2\textwidth} %% 20% der Textbreite einer A4-Seite
%\includegraphics[width=40mm]{Bild.pdf}
%\end{minipage}

\begin{tabular}[htbp]{p{4.488cm}|l}%\rule{4.2cm}{0.2pt}

\hfill \small Nationality & \small \\
\hfill \small Date of Birth & \small \\
\small & \small \\
\end{tabular}

\begin{tabular}[htbp]{p{4.488cm}|l}
\hfill \small \textbf{Completion of M. Thesis}\\

\hfill \small Dates & \small January 2009 - month 2009\\

\hfill \small Occupation or position held & \small \\

\hfill \small Name and adress of employer & \small \\
\small & \small \\
\small & \small \\
\small & \small \\
\small & \small \\
\small & \small \\
\hfill \small & \small \\

\end{tabular}

\begin{tabular}[htbp]{p{4.488cm}|l}
\hfill \small \textbf{Education}\\

\hfill \small Dates & \small \\

\hfill \small Title of Qualification & \small \\

\hfill \small Name and type of & \small \\
\hfill \small organisation & \small \\
\small & \small \\
\small & \small NAME OF COUNTRY \\

\hfill \small Level in international & \small \\
\hfill \small classification & \small \\
\small & \small \\
\hfill \small Dates & \small \\
\hfill \small Title of Qualification & \small \\

\hfill \small Name and type of & \small \\
\hfill \small organisation & \small \\
\small & \small \\
\small & \small \\

\hfill \small Level in international & \small \\
\hfill \small classification & \small ISCED 5a\\
\small & \small \\
\hfill \small Dates & \small \\
\hfill \small Title of Qualification & \small \\
\hfill \small Name and type of & \small \\
\hfill \small organisation & \small \\
\small & \small \\
\small & \small \\
\small & \small \\
\hfill \small Level in international & \small \\
\hfill \small classification & \small ISCED 3a\\
\end{tabular}

\end{minipage}

\end{document}

BG C