Seite 1 von 1

koma-moderncvclassic dreispaltig als „Bewerbungsflyer“

Verfasst: Mi 27. Apr 2016, 14:26
von Atom-Ede
Hallo zusammen,

ich möchte einen Bewerbungsflyer auf Grundlage meines Lebenslaufs erstellen, den ich mit „koma-moderncvclassic“ schrieb. Hier ist ein Minimalbeispiel von dem Lebenslauf (ich habe mal alle Kommentarzeilen drin gelassen, bei denen ich meine, dass sie dieses Beispiel übersichtlicher machen --- das Beispiel basiert auf: http://mirrors.ctan.org/macros/latex/co ... vbasic.tex):


\ProvidesFile{cvbasic_v05.tex}[v0.5 2012/01/04]

\RequirePackage{filecontents}

\documentclass[%
fontsize=12pt,%
a4paper,%
pagesize,%
headinclude,footinclude,%
headings=normal,%
DVI=calc
]{scrartcl}



\usepackage{scrpage2}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[german=quotes]{csquotes}
\usepackage{lastpage}


\usepackage{enumitem}
\setlist[description]{leftmargin=0cm}

\tolerance=200 % white space
\clubpenalty = 1000 % orphans
\widowpenalty = 1000 % widows

% ===========================
%    VARIABLES
% ===========================
%    must be defined, BEFORE koma-moderncvclassic is loaded!

% address; not needed variables should be commented out
\renewcommand*{\title}{Lebenslauf}% für PDF
\newcommand*{\firstname}{Ich}
\newcommand*{\familyname}{Selbst}
\newcommand*{\acadtitle}{}
\newcommand*{\addressstreet}{Straße 21}
\newcommand*{\addresscity}{PLZ Ort}
\newcommand*{\address}[2]{\addressstreet{#1}\addresscity{#2}}
\newcommand*{\mobile}{Handynummer}
\newcommand*{\phone}{Telefonnummer}
\newcommand*{\faxnr}{Faxnummer}
\newcommand*{\email}{info@atom-ede.de}



% ===========================
%    KOMA-MODERNCVCLASSIC
% ===========================

\usepackage[myblue]{koma-moderncvclassic}

% picture
\photo[noframe]{3cm}{Atom-Ede}
% 'frame' gives a frame around the picture (=default), 'noframe' does not;
% '3cm' is the width the picture must be resized to;
% 'picture.jpg' is the name of the picture file


% ===========================
%    ADAPTIONS
% ===========================
\renewcommand*{\familydefault}{\sfdefault}
\renewcommand*{\addressfont}{\normalsize\sffamily\mdseries\slshape}
\newcommand*{\totalpagemark}{\usekomafont{pagenumber}\thepage/\pageref*{LastPage}}% for page and pagetotal
 
% ===========================
%    HEAD- AND FOOTLINES
% ===========================
\pagestyle{scrheadings}
\clearscrheadfoot
\ifoot{Lebenslauf~\firstname~\familyname}
\ofoot{\totalpagemark}
%\ihead{}
%\ohead{}

% ===========================
%    BIBLIOGRAPHY
% ===========================

\usepackage[backend=biber,% or bibtex8
style=authortitle,% 
sorting=ydnt,% sorted by year, descending
]{biblatex}
\bibliography{cvbasic.bib}
\defbibheading{bibliography}[Publications]{\section{#1}}

% ==================================================================
%       DOCUMENT
% ==================================================================

\begin{document}
%\begin{multicols}{3}

\maketitle

\section{Persönliche Informationen}
\cvline{Geburtsdatum}{Glückstag}
\cvline{Geburtsort}{Meineburg}
\cvline{Geburtsland}{Königreich}
\cvline{Nationalität}{atom-edisch}



\section{Ausbildung}


\subsection{\pdfbookmark[2]{Berufsausbildung}{BA}Berufsausbildung}

\cventry{2012--2016}{Beruf}{Ausbildungsplatz}{Ort}{}{}

\cventry{2014--2015}{Betriebspraktikum}{Praktikumsplatz}{Hannover}{}{}


\subsection{\pdfbookmark[2]{Universität}{UNI}Universität}

\cventry{2009--2011}{Studiengang}{Fakultät von Universtät}{Ort}{ohne Abschluss}{}


\subsection{\pdfbookmark[2]{Schule}{SCH}Schule}

\cventry{2001--2009}{Gymnasium}{Schule}{Ort}{Bezeichnung}{Allgemeine Hochschulreife}

\cventry{1996--2001}{Grundschule und Orientierungsstufe}{Schule}{Schule}{Bezeichnung}{}

\cventry{1994--1996}{Grundschule}{Schule}{Ort}{Bezeichnung}{}



\section{Fremdsprachen}


\subsection{\pdfbookmark[2]{Englisch}{EN}Englisch}
\cvlanguage{Hören}{B1}{}
\cvlanguage{Lesen}{B2}{}
\cvlanguage{Sprechen}{A2}{}
\cvlanguage{Schreiben}{B1}{}



\label{lastpage}
%\end{multicols}
\end{document}
Ich habe auch schon nach Lösungen recherchiert --- aber die funktionieren hier nicht ohne weiteres: http://texwelt.de/wissen/fragen/983/wie ... -schreiben).

Die werde ich jeweils in den beiden nachfolgenden Beiträgen präsentieren (dauert einen kurzen Augenblick).

Beispiel 1

Verfasst: Mi 27. Apr 2016, 14:36
von Atom-Ede
Zu erst habe ich das Beispiel mit multicol ausprobiert:


\ProvidesFile{cvbasic_v05.tex}[v0.5 2012/01/04]

\RequirePackage{filecontents}

\documentclass[%
fontsize=12pt,%
a4paper,%
paper=landscape,%
pagesize,%
headinclude,footinclude,%
headings=normal,%
DVI=calc
]{scrartcl}



\usepackage{scrpage2}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[german=quotes]{csquotes}
\usepackage{lastpage}

\usepackage{multicol}

\usepackage{enumitem}
\setlist[description]{leftmargin=0cm}

\tolerance=200 % white space
\clubpenalty = 1000 % orphans
\widowpenalty = 1000 % widows

% ===========================
%    VARIABLES
% ===========================
%    must be defined, BEFORE koma-moderncvclassic is loaded!

% address; not needed variables should be commented out
\renewcommand*{\title}{Lebenslauf}% für PDF
\newcommand*{\firstname}{Ich}
\newcommand*{\familyname}{Selbst}
\newcommand*{\acadtitle}{}
\newcommand*{\addressstreet}{Straße 21}
\newcommand*{\addresscity}{PLZ Ort}
\newcommand*{\address}[2]{\addressstreet{#1}\addresscity{#2}}
\newcommand*{\mobile}{Handynummer}
\newcommand*{\phone}{Telefonnummer}
\newcommand*{\faxnr}{Faxnummer}
\newcommand*{\email}{info@atom-ede.de}



% ===========================
%    KOMA-MODERNCVCLASSIC
% ===========================

\usepackage[myblue]{koma-moderncvclassic}

% picture
\photo[noframe]{3cm}{Atom-Ede}
% 'frame' gives a frame around the picture (=default), 'noframe' does not;
% '3cm' is the width the picture must be resized to;
% 'picture.jpg' is the name of the picture file


% ===========================
%    ADAPTIONS
% ===========================
\renewcommand*{\familydefault}{\sfdefault}
\renewcommand*{\addressfont}{\normalsize\sffamily\mdseries\slshape}
\newcommand*{\totalpagemark}{\usekomafont{pagenumber}\thepage/\pageref*{LastPage}}% for page and pagetotal
 
% ===========================
%    HEAD- AND FOOTLINES
% ===========================
\pagestyle{scrheadings}
\clearscrheadfoot
\ifoot{Lebenslauf~\firstname~\familyname}
\ofoot{\totalpagemark}
%\ihead{}
%\ohead{}

% ===========================
%    BIBLIOGRAPHY
% ===========================

\usepackage[backend=biber,% or bibtex8
style=authortitle,% 
sorting=ydnt,% sorted by year, descending
]{biblatex}
\bibliography{cvbasic.bib}
\defbibheading{bibliography}[Publications]{\section{#1}}

% ==================================================================
%       DOCUMENT
% ==================================================================

\begin{document}
\begin{multicols}{3}

\maketitle

\section{Persönliche Informationen}
\cvline{Geburtsdatum}{Glückstag}
\cvline{Geburtsort}{Meinburg}
\cvline{Geburtsland}{Königreich}
\cvline{Nationalität}{atom-edisch}



\section{Ausbildung}


\subsection{\pdfbookmark[2]{Berufsausbildung}{BA}Berufsausbildung}

\cventry{2012--2016}{Beruf}{Ausbildungsplatz}{Ort}{}{}

\cventry{2014--2015}{Betriebspraktikum}{Praktikumsplatz}{Hannover}{}{}


\subsection{\pdfbookmark[2]{Universität}{UNI}Universität}

\cventry{2009--2011}{Studiengang}{Fakultät von Universtät}{Ort}{ohne Abschluss}{}


\subsection{\pdfbookmark[2]{Schule}{SCH}Schule}

\cventry{2001--2009}{Gymnasium}{Schule}{Ort}{Bezeichnung}{Allgemeine Hochschulreife}

\cventry{1996--2001}{Grundschule und Orientierungsstufe}{Schule}{Schule}{Bezeichnung}{}

\cventry{1994--1996}{Grundschule}{Schule}{Ort}{Bezeichnung}{}



\section{Fremdsprachen}


\subsection{\pdfbookmark[2]{Englisch}{EN}Englisch}
\cvlanguage{Hören}{B1}{}
\cvlanguage{Lesen}{B2}{}
\cvlanguage{Sprechen}{A2}{}
\cvlanguage{Schreiben}{B1}{}



\label{lastpage}
\end{multicols}
\end{document}

Beispiel 2

Verfasst: Mi 27. Apr 2016, 14:42
von Atom-Ede
Als Zweites wurde flowfram benutzt --- kam aber aufs Gleiche raus:


\ProvidesFile{cvbasic_v05.tex}[v0.5 2012/01/04]

\RequirePackage{filecontents}

\documentclass[%
fontsize=12pt,%
a4paper,%
paper=landscape,%
pagesize,%
headinclude,footinclude,%
headings=normal,%
DVI=calc
]{scrartcl}



\usepackage{scrpage2}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[german=quotes]{csquotes}
\usepackage{lastpage}

\usepackage{flowfram}
% drei Spalten
\Ncolumninarea{3}{\textwidth}{\textheight}{0pt}{0pt}

\usepackage{enumitem}
\setlist[description]{leftmargin=0cm}

\tolerance=200 % white space
\clubpenalty = 1000 % orphans
\widowpenalty = 1000 % widows

% ===========================
%    VARIABLES
% ===========================
%    must be defined, BEFORE koma-moderncvclassic is loaded!

% address; not needed variables should be commented out
\renewcommand*{\title}{Lebenslauf}% für PDF
\newcommand*{\firstname}{Ich}
\newcommand*{\familyname}{Selbst}
\newcommand*{\acadtitle}{}
\newcommand*{\addressstreet}{Straße 21}
\newcommand*{\addresscity}{PLZ Ort}
\newcommand*{\address}[2]{\addressstreet{#1}\addresscity{#2}}
\newcommand*{\mobile}{Handynummer}
\newcommand*{\phone}{Telefonnummer}
\newcommand*{\faxnr}{Faxnummer}
\newcommand*{\email}{info@atom-ede.de}



% ===========================
%    KOMA-MODERNCVCLASSIC
% ===========================

\usepackage[myblue]{koma-moderncvclassic}

% picture
\photo[noframe]{3cm}{Atom-Ede}
% 'frame' gives a frame around the picture (=default), 'noframe' does not;
% '3cm' is the width the picture must be resized to;
% 'picture.jpg' is the name of the picture file


% ===========================
%    ADAPTIONS
% ===========================
\renewcommand*{\familydefault}{\sfdefault}
\renewcommand*{\addressfont}{\normalsize\sffamily\mdseries\slshape}
\newcommand*{\totalpagemark}{\usekomafont{pagenumber}\thepage/\pageref*{LastPage}}% for page and pagetotal

% ===========================
%    HEAD- AND FOOTLINES
% ===========================
\pagestyle{scrheadings}
\clearscrheadfoot
\ifoot{Lebenslauf~\firstname~\familyname}
\ofoot{\totalpagemark}
%\ihead{}
%\ohead{}

% ===========================
%    BIBLIOGRAPHY
% ===========================

\usepackage[backend=biber,% or bibtex8
style=authortitle,% 
sorting=ydnt,% sorted by year, descending
]{biblatex}
\bibliography{cvbasic.bib}
\defbibheading{bibliography}[Publications]{\section{#1}}

% ==================================================================
%       DOCUMENT
% ==================================================================

\begin{document}

\maketitle

\section{Persönliche Informationen}
\cvline{Geburtsdatum}{Glückstag}
\cvline{Geburtsort}{Meinburg}
\cvline{Geburtsland}{Königreich}
\cvline{Nationalität}{atom-edisch}



\section{Ausbildung}


\subsection{\pdfbookmark[2]{Berufsausbildung}{BA}Berufsausbildung}

\cventry{2012--2016}{Beruf}{Ausbildungsplatz}{Ort}{}{}

\cventry{2014--2015}{Betriebspraktikum}{Praktikumsplatz}{Hannover}{}{}


\subsection{\pdfbookmark[2]{Universität}{UNI}Universität}

\cventry{2009--2011}{Studiengang}{Fakultät von Universtät}{Ort}{ohne Abschluss}{}


\subsection{\pdfbookmark[2]{Schule}{SCH}Schule}

\cventry{2001--2009}{Gymnasium}{Schule}{Ort}{Bezeichnung}{Allgemeine Hochschulreife}

\cventry{1996--2001}{Grundschule und Orientierungsstufe}{Schule}{Schule}{Bezeichnung}{}

\cventry{1994--1996}{Grundschule}{Schule}{Ort}{Bezeichnung}{}



\section{Fremdsprachen}


\subsection{\pdfbookmark[2]{Englisch}{EN}Englisch}
\cvlanguage{Hören}{B1}{}
\cvlanguage{Lesen}{B2}{}
\cvlanguage{Sprechen}{A2}{}
\cvlanguage{Schreiben}{B1}{}



\label{lastpage}
\end{document}

Zielvorstellung und Problembeschreibung.

Verfasst: Mi 27. Apr 2016, 14:49
von Atom-Ede
Ich möchte dann sowas wie hier dargestellt erstellen: http://karrierebibel.de/bewerbungsflyer/.

Bei beiden Beispielen überschneidet sich der Text mit Titelelementen. Außerdem funktioniert der Seitenumbruch nicht, wenn der Inhalt größer wird.

Ansatz

Verfasst: Mo 2. Mai 2016, 14:46
von Atom-Ede
Mir ist inzwischen ein Ansatz eingefallen --- aber er löst das Problem noch nicht vollständig:

Man könnte anstatt der „Mehrspaltenpakete“ das Paket geometry verwenden:
\usepackage[paperwidth=99mm,paperheight=210mm]{geometry}
Die entstehende PDF-Dartei wird mit z.B. cups-PDF (oder einem anderen PDF-Drucker) so ausgedruckt, dass die drei Seiten auf einer DIN A4 Seite im Querformat landen.

Woran es noch hakt ist die Titelseite --- hier gibt es Probleme mit der Schriftgröße. Gibt es einen Befehl, mit dem ich die Schriftgrößen im Titel automatisch an den Verfügbaren Platz anpassen kann (oder kann ich mir ein entsprechenden Befehl basteln)?

Verfasst: Di 3. Mai 2016, 08:55
von schmendrich
Dafür gibt es doch das Paket leaflet.

leaflet

Verfasst: Di 3. Mai 2016, 09:04
von Atom-Ede
Ja aber es funktionierte bei einem Versuch nicht mit dem koma-moderncvclassic-Paket. Ich möchte, dass der Flyer optisch zu meinen restlichen Bewerbungsunterlagen passt (also Lebenslauf und Anschreiben).