posquit0 / Awesome-CV

:page_facing_up: Awesome CV is LaTeX template for your outstanding job application
LaTeX Project Public License v1.3c
23.03k stars 4.79k forks source link

Reduce blank line height between each title #230

Open fifiteen82726 opened 6 years ago

fifiteen82726 commented 6 years ago

Does anyone know how to reduce the height of the break line? Just like the following picture, I think there is too much space there.

screen shot 2018-09-03 at 9 51 32 pm

My latex now

\cvsection{Professional Organizations}
\begin{cvhonors}
  \cvhonor
    {Taoyuan Rails Group}
    {Core member, promoted and taught Ruby on Rails and other web services}
    {Taoyuan}
    {2015-2016}
  \cvhonor
    {Information Technology Club}
    {Member, Shared technical talk such as Web development, DevOps.}
    {YZU}
    {2015}
\end{cvhonors}
fifiteen82726 commented 6 years ago

I think it's similar issue with https://github.com/posquit0/Awesome-CV/issues/227 but still no one know it.

si-ve commented 6 years ago

A dirty solution is to use \vspace*{-length} . This will reduce the height of the break line.


\cvsection{Professional Organizations}
\begin{cvhonors}
  \cvhonor
    {Taoyuan Rails Group}
    {Core member, promoted and taught Ruby on Rails and other web services}
    {Taoyuan}
    {2015-2016}
  \vspace*{-3mm}
  \cvhonor
    {Information Technology Club}
    {Member, Shared technical talk such as Web development, DevOps.}
    {YZU}
    {2015}
\end{cvhonors}