ModernCV:如何更改图片和部分视图的位置

ModernCV:如何更改图片和部分视图的位置

我目前正在写简历,对外貌有一些特殊的要求,但我不知道如何才能让它更有moderncv品位。

我的问题/愿望是:

  1. 在奥地利,图片仍然很重要,但我想节省空间。因此,我希望图片位于右侧。个人信息应位于图片左侧。如下所示:https://www.en.lebenslaufmuster.biz/img/lebenslauf002.jpg(本例仅指个人信息部分)。

    我的图片的长宽比约为 1.6(高度/宽度),高度应约为 5 厘米。

  2. 是否有机会让各个部分的外观有所不同?我想要一个彩色背景,就像这张图片中的绿色背景一样:https://www.jobseeker.com/api/media/documents/78564517-63ba-4f77-a24b-6856d750b2e6/CV-template-Classic.1686651796314.svg

\documentclass[11pt,a4paper,sans]{moderncv} % Font sizes: 10, 11, or 12; paper sizes: a4paper, letterpaper, a5paper, legalpaper, executivepaper or landscape; font families: sans or roman

\moderncvstyle{casual} % CV theme - options include: 'casual' (default), 'classic', 'oldstyle' and 'banking'
\moderncvcolor{blue} % CV color - options include: 'blue' (default), 'orange', 'green', 'red', 'purple', 'grey' and 'black'

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage[scale=0.75]{geometry} % Reduce document margins
\setlength{\hintscolumnwidth}{3.5cm} % Uncomment to change the width of the dates column
%\setlength{\makecvtitlenamewidth}{10cm} % For the 'classic' style, uncomment to adjust the width of the space allocated to your name

% Remove the dot at the end of the line of CVentry
\renewcommand*{\cventry}[6]{%
    \cvline{#1}{%
        {\bfseries#2}%
        \ifx#3\else{, {\slshape#3}}\fi%
        \ifx#4\else{, #4}\fi%
        \ifx#5\else{, #5}\fi%
        \ifx#6\else{\newline{}\begin{minipage}[t]{\linewidth}\small#6\end{minipage}}\fi
}}%

\makeatletter
\renewcommand*{\makeletterclosing}{
    \@closing\\[2em]%
    {\includegraphics[scale=0.45]{example-image}
        \par
        \bfseries \@firstname~\@lastname}%
    \ifthenelse{\isundefined{\@enclosure}}{}{%
        \\%
        \vfill%
        {\color{color2}\itshape\enclname: \@enclosure}}
}

\addto\captionsngerman{\renewcommand\enclname{Anlagen}}

%----------------------------------------------------------------------------------------
%   NAME AND CONTACT INFORMATION SECTION
%----------------------------------------------------------------------------------------

\firstname{Dr. A. Maxime} % Your first name
\familyname{Schuster} % Your last name

% All information in this block is optional, comment out any lines you don't need
\title{Lebenslauf}
\address{Musterstraße 12}{12344 Hamburg}
\mobile{+49 (0)172 132 132}
%\phone{+49 (0)0443 134 134}
\email{[email protected]}
% \homepage{staff.org.edu/~jsmith}{staff.org.edu/$\sim$jsmith} % The first argument is the url for the clickable link, the second argument is the url displayed in the template - this allows special characters to be displayed such as the tilde in this example
%\extrainfo{additional information}

\photo[70pt][0.4pt]{example-image} 

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

\newcommand\mybitem[1]{%
    \parbox[t]{3mm}{\textbullet}\parbox[t]{10cm}{#1}\\[1.6mm]}


\begin{document}
        %----------------------------------------------------------------------------------------
    %   CURRICULUM VITAE
    %----------------------------------------------------------------------------------------
    
    \makecvtitle % Print the CV title
    
    %----------------------------------------------------------------------------------------
    %   EDUCATION SECTION
    %----------------------------------------------------------------------------------------
    
    \section{Persönliche Daten}
    
    \cvitem{Name}{Aaron \underline{Maxime} Schuster}
    
    \cvitem{Adresse:}{Musterstraße 12, 12344 Hamburgs}
    
    \cvitem{Telefon:}{+49 (0)172 132 132}
    
    \cvitem{Staatsangehörigkeit:}{Deutsch}
    
    \cvitem{Geburtsdaten}{8. Juni 1993 in Hamburg}
    
    
    \section{Kernkompetenzen}
    
    
    
    
    \section{Berufserfahrung}
    
    %------------------------------------------------
    \cventry{ab 01/2023}{Wissenschaftlicher Mitarbeiter (PostDoc)}{Universität Hamburg}{}{}{%
        \mybitem{Entwicklung, Konstruktion und Anwendung von experimentellen UHV-Designs und Lösungen}}
        
    
    
    \cventry{10/2020 -- 12/2023}{Forschungen zur Elektronenstoßionisation}{Universität Hamburg}{}{}{%
        \mybitem{Konstruktion und Aufbau von Hochspannungsschränken}}
    
    \cventry{02/2015 -- 08/2019}{Tutor für Laborpraktika für Bsc-Physik-Studenten}{Universität Hamburg}{}{}{%
        \mybitem{Betreuung von jährlich ca. 100 Stundenten der Physik, Materialwissenschaften und Gymnasiallehramt}}
    
    
    \section{Ausbildung}
    

    
    \section{Doktorarbeit}
    

    
    \section{Masters Thesis}
    
    \cvitem{Supervisor}{Prof. Dr. Mustermann}
    \cvitem{Titel}{Fancy Titel}
    
    
    \section{Interessen}
    
    \renewcommand{\listitemsymbol}{-~} % Changes the symbol used for lists
    
    \cvlistdoubleitem{Kochen}{Singen}
    \cvlistdoubleitem{Schreiben}{Lesen}
        
    
    \vspace{2cm}
    ~\\
    ~\\
    Hamburg, \today
    ~\\
    ~\\
    \includegraphics[scale=0.45]{example-image}
    ~\\
    {\bfseries Dr. Mustermann}
    
    %----------------------------------------------------------------------------------------
    
\end{document}

希望更多的图片能够表达我的愿望

相关内容