在 Awesome-cv 模板中,如何将所有大写字母更改为大小写字母的混合?

在 Awesome-cv 模板中,如何将所有大写字母更改为大小写字母的混合?

例如在示例格式中,学位全部采用大写字母:

POSTECH(浦项科技大学)“计算机科学与工程学士学位”

我想将其更改为:“计算机科学与工程学士学位”

任何帮助我都会非常感激。谢谢。

我从 Sharelatex 获得了模板:很棒的简历模板

此外,以下是模板的片段(它使用了 awesome-cv.cls 文件):

主文件:Resume.tex

\documentclass[11pt, a4paper]{awesome-cv}

%%% Override a directory location for fonts(default: 'fonts/')
\fontdir[fonts/]

%%% Configure a directory location for sections
\newcommand*{\sectiondir}{resume/}
\colorlet{awesome}{awesome-red}
\usepackage{import}

%%% Essentials
\name{Claud D.}{Park}
\address{246-1002, Gwangmyeongmayrouge Apt. 86, Cheongna lime-ro, Seo-gu, Incheon-si, 22738, Rep. of KOREA}
\mobile{(+82) 10-9030-1843} 
%%% Social
\email{[email protected]}
\homepage{www.posquit0.com}
\github{posquit0}
\linkedin{posquit0}
%%% Optionals
\position{Software Engineer{\enskip\cdotp\enskip}Security Expert}

%%% Make a footer for CV with three arguments(<left>, <center>, <right>)
\makecvfooter
  {\today}
  {Claud D. Park~~~·~~~Résumé}
  {\thepage}

\begin{document}
% Make a header for CV with personal data
\makecvheader

% Import contents
\import{\sectiondir}{education.tex}

\end{document}

支持文件:education.tex

\cvsection{Education}
\begin{cventries}
  \cventry
    {B.S. in Computer Science and Engineering}
    {POSTECH(Pohang University of Science and Technology)}
    {Pohang, S.Korea}
    {Mar. 2010 - PRESENT}
    {
      \begin{cvitems}
        \item {Got a Chun Shin-Il Scholarship which is given to promising students in CSE Dept.}
      \end{cvitems}
    }
\end{cventries}

答案1

\cvitem中第一个参数的格式awesome-cv由 控制,\entrypositionstyle其定义如下awesome-cv.sty

\newcommand*{\entrypositionstyle}[1]{{\fontsize{8pt}{1em}\bodyfont\scshape\color{graytext} #1}} 

要删除全部大写 ( \scshape),可以使用以下命令

\renewcommand*{\entrypositionstyle}[1]{{\fontsize{8pt}{1em}\bodyfont\color{graytext} #1}}

在文档的序言中,如以下 MWE 所示:

\documentclass[11pt, a4paper]{awesome-cv}
\renewcommand*{\entrypositionstyle}[1]{{\fontsize{8pt}{1em}\bodyfont\color{graytext} #1}}

\begin{document}
\cvsection{Education}
\begin{cventries}
  \cventry
    {B.S. in Computer Science and Engineering}
    {POSTECH(Pohang University of Science and Technology)}
    {Pohang, S.Korea}
    {Mar. 2010 - PRESENT}
    {
      \begin{cvitems}
        \item {Got a Chun Shin-Il Scholarship which is given to promising students in CSE Dept.}
      \end{cvitems}
    }
\end{cventries}
\end{document}

在此处输入图片描述

相关内容