如何在 awesome-cv 模式下减少表格行空间

如何在 awesome-cv 模式下减少表格行空间

我想要以下之间的空间:

  1. “德意志银行”栏和“夏季分析师”栏变小
  2. “德意志银行”栏和“商业贷款...”栏变小 在此处输入图片描述 我已经尝试过 \def\arraystretch{0.88},但它不起作用。我使用了 tabular 函数,如下所示

您可以通过以下方式找到初始代码: https://www.overleaf.com/10585538rcwmgzkhrzrx#/39579324/ 单击文件夹“resume”并找到“awesome-cv.cls”:我认为其第 172-184 行可以更改。然后找到“resume.tex”:其第 187-217 行已打印在屏幕截图中。

或者这些代码(但它们在某些环境中看起来似乎不太好,因此我建议直接单击链接并找到初始代码,谢谢):

\documentclass[10pt, a4paper]{awesome-cv}
\geometry{left=0.4cm, top=.3cm, right=0.4cm, bottom=0cm, footskip=0cm}

\newcommand*{\cventry}[5]{%
  \def\arraystretch{0.88}
  \vspace{-2.2mm}
  \setlength\tabcolsep{0pt}
  \setlength{\extrarowheight}{0pt}
  \begin{tabular*}{\textwidth}{@{\extracolsep{\fill}} L{\textwidth - 4.5cm} R{4.5cm}}
    \ifempty{#2#3}
      {\entrypositionstyle{#1} & \entrydatestyle{#4} \\}
      {\entrytitlestyle{#2} & \entrylocationstyle{#3} \\
      \entrypositionstyle{#1} & \entrydatestyle{#4} \\}
    \multicolumn{2}{L{\textwidth}}{\descriptionstyle{#5}}
  \end{tabular*}%
}

\cvsection{Work Experience}
\begin{cventries}
%---------------------------------------------------------
  \cventry
    {Summer Analyst, Corporate Finance Dept.} % Role
    {ICBC} % Title
    {\color{black} {Beijing, China}} % Location
    {06-08/2016} % Date(s)
    {
      \begin{cvitems} % Description(s)
        \item {Assisted the sales team in product analysis for 4 quarters and compared net profit of clearing, investment banking, internet financing, collaborating, and wealth management services}
        \item {Collated and analyzed data of world demography, China’s macro policies and capital return rate by industry; concluded 5 factors that have influence on bond market}
        \item {Participated in 3 client negotiation meetings with a state-owned corporation; framed memos, identified cooperation opportunities by releasing co-branded credit cards and share our customers’ points}
        \item {Compiled a one billion bond-raising book for a state-owned AA+ hydroelectric company to supplement operating cash flow and replace business loans; advised to launch in Sep, 2016 at a lower interest rate}
      \end{cvitems}
    }

  \cventry
    {Summer Analyst, Corporate Finance Dept.} % Role
    {Deutsche Bank} % Title
    {\color{black} {Beijing, China}} % Location
    {07/2016} % Date(s)
    {
      \begin{cvitems} % Description(s)
        \item {Assisted the sales team in product analysis for 4 quarters and compared net profit of clearing, investment banking, internet financing, collaborating, and wealth management services}
        \item {Collated and analyzed data of world demography, China’s macro policies and capital return rate by industry; concluded 5 factors that have influence on bond market}
        \item {Participated in 3 client negotiation meetings with a state-owned corporation; framed memos, identified cooperation opportunities by releasing co-branded credit cards and share our customers’ points}
        \item {Compiled a one billion bond-raising book for a state-owned AA+ hydroelectric company to supplement operating cash flow and replace business loans; advised to launch in Sep, 2016 at a lower interest rate}
      \end{cvitems}
    }
%---------------------------------------------------------
\end{cventries}
\end{document}

提前感谢您的技术和善意。

答案1

为了减少两行之间的空间,一种快速而肮脏的方法可能是通过替换手动添加一些负空间

\\

\\[-0.5cm]

相关内容