CV(履历类)风格小调整

CV(履历类)风格小调整

我想将上方文本字段中的复选符号更改为更美观的符号。我该怎么做?

另外,我想稍微早一点结束重点文字,这样整个内容看起来更加有序。

示例图片

\documentclass[
a4paper,
12pt,
]{resume}

\usepackage[ngerman]{babel}
\usepackage{fontspec}
\usepackage{ebgaramond}
\usepackage{ebgaramond}
\usepackage[autostyle]{csquotes}
\usepackage{microtype}
%------------------------------------------------

\name{Max Musti}

\address{geb. 19.09.1999 \\ Angerstr.~1 \\ 84444 Oberhausen} % Main address

%\address{123 Pleasant Lane \\ City, State 12345} % A secondary address (optional)

\address{(+00)~$\cdot$~000~$\cdot$~0000000 \\ [email protected]} % Contact information

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

\begin{document}
    

    \begin{rSection}{Bildungsweg}
        
        \begin{rSubsection}{Dissertation}{ab Februar 2024}{Universität XXX
            }{}
            \item über \enquote{Das Leben des großen Huhns: Historie, sozialpolitische Aspekte} (Betreuer: Prof. Dr. Max Mustermann)
        \end{rSubsection}
        
        \begin{rSubsection}{M.A. Maschinenbau}{Mai 2020 -- März 2022}{West-östliche universität, Abschlussnote: 1.0}{}
            \item Masterarbeit über \enquote{hochwichtige Dinge, die meine Verwandten nicht interessieren} (Bewertung: 1,0, Betreuer: Prof. Dr. Betreuinskan Betreuski)
            \item intensive wissenschaftliche Auseinandersetzung Dingen, die meine Eltern nicht interessieren.
            \item Seminare zu Dingen die mich selbst häufig nicht übermäßig interessiert haben
        \end{rSubsection}
        
        
    \end{rSection}

%----------------------------------------------------------------------------------------
%   EXAMPLE SECTION
%----------------------------------------------------------------------------------------

%\begin{rSection}{Section Name}

%Section content\ldots

%\end{rSection}

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

\end{document}

答案1

现在,我明白了resume.cls正在发生什么,我可以帮助你。

因此,这里有一种方法可以实现这一点,即重新定义以所述样式定义的 2 个宏。

1 更换钻石

你需要做的就是\renewcommand这个;查看符号目录并做出选择,即改变 ding-value:

\usepackage{pifont}
\renewcommand{\addressSep}{\ding{54}}

2 调整右边距

样式在rSubsection命令中使用列表环境。列表接受布局相关选项,如右边距。因此,从样式中复制该代码,\renewenvironment即覆盖它:

  • 关键是这一行\begin{list}{$\cdot$}{\leftmargin=0em,\rightmargin=\RM}% <<< add right list margin
  • 我介绍了\newcommand\RM[0]{3cm}如何设置值

就是这样(除了少了一个逗号,但那是另一个问题)


附言:我引入了逗号。只需将其从两个边距规范之间删除即可,如下所示:

\begin{list}{$\cdot$}{\leftmargin=0em \rightmargin=\RM}% <<< add right list margin

结果

\documentclass[
a4paper,
12pt,
]{resume}

\usepackage[ngerman]{babel}
\usepackage{fontspec}
\usepackage{ebgaramond}
\usepackage{ebgaramond}% <<< probably obsolete
\usepackage[autostyle]{csquotes}
\usepackage{microtype}

% ~~~ redefining the diamonds ~~~~~~~ <<< see https://www.ctan.org/pkg/comprehensive
\usepackage{pifont}
\renewcommand{\addressSep}{\ding{54}}% <<< overwriting definition from resume.cls


% ~~~ redefining list-margins ~~~~~~~~~~~~~~~~~~
%     copy from resume.cls
%     \REnewcommand
\newcommand\RM[0]{3cm}% <<< simplification: just change the right list margin here
%
\renewenvironment{rSubsection}[4]{ % 4 parameters: company name, year(s) employed, job title and location
    \textbf{#1} \hfill {#2} % Bold company name and date to the right
    \ifthenelse{\equal{#3}{}}{}{ % If the third parameter is empty, don't output the job title and location line
        \\ % Job title and location on a new line
        \textit{#3} \hfill \textit{#4} % Output job title and location
    }%
    \smallskip % Vertical whitespace
    \begin{list}{$\cdot$}{\leftmargin=0em,\rightmargin=\RM}% <<< add right list margin
    % \cdot used for bullets, no indentation
        \setlength{\itemsep}{-0.5em} \vspace{-0.5em} % Reduce vertical spacing between items in the list for a tighter look
}{
    \end{list}
    \vspace{0.5em} % Vertical whitespace after the end of the list
}

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

\name{Max Musti}

\address{geb. 19.09.1999 \\ Angerstr.~1 \\ 84444 Oberhausen} % Main address

%\address{123 Pleasant Lane \\ City, State 12345} % A secondary address (optional)

\address{(+00)~$\cdot$~000~$\cdot$~0000000 \\ [email protected]} % Contact information

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

\begin{document}
    

    \begin{rSection}{Bildungsweg}
        
        \begin{rSubsection}{Dissertation}{ab Februar 2024}{Universität XXX
            }{}
            \item über \enquote{Das Leben des großen Huhns: Historie, sozialpolitische Aspekte} (Betreuer: Prof. Dr. Max Mustermann)
        \end{rSubsection}
        
        \begin{rSubsection}{M.A. Maschinenbau}{Mai 2020 -- März 2022}{West-östliche universität, Abschlussnote: 1.0}{}
            \item Masterarbeit über \enquote{hochwichtige Dinge, die meine Verwandten nicht interessieren} (Bewertung: 1,0, Betreuer: Prof. Dr. Betreuinskan Betreuski)
            \item intensive wissenschaftliche Auseinandersetzung Dingen, die meine Eltern nicht interessieren.
            \item Seminare zu Dingen die mich selbst häufig nicht übermäßig interessiert haben
        \end{rSubsection}
        
        
    \end{rSection}

%----------------------------------------------------------------------------------------
%   EXAMPLE SECTION
%----------------------------------------------------------------------------------------

%\begin{rSection}{Section Name}

%Section content\ldots

%\end{rSection}

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

\end{document}

相关内容