Anzeige:
Ergebnis 1 bis 2 von 2

Thema: Anschreiben mit moderncv- Fragen

  1. #1
    Registrierter Benutzer
    Registriert seit
    16.02.2010
    Beiträge
    15

    Anschreiben mit moderncv- Fragen

    Hallo zusammen,
    ich bin mir darüber im Klaren, dass es vielleicht schon gefragt wurde, aber ich komme einfach nicht weiter.
    Ich habe eine Vorlage eines Anschreibens gefunden, die zuerst nicht gelaufen ist. Nun habe ich diese modifiziert (unter anderem mit Hilfe dieses Forums - Danke schon mal hierfür!)

    Nun habe ich noch ein paar Fragen:

    1. Wie kann ich die Farbe des Balkens verändern? Irgendwie wird der nicht so dargestellt wie ich das möchte. Er übernimmt eben die Farbe des Vornames
    Code:
    \definecolor{firstnamecolor}{rgb}{0.95,0.55,0.15}
    2. Wie schaffe ich es, dass ich die Farbe und die Schriftart der Kapitel verändere. Also ich will, dass Bewerbungsunterlagen zweifarbig dargestellt wird. Also Berwerbungs DUNKELGRAU und unterlagen HELLGRAU? Ich komme da nicht weiter und weiss im Moment nicht, ob es daran liegt, dass ich Apple und MacTex verwende.

    3. Analoges für den Vornamen und den Nachnamen, der auf der ersten Seite steht. Da bekomme ich die Farben hin, aber dass der Nachname grösser ist, leider nicht!

    4. Wieso wird auf der ersten Seite, bei der Inhaltsangabe, diese komplett falsch dargestellt. Zum einen fehlen die Punkte, die bspw. nach Lebenslauf bis hin zur Seitenzahl kommen, darüber hinaus sind gewisse Dinge enthalten, wie die Sektions und der Zeilenumbruch fehlt auch immer...

    Der Hintergrund ist der, dass das Anschreiben schon einem Farbschema folgt und ich das natürlich einheitlich machen möchte.

    Anbei der Code des Skriptes und der Code des moderncv-additions.sty

    Ich danke Euch jetzt schon ganz ganz herzlich!
    Bestes
    Zoli

    SKRIPT:
    Code:
    \documentclass[11pt,a4paper, sans]{moderncv}
    
    \usepackage[german]{babel}
    \usepackage{moderncv-additions}
    
    % moderncv themes
    \moderncvtheme{casual}   % optional arguments are 'blue' (default), 'orange', 'red', 'green', 'grey' and 'roman' (for roman fonts, instead of sans serif fonts)
    %\moderncvtheme[green]{classic}                % idem
    
    % character encoding
    \usepackage[utf8]{inputenc}                   % replace by the encoding you are using
    
    % adjust the page margins
    \usepackage[scale=0.8]{geometry}
    \setlength{\hintscolumnwidth}{3cm}			  % if you want to change the width of the column with the dates
    %\AtBeginDocument{\setlength{\maketitlenamewidth}{6cm}}  % only for the classic theme, if you want to change the width of your name placeholder (to leave more space for your address details
    
    %\AtBeginDocument{\recomputelengths}           % required when changes are made to page layout lengths
    
    % personal data
    \firstname{Max}
    \familyname{Mustermann}
    %\title{Resumé title (optional)}               % optional, remove the line if not wanted
    \address{Musterstraße 08/15}{8010 Graz}        % optional, remove the line if not wanted
    \mobile{+43 123 45 678 90}                     % optional, remove the line if not wanted
    %\phone{phone (optional)}                      % optional, remove the line if not wanted
    %\fax{fax (optional)}                          % optional, remove the line if not wanted
    \email{max@mustermann.at}                      % optional, remove the line if not wanted
    %\extrainfo{additional information (optional)} % optional, remove the line if not wanted
    \photo[64pt]{picture}                          % '64pt' is the height the picture must be resized to and 'picture' is the name of the picture file; optional, remove the line if not wanted
    %\quote{``Das ist ein toller Frusterspruch\\ von Friede Frusterfrau.'' -- Friede Frusterfrau}                 % optional, remove the line if not wanted
    
    %\nopagenumbers{}                             % uncomment to suppress automatic page numbering for CVs longer than one page
    
    %----------------------------------------------------------------------------------
    %            content
    %----------------------------------------------------------------------------------
    %\show\section
    
    \begin{document}
    
    % color redefinitions must be after \begin{document}!
    \definecolor{firstnamecolor}{RGB}{125,85,85}
    \definecolor{familynamecolor}{RGB}{138,74,57}
    \definecolor{quotecolor}{RGB}{125,85,85}
    \definecolor{addresscolor}{RGB}{125,85,85}
    \definecolor{sectionrectanglecolor}{RGB}{138,74,57}
    \definecolor{sectiontitlecolor}{RGB}{138,74,57}
    \definecolor{subsectioncolor}{RGB}{125,85,85}
    \definecolor{footersymbolcolor}{RGB}{125,85,85}	
    
    \makeatletter
    
    \pagestyle{empty}
    \chapter*{Bewerbungs}{unterlagen}
    
    \vspace*{50mm}
    \begin{minipage}{\textwidth}
    	\vspace*{3mm}
    	\namestyle{\@firstname}~~\namestyle{\color{familynamecolor}\@familyname} 	
    	\hspace*{5mm}{{\color{firstnamecolor}\includegraphics[width=64pt]{picture}}}\\[3mm]
    	\@addressstreet, \@addresscity ~~~ \mobilesymbol~\@mobile ~~~ \emailsymbol~\@email
    \end{minipage}
    \begin{minipage}{70pt}
    	
    \end{minipage}
    
    \vfill
    
    \begin{minipage}{1.0\textwidth}
    	\section{Inhalt}
    	\tableofcontents
    \end{minipage}
    
    \newpage
    \pagestyle{fancy}
    \chapter{Curriculum}{~Vit\ae}
    %\makequote
    
    \section{Persönliche Daten}
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    \cvline{Name}{\@firstname~\@familyname}
    \cvline{Anschrift}{\@addressstreet, \@addresscity}
    \cvline{Telefon}{\@mobile}
    \cvline{E-Mail}{\@email}
    \cvline{Geburtsdaten}{1. Januar 1970 in Musterstadt}
    \cvline{Staatsbürgerschaft}{Österreichisch}
    \cvline{Familienstand}{ledig}
    \cvline{Präsenzdienst}{abgeleistet}
    \cvline{Führerschein}{A,B,C,D,E,F,G}
    \makeatother 
    
    \cventry{year--year}{Degree}{Institution}{City}{\textit{Grade}}{Description}  % arguments 3 to 6 are optional
    
    \section{Ausbildung} 
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    
    \cventry{xx/xxxx -- xx/xxxx}{Akadem. Grad}{Institution}{Stadt}{\textit{Abschluss}}{Bemerkung}  % arguments 3 to 6 are optional
    
    \cventry{xx/xxxx -- xx/xxxx}{Akadem. Grad}{Institution}{Stadt}{\textit{Abschluss}}{Bemerkung} 
    
    \section{Berufserfahrung} 
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    
    \cventry{xx/xxxx -- xx/xxxx}{Musterkaufmann}{Musterfirma}{Musterort}{}{Bemerkung}
    
    \section{Sprachen} 
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    
    \cvline{Deutsch}{Muttersprache}{}
    \cvline{Englisch}{Verstehen A1, Sprechen B2, Schreiben C3 \hfill {\scriptsize \itshape Europäische Kompetenzstufe}}
    
    \section{IT Kompetenzen} 
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    
    \cvline{Musterkategorie}{Mustermethode 1 (z.B. mit Musterprogramm 2), Mustermethode 2 (z.B. mit Musterprogramm 4)}
    
    \newpage
    
    \section{Auszeichnungen} 
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    
    \cvline{xx/xxxx}{Musterpreis}
    
    
    \section{Außeruniversitäre Tätigkeiten} 
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    
    \cvline{....}{....}
    
    \section{Interessen}
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    
    \cvline{....}{....}
    
    \section{Publikationen} 
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    
    \subsection{Konferenzen und Workshops}
    
    \cvline{mm/jjjj}{Autor 1 und Autor 2. \textbf{Mustertitel: Unser tolles Paper.} In \textit{Proceedings of the First Muster Workshop 1970}, Musterstadt, Musterland, YYYY.}
    
    % \newpage
    
    \subsection{Technical Reports}
    
    \cvline{....}{....}
    
    \cvline{....}{alternativ kann man auch BibTex verwenden:}
    
    \renewcommand*{\refname}{Abschlussarbeiten}
    \nocite{*}
    \bibliographystyle{cv}
    \bibliography{publications}       % 'publications' is the name of a BibTeX file
    
    \newpage
    \chapter{Bachelor}{zeugnis}
    \vspace*{1cm}
    \begin{center}
    	% \fbox{\includegraphics[height=0.85\textheight]{Bakk-Zeugnis}}	
    \end{center}
    
    \newpage
    \chapter{Matura}{zeugnis}
    \vspace*{1cm}
    \begin{center}
    	% \fbox{\includegraphics[height=0.85\textheight]{Maturazeugnis}}	
    \end{center}
    
    \vspace*{1cm}
    \begin{center}
    	% \fbox{\includegraphics[height=0.85\textheight]{Maturazeugnis-2}}	
    \end{center}
    
    \newpage
    \chapter{Abschluss}{zeugnis}
    \vspace*{1cm}
    \begin{center}
    	% \fbox{\includegraphics[height=0.85\textheight]{Abschlusszeugnis}}	
    \end{center}
    
    \end{document}
    
    % end of file `cv_german.tex'

    und die modern- Datei

    Code:
    
    \newcommand{\chapter}{\@ifstar
                         \chapterStar
                         \chapterNoStar }
    
    \newcommand*{\chapterNoStar}[2]{%
      {%
       \clearpage
       \phantomsection
       \addcontentsline{toc}{chapter}{#1#2}%
       \chapter*{#1}{#2}%
      }%
    }
    
    \newcommand*{\chapterStar}[2]{%
      {%
        \hfill%
        {\raggedleft{\namestyle{#1}\namestyle{#2}}\\[-.35em]}%
      	{\color{firstnamecolor}\rule{\textwidth}{.25ex}\\[0.25em]}%
      }%
    }
    
    
    \renewcommand*{\@starttoc}[1]{%
      \begingroup
        \makeatletter
        \parskip\z@
        \@input{\jobname.#1}%
        \if@filesw
          \expandafter\newwrite\csname tf@#1\endcsname
          \immediate\openout \csname tf@#1\endcsname \jobname.#1\relax
        \fi
        \@nobreakfalse
      \endgroup
    }\def\tableofcontents{\@starttoc{toc}}
    \renewcommand*{\section}[1]{%
    % 	\vspace*{2.5ex \@plus 1ex \@minus .2ex}%
    	\vspace*{0.0ex \@plus 1ex \@minus .2ex}%
      \phantomsection{}% reset the anchor for hyperrefs
    %  \addcontentsline{toc}{part}{#1}%
     \parbox[m]{\hintscolumnwidth}{\raggedleft\hintfont{\color{sectionrectanglecolor}\rule{\hintscolumnwidth}{1ex}}}%
      \hspace{\separatorcolumnwidth}%
      \parbox[m]{\maincolumnwidth}{\sectionstyle{#1}}\\[1ex]%
    }

  2. #2
    Registrierter Benutzer
    Registriert seit
    16.02.2010
    Beiträge
    15

    Update

    Hallo zusammen,
    ich habe weiter rumgespielt und habe erste Erfolge zu verzeichnen. Yes!
    Es bleibt nur noch die Frage, wie ich auf der ersten Seite den Namen in zwei unterschiedlichen Schriftgrössen und Farben umsetze. Ich will, dass der Nachname fetter/grösser ist und ein dunkleres Grau hat. Mit der Farbe komme ich weiter, aber wie mache ich die Schrift grösser. Anbei mal die tex-Datei und die additions.


    Code:
    %% start of file `cv_german.tex', based on `template_en.tex` by Xavier Danaux (xdanaux@gmail.com).
    % This work may be distributed and/or modified under the
    % conditions of the LaTeX Project Public License version 1.3c,
    % available at http://www.latex-project.org/lppl/.
    % 
    % Thomas Quaritsch 
    
    \documentclass[11pt,a4paper]{moderncv}
    
    \usepackage[german]{babel}
    \usepackage{moderncv-additions}
    
    % moderncv themes
    \moderncvtheme{casual}   % optional arguments are 'blue' (default), 'orange', 'red', 'green', 'grey' and 'roman' (for roman fonts, instead of sans serif fonts)
    %\moderncvtheme[green]{classic}                % idem
    
    % \moderncvcolor{green}
    % character encoding
    \usepackage[utf8]{inputenc}                   % replace by the encoding you are using
    
    % adjust the page margins
    \usepackage[scale=0.8]{geometry}
    \setlength{\hintscolumnwidth}{3cm}			  % if you want to change the width of the column with the dates
    %\AtBeginDocument{\setlength{\maketitlenamewidth}{6cm}}  % only for the classic theme, if you want to change the width of your name placeholder (to leave more space for your address details
    
    \AtBeginDocument{\recomputelengths}           % required when changes are made to page layout lengths
    
    % personal data
    \firstname{Max}
    \familyname{Mustermann}
    %\title{Resumé title (optional)}               % optional, remove the line if not wanted
    \address{Musterstraße 08/15}{8010 Graz}        % optional, remove the line if not wanted
    \mobile{+43 123 45 678 90}                     % optional, remove the line if not wanted
    %\phone{phone (optional)}                      % optional, remove the line if not wanted
    %\fax{fax (optional)}                          % optional, remove the line if not wanted
    \email{max@mustermann.at}                      % optional, remove the line if not wanted
    %\extrainfo{additional information (optional)} % optional, remove the line if not wanted
    \photo[64pt]{picture}                          % '64pt' is the height the picture must be resized to and 'picture' is the name of the picture file; optional, remove the line if not wanted
    \quote{``Das ist ein toller Frusterspruch\\ von Friede Frusterfrau.'' -- Friede Frusterfrau}                 % optional, remove the line if not wanted
    
    %\nopagenumbers{}                             % uncomment to suppress automatic page numbering for CVs longer than one page
    
    %----------------------------------------------------------------------------------
    %            content
    %----------------------------------------------------------------------------------
    %\show\section
    \begin{document}
    
    % color redefinitions must be after \begin{document}!
    
    %Balken oben
    \definecolor{firstnamecolor}{RGB}{125,85,85}
    %\definecolor{firstnamecolor}{rgb}{0.22, 0.45, 0.70}
    
    %\definecolor{familynamecolor}{RGB}{138,74,57}
    \definecolor{familynamecolor}{rgb}{0.22, 0.45, 0.70}
    
    %\definecolor{quotecolor}{RGB}{125,85,85}
    \definecolor{quotecolor}{rgb}{0.95, 0.55, 0.15}
    
    %\definecolor{addresscolor}{RGB}{125,85,85}
    \definecolor{addresscolor}{rgb}{0.22, 0.45, 0.70}
    
    \definecolor{sectionrectanglecolor}{RGB}{138,74,57}
    %\definecolor{sectionrectanglecolor}{rgb}{0.22, 0.45, 0.70}
    
    \definecolor{sectiontitlecolor}{RGB}{138,74,57}
    %\definecolor{sectiontitlecolor}{rgb}{0.95, 0.55, 0.15}
    
    \definecolor{subsectioncolor}{RGB}{125,85,85}
    %\definecolor{subsectioncolor}{rgb}{0.95, 0.55, 0.15}
    
    \definecolor{footersymbolcolor}{RGB}{125,85,85}	
    %\definecolor{footersymbolcolor}{rgb}{0.22, 0.45, 0.70}
    
    \definecolor{color0}{RGB}{125,85,85}
    
    
    
    
    
    
    
    
    
    
    
    \makeatletter
    
    \pagestyle{empty}
    \chapter*{Bewerbungs}{unterlagen}
    
    \vspace*{50mm}
    \begin{minipage}{\textwidth}
    	\vspace*{3mm}
    	\namestyle{\@firstname}~~\namestyle{\color{familynamecolor}\@familyname} 	
    	\hspace*{5mm}{{\color{firstnamecolor}\includegraphics[width=64pt]{picture}}}\\[3mm]
    	\@addressstreet, \@addresscity ~~~ \mobilesymbol~\@mobile ~~~ \emailsymbol~\@email
    \end{minipage}
    \begin{minipage}{70pt}
    	
    \end{minipage}
    
    \vfill
    
    \begin{minipage}{1.0\textwidth}
    	\section{Inhalt}
    	\tableofcontents
    \end{minipage}
    
    \newpage
    \pagestyle{fancy}
    \chapter{Curriculum}{~Vit\ae}
    \makequote
    
    \section{Persönliche Daten}
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    \cvline{Name}{\@firstname~\@familyname}
    \cvline{Anschrift}{\@addressstreet, \@addresscity}
    \cvline{Telefon}{\@mobile}
    \cvline{E-Mail}{\@email}
    \cvline{Geburtsdaten}{1. Januar 1970 in Musterstadt}
    \cvline{Staatsbürgerschaft}{Österreichisch}
    \cvline{Familienstand}{ledig}
    \cvline{Präsenzdienst}{abgeleistet}
    \cvline{Führerschein}{A,B,C,D,E,F,G}
    \makeatother 
    
    \cventry{year--year}{Degree}{Institution}{City}{\textit{Grade}}{Description}  % arguments 3 to 6 are optional
    
    \section{Ausbildung} 
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    
    \cventry{xx/xxxx -- xx/xxxx}{Akadem. Grad}{Institution}{Stadt}{\textit{Abschluss}}{Bemerkung}  % arguments 3 to 6 are optional
    
    \cventry{xx/xxxx -- xx/xxxx}{Akadem. Grad}{Institution}{Stadt}{\textit{Abschluss}}{Bemerkung} 
    
    \section{Berufserfahrung} 
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    
    \cventry{xx/xxxx -- xx/xxxx}{Musterkaufmann}{Musterfirma}{Musterort}{}{Bemerkung}
    
    \section{Sprachen} 
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    
    \cvline{Deutsch}{Muttersprache}{}
    \cvline{Englisch}{Verstehen A1, Sprechen B2, Schreiben C3 \hfill {\scriptsize \itshape Europäische Kompetenzstufe}}
    
    \section{IT Kompetenzen} 
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    
    \cvline{Musterkategorie}{Mustermethode 1 (z.B. mit Musterprogramm 2), Mustermethode 2 (z.B. mit Musterprogramm 4)}
    
    \newpage
    
    \section{Auszeichnungen} 
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    
    \cvline{xx/xxxx}{Musterpreis}
    
    
    \section{Außeruniversitäre Tätigkeiten} 
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    
    \cvline{....}{....}
    
    \section{Interessen}
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    
    \cvline{....}{....}
    
    \section{Publikationen} 
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    
    \subsection{Konferenzen und Workshops}
    
    \cvline{mm/jjjj}{Autor 1 und Autor 2. \textbf{Mustertitel: Unser tolles Paper.} In \textit{Proceedings of the First Muster Workshop 1970}, Musterstadt, Musterland, YYYY.}
    
    % \newpage
    
    \subsection{Technical Reports}
    
    \cvline{....}{....}
    
    \cvline{....}{alternativ kann man auch BibTex verwenden:}
    
    \renewcommand*{\refname}{Abschlussarbeiten}
    \nocite{*}
    \bibliographystyle{cv}
    \bibliography{publications}       % 'publications' is the name of a BibTeX file
    
    \newpage
    \chapter{Bachelor}{zeugnis}
    \vspace*{1cm}
    \begin{center}
    	% \fbox{\includegraphics[height=0.85\textheight]{Bakk-Zeugnis}}	
    \end{center}
    
    \newpage
    \chapter{Matura}{zeugnis}
    \vspace*{1cm}
    \begin{center}
    	% \fbox{\includegraphics[height=0.85\textheight]{Maturazeugnis}}	
    \end{center}
    
    \vspace*{1cm}
    \begin{center}
    	% \fbox{\includegraphics[height=0.85\textheight]{Maturazeugnis-2}}	
    \end{center}
    
    \newpage
    \chapter{Abschluss}{zeugnis}
    \vspace*{1cm}
    \begin{center}
    	% \fbox{\includegraphics[height=0.85\textheight]{Abschlusszeugnis}}	
    \end{center}
    
    \end{document}
    
    % end of file `cv_german.tex'

    und der Zusatz:

    Code:
    % (c) 2010 Martin Weiglhofer  and 
    %          Thomas Quaritsch 
    
    \AtEndPreamble{
    
    	\renewcommand*{\contentsline}[4]{%
    	  #2 \dotfill #3\\
    	}
    
    	\newcommand{\makequote}{
    	  \ifthenelse{\isundefined{\@quote}}%
    	  {}%
    	  {\centering{%
    			\begin{minipage}{\quotewidth}\vspace*{2em}\centering\quotestyle{\@quote}\end{minipage}%
    		}\\[2.5em]%
    	  }%
    	}
    
    	\newcommand{\chapter}{\@ifstar
    	                     \chapterStar
    	                     \chapterNoStar }
    
    	\newcommand*{\chapterNoStar}[2]{%
    	  {%
    	   \addcontentsline{toc}{chapter}{#1#2}%
    	   \chapter*{#1}{#2}%
    	  }%
    	}
    
    	\newcommand*{\chapterStar}[2]{%
    	  {%
    	    \hfill%
    	    {\raggedleft{\namestyle{#1}\namestyle{#2}}\\[-.35em]}%
    	  	{\color{firstnamecolor}\rule{\textwidth}{.25ex}\\[0.25em]}%
    	  }%
    	}
    
    	\renewcommand*{\@starttoc}[1]{%
    	  \begingroup
    	    \makeatletter
    	    \parskip\z@
    	    \@input{\jobname.#1}%
    	    \if@filesw
    	      \expandafter\newwrite\csname tf@#1\endcsname
    	      \immediate\openout \csname tf@#1\endcsname \jobname.#1\relax
    	    \fi
    	    \@nobreakfalse
    	  \endgroup
    	}
    	\def\tableofcontents{\@starttoc{toc}}
    
    	% usage: \section{}
    	\renewcommand*{\section}[1]{%
    	  \vspace*{3ex plus 1ex minus 1ex}%
    	  \parbox[m]{\hintscolumnwidth}{\raggedleft\hintfont{\color{sectionrectanglecolor}\rule{\hintscolumnwidth}{1ex}}}%
    	  \phantomsection{}% reset the anchor for hyperrefs
    	  % \addcontentsline{toc}{part}{#1}%
    	  \hspace{\separatorcolumnwidth}%
    	  \parbox[m]{\maincolumnwidth}{\sectionstyle{#1}}%
    	  \vspace*{3ex plus 1ex minus 1ex}%
    	}
    	%  \cvline[1ex]{\color{sectionrectanglecolor}\rule[0]{\hintscolumnwidth}{1ex}}{\sectionstyle{#1}}}% gives bad alignment of rectangle; too bad m{width} columns seem not to work as a valid column definition for tabular environments
    	% starred variant, which is identical but defined to allow its use (e.g. for natbib compatibility, who uses \section*{} for the bibliography header)
    
    	\renewenvironment{thebibliography}[1]%
    	  {%
    	    \subsection{\refname}%
    	%    \vspace*{-0.65em}%
    	    \small%
    	    \begin{list}{\bibliographyitemlabel}%
    	      {%
    	        \setlength{\topsep}{0pt}%
    	        \setlength{\labelwidth}{\hintscolumnwidth}%
    	        \setlength{\labelsep}{\separatorcolumnwidth}%
    	        \leftmargin\labelwidth%
    	        \advance\leftmargin\labelsep%
    	        \@openbib@code%
    	        \usecounter{enumiv}%
    	        \let\p@enumiv\@empty%
    	        \renewcommand\theenumiv{\@arabic\c@enumiv}}%
    	        \sloppy\clubpenalty4000\widowpenalty4000%
    	%        \sfcode`\.\@m%
    	%        \sfcode `\=1000\relax%
    	  }%
    	  {%
    	    \def\@noitemerr{\@latex@warning{Empty `thebibliography' environment}}%
    	    \end{list}%
    	  }
    
    }</pre>
    </div>
    						</blockquote>
    					</div>
    
    					
    				</div>
    			</div>
    			
    			<div class="cleardiv"></div>
    		</div>
    	</div>
    		<div class="postfoot">
    			<!-- <div class="postfoot_container"> -->
    			<div class="textcontrols floatcontainer">
    				<span class="postcontrols">
    					<img style="display:none" id="progress_348926" src="images/misc/progress.gif" alt="" />
    					
    					
    					
    						<a id="qrwq_348926" class="newreply" href="newreply.php?s=fc69f9e480599c1ed4f36bfe34aeaa7e&do=newreply&p=348926" rel="nofollow" title="Zitieren"><img id="quoteimg_348926" src="clear.gif" alt="Zitieren" />  Zitieren</a> 
    					
    					
    					
    				</span>
    				<span class="postlinking">
    					
    						
    					
    
    					
    					
    					
    					
    
    					
    					
    
    					
    					
    					
    					
    					
    				</span>
    			<!-- </div> -->
    			</div>
    		</div>
    	<hr />
    </li>
    
    		</ol>
    		<div class="separator"></div>
    		<div class="postlistfoot">
    			
    		</div>
    
    	
    
    </div>
    
    <div id="below_postlist" class="noinlinemod below_postlist">
    	
    	<div id="pagination_bottom" class="pagination_bottom">
    	
    		<div class="clear"></div>
    <div class="navpopupmenu popupmenu nohovermenu" id="showthread_navpopup">
    	
    		<span class="shade">Gehe zu:</span>
    		<a href="showthread.php?74395-Anschreiben-mit-moderncv-Fragen&s=fc69f9e480599c1ed4f36bfe34aeaa7e" class="popupctrl"><span class="ctrlcontainer">LaTeX-Forum</span></a>
    		<a href="showthread.php?74395-Anschreiben-mit-moderncv-Fragen#top" class="textcontrol" onclick="document.location.hash='top';return false;">Nach oben</a>
    	
    	<ul class="navpopupbody popupbody popuphover">
    		
    		<li class="optionlabel">Bereiche</li>
    		<li><a href="usercp.php?s=fc69f9e480599c1ed4f36bfe34aeaa7e">Benutzerkontrollzentrum</a></li>
    		<li><a href="private.php?s=fc69f9e480599c1ed4f36bfe34aeaa7e">Private Nachrichten</a></li>
    		<li><a href="subscription.php?s=fc69f9e480599c1ed4f36bfe34aeaa7e">Abonnements</a></li>
    		<li><a href="online.php?s=fc69f9e480599c1ed4f36bfe34aeaa7e">Wer ist online</a></li>
    		<li><a href="search.php?s=fc69f9e480599c1ed4f36bfe34aeaa7e">Foren durchsuchen</a></li>
    		<li><a href="index.php?s=fc69f9e480599c1ed4f36bfe34aeaa7e">Forum-Startseite</a></li>
    		
    			<li class="optionlabel">Foren</li>
    			
    		
    			
    				<li><a href="forumdisplay.php?42-Neuigkeiten&s=fc69f9e480599c1ed4f36bfe34aeaa7e">Neuigkeiten</a></li>
    			
    		
    			
    				<li><a href="forumdisplay.php?51-Hier-Suchen-und-Finden-Links-Tutorials-und-Tipps&s=fc69f9e480599c1ed4f36bfe34aeaa7e">Hier Suchen und Finden, Links, Tutorials und Tipps</a></li>
    			
    		
    			
    				<li><a href="forumdisplay.php?45-Mitgliederbereich&s=fc69f9e480599c1ed4f36bfe34aeaa7e">Mitgliederbereich</a></li>
    			
    		
    			
    				<li><a href="forumdisplay.php?8-Programmieren&s=fc69f9e480599c1ed4f36bfe34aeaa7e">Programmieren</a>
    					<ol class="d1">
    						
    		
    			
    				<li><a href="forumdisplay.php?22-PHP-Forum&s=fc69f9e480599c1ed4f36bfe34aeaa7e">PHP-Forum</a></li>
    			
    		
    			
    				<li><a href="forumdisplay.php?23-Datenbanken&s=fc69f9e480599c1ed4f36bfe34aeaa7e">Datenbanken</a></li>
    			
    		
    			
    				<li><a href="forumdisplay.php?48-Umgebungen-Entwicklungstools-Frameworks-IDEs&s=fc69f9e480599c1ed4f36bfe34aeaa7e">Umgebungen, Entwicklungstools, Frameworks, IDEs</a></li>
    			
    		
    			
    				<li><a href="forumdisplay.php?24-Sprachen-Standard-APIs&s=fc69f9e480599c1ed4f36bfe34aeaa7e">Sprachen, Standard APIs</a></li>
    			
    		
    			
    				<li><a href="forumdisplay.php?56-Java-Forum&s=fc69f9e480599c1ed4f36bfe34aeaa7e">Java-Forum</a></li>
    			
    		
    			
    				<li><a href="forumdisplay.php?46-HTML-und-Markupsprachen-Forum&s=fc69f9e480599c1ed4f36bfe34aeaa7e">HTML und Markupsprachen Forum</a></li>
    			
    		
    			
    				<li><a href="forumdisplay.php?29-Scriptsprachen&s=fc69f9e480599c1ed4f36bfe34aeaa7e">Scriptsprachen</a></li>
    			
    		
    			
    				<li><a href="forumdisplay.php?49-Allgemein-Sonstiges&s=fc69f9e480599c1ed4f36bfe34aeaa7e">Allgemein / Sonstiges</a></li>
    			
    		
    			
    					</ol>
    				</li>
    			
    		
    			
    				<li><a href="forumdisplay.php?9-Applikationen&s=fc69f9e480599c1ed4f36bfe34aeaa7e">Applikationen</a>
    					<ol class="d1">
    						
    		
    			
    				<li><a href="forumdisplay.php?38-LaTeX-Forum&s=fc69f9e480599c1ed4f36bfe34aeaa7e">LaTeX-Forum</a></li>
    			
    		
    			
    					</ol>
    				</li>
    			
    		
    			
    				<li><a href="forumdisplay.php?52-Professionelle-Systemadministration&s=fc69f9e480599c1ed4f36bfe34aeaa7e">Professionelle Systemadministration</a>
    					<ol class="d1">
    						
    		
    			
    				<li><a href="forumdisplay.php?53-Betriebsysteme-Management-Storage-Netzwerk&s=fc69f9e480599c1ed4f36bfe34aeaa7e">Betriebsysteme, Management, Storage, Netzwerk</a></li>
    			
    		
    			
    					</ol>
    				</li>
    			
    		
    			
    				<li><a href="forumdisplay.php?54-Linux&s=fc69f9e480599c1ed4f36bfe34aeaa7e">Linux</a></li>
    			
    		
    			
    				<li><a href="forumdisplay.php?55-www-linuxforen-de&s=fc69f9e480599c1ed4f36bfe34aeaa7e">www.linuxforen.de</a></li>
    			
    		
    		
    	</ul>
    </div>
    <div class="clear"></div>
    	</div>
    </div>
    
    
    
    
    
    
    
    
    	<!-- next / previous links -->
    	<div class="navlinks">
    		
    			<strong>«</strong>
    			<a href="showthread.php?74395-Anschreiben-mit-moderncv-Fragen&s=fc69f9e480599c1ed4f36bfe34aeaa7e&goto=nextoldest" rel="nofollow">Vorheriges Thema</a>
    			|
    			<a href="showthread.php?74395-Anschreiben-mit-moderncv-Fragen&s=fc69f9e480599c1ed4f36bfe34aeaa7e&goto=nextnewest" rel="nofollow">Nächstes Thema</a>
    			<strong>»</strong>
    		
    	</div>
    	<!-- / next / previous links -->
    
    <div id="thread_info" class="thread_info block">
    	
    	
    	
    	
    	
    	
    	<div class="options_block_container">
    		
    		<div class="options_block2">
    			<h4 class="blockhead options_correct">Lesezeichen</h4>
    			<div id="social_bookmarks_list" class="thread_info_block blockbody formcontrols floatcontainer options_correct">
    				<h5 class="blocksubhead">Lesezeichen</h5>
    				<ul class="icon_list"><li class="smallfont">
    	
    		<a href="http://www.mister-wong.de/index.php?action=addurl&bm_url=https%3A%2F%2Fwww.mrunix.de%2Fforums%2Fshowthread.php%3Ft%3D74395&bm_description=Anschreiben+mit+moderncv-+Fragen" target="socialbookmark"><img src="images/misc/bookmarksite_misterwong.gif" alt="An Mister Wong übertragen" /></a>
    	
    	<a href="http://www.mister-wong.de/index.php?action=addurl&bm_url=https%3A%2F%2Fwww.mrunix.de%2Fforums%2Fshowthread.php%3Ft%3D74395&bm_description=Anschreiben+mit+moderncv-+Fragen" target="socialbookmark">Mister Wong</a>
    </li><li class="smallfont">
    	
    		<a href="http://yigg.de/neu?exturl=https%3A%2F%2Fwww.mrunix.de%2Fforums%2Fshowthread.php%3Ft%3D74395&title=Anschreiben+mit+moderncv-+Fragen" target="socialbookmark"><img src="images/misc/bookmarksite_yigg.gif" alt="An YiGG.de übertragen" /></a>
    	
    	<a href="http://yigg.de/neu?exturl=https%3A%2F%2Fwww.mrunix.de%2Fforums%2Fshowthread.php%3Ft%3D74395&title=Anschreiben+mit+moderncv-+Fragen" target="socialbookmark">YiGG.de</a>
    </li><li class="smallfont">
    	
    		<a href="http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk=https%3A%2F%2Fwww.mrunix.de%2Fforums%2Fshowthread.php%3Ft%3D74395&title=Anschreiben+mit+moderncv-+Fragen" target="socialbookmark"><img src="images/misc/bookmarksite_google.gif" alt="An Google übertragen" /></a>
    	
    	<a href="http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk=https%3A%2F%2Fwww.mrunix.de%2Fforums%2Fshowthread.php%3Ft%3D74395&title=Anschreiben+mit+moderncv-+Fragen" target="socialbookmark">Google</a>
    </li><li class="smallfont">
    	
    		<a href="http://del.icio.us/post?url=https%3A%2F%2Fwww.mrunix.de%2Fforums%2Fshowthread.php%3Ft%3D74395&title=Anschreiben+mit+moderncv-+Fragen" target="socialbookmark"><img src="images/misc/bookmarksite_delicious.gif" alt="An del.icio.us übertragen" /></a>
    	
    	<a href="http://del.icio.us/post?url=https%3A%2F%2Fwww.mrunix.de%2Fforums%2Fshowthread.php%3Ft%3D74395&title=Anschreiben+mit+moderncv-+Fragen" target="socialbookmark">del.icio.us</a>
    </li></ul>
    			</div>
    		</div>
    		
    		<div class="options_block">
    			<h4 class="collapse blockhead options_correct">
    				<a class="collapse" id="collapse_posting_rules" href="showthread.php?74395-Anschreiben-mit-moderncv-Fragen#top"><img src="images/buttons/collapse_40b.png" alt="" /></a>
    				Berechtigungen
    			</h4>
    			<div id="posting_rules" class="thread_info_block blockbody formcontrols floatcontainer options_correct">
    				
    <div id="forumrules" class="info_subblock">
    
    	<ul class="youcandoblock">
    		<li>Neue Themen erstellen: <strong>Nein</strong></li>
    		<li>Themen beantworten: <strong>Nein</strong></li>
    		<li>Anhänge hochladen: <strong>Nein</strong></li>
    		<li>Beiträge bearbeiten: <strong>Nein</strong></li>
    		<li> </li>
    	</ul>
    	<div class="bbcodeblock">
    		<ul>
    			<li><a href="misc.php?s=fc69f9e480599c1ed4f36bfe34aeaa7e&do=bbcode" target="_blank">BB-Code</a> ist <strong>an</strong>.</li>
    			<li><a href="misc.php?s=fc69f9e480599c1ed4f36bfe34aeaa7e&do=showsmilies" target="_blank">Smileys</a> sind <strong>an</strong>.</li>
    			<li><a href="misc.php?s=fc69f9e480599c1ed4f36bfe34aeaa7e&do=bbcode#imgcode" target="_blank">[IMG]</a> Code ist <strong>an</strong>.</li>
    			<li><a href="misc.php?s=fc69f9e480599c1ed4f36bfe34aeaa7e&do=bbcode#videocode" target="_blank">[VIDEO]</a> Code ist <strong>an</strong>.</li>
    			<li>HTML-Code ist <strong>an</strong>.</li>
    		</ul>
    	</div>
    	<p class="rules_link"><a href="misc.php?s=fc69f9e480599c1ed4f36bfe34aeaa7e&do=showrules" target="_blank">Foren-Regeln</a></p>
    
    </div>
    
    			</div>
    		</div>
    	</div>
    </div>
    
    
    
    
    
    
    
    
    <div id="footer" class="floatcontainer footer">
    
    	<form action="index.php" method="get" id="footer_select" class="footer_select">
    
    		
    			<select name="styleid" onchange="switch_id(this, 'style')">
    				<optgroup label="Style auswählen"><option class="hidden"></option></optgroup>
    				
    					
    					<optgroup label=" Standard Styles">
    									
    					
    	<option value="6" class="" selected="selected">-- mrunix</option>
    
    	<option value="2" class="" >-- vB4 Standard-Style</option>
    
    					
    					</optgroup>
    										
    				
    				
    					
    					<optgroup label=" Mobile Styles">
    					
    					
    	<option value="3" class="" >-- Standard Mobile Style</option>
    
    					
    					</optgroup>
    										
    				
    			</select>	
    		
    		
    		
    			<select name="langid" onchange="switch_id(this, 'lang')">
    				<optgroup label="Sprache auswählen">
    					
    	<option value="4" class="" selected="selected">-- Deutsch (Du)</option>
    
    	<option value="1" class="" >-- Deutsch (Sie)</option>
    
    				</optgroup>
    			</select>
    		
    	</form>
    
    	<ul id="footer_links" class="footer_links">
    		
    		<li><a href="https://www.mrunix.de/">mrunix.de  -- Impressum -- Datenschutz</a></li>
    		
    		
    		<li><a href="archive/index.php?s=fc69f9e480599c1ed4f36bfe34aeaa7e">Archiv</a></li>
    		
    		
    		
    		<li><a href="showthread.php?74395-Anschreiben-mit-moderncv-Fragen#top" onclick="document.location.hash='top'; return false;">Nach oben</a></li>
    	</ul>
    	
    	
    	
    	
    	<script type="text/javascript">
    	<!--
    		// Main vBulletin Javascript Initialization
    		vBulletin_init();
    	//-->
    	</script>
            
    </div>
    </div> <!-- closing div for body_wrapper -->
    
    <div class="below_body">
    <div id="footer_time" class="shade footer_time">Alle Zeitangaben in WEZ +1. Es ist jetzt <span class="time">01:01</span> Uhr.</div>
    
    <div id="footer_copyright" class="shade footer_copyright">
    	<!-- Do not remove this copyright notice -->
    	Powered by <a href="http://www.vbulletin-germany.com" id="vbulletinlink">vBulletin®</a> Version 4.2.5 (Deutsch)<br />Copyright ©2024 Adduco Digital e.K. und vBulletin Solutions, Inc. Alle Rechte vorbehalten. 
    	<!-- Do not remove this copyright notice -->	
    </div>
    <div id="footer_morecopyright" class="shade footer_morecopyright">
    	<!-- Do not remove cronimage or your scheduled tasks will cease to function -->
    	<img src="https://www.mrunix.de/forums/cron.php?s=fc69f9e480599c1ed4f36bfe34aeaa7e&rand=1714262502" alt="" width="1" height="1" border="0" />
    	<!-- Do not remove cronimage or your scheduled tasks will cease to function -->
    	mrunix.de --  sponsored by Kemm IT <br> <br> <br> <br> <br>
    	
    </div>
     
    
    </div>
    </body>
    </html>