posquit0 / Awesome-CV

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

Unwanted Spacing on removal of bullet points #50

Open IpshitaC opened 8 years ago

IpshitaC commented 8 years ago

Hi! Thanks for creating such a beautiful template. I'm new to Latex and was compiling my code on sharelatex and modified the education section like this : \cventry {B.S. in Computer Science and Engineering} % Degree {POSTECH(Pohang University of Science and Technology)} % Institution {Pohang, S.Korea} % Location {Mar. 2010 - PRESENT} % Date(s) { % Description(s) bullet points} } This gives me an unwanted vertical space between the cv entries. How can I resolve this while keeping the bullet points field empty? Thanks in advance!

johannesbottcher commented 8 years ago

Leave a blank line and then add \vspace{-\baselineskip} to avoid a vertical line.

nateGeorge commented 4 years ago

To be more explicit, it should look like this:

  \cventry
    {Bachelors} % Degree
    {MIT} % Institution
    {Boston, MA} % Location
    {2016} % Date(s)
    {
    %\vspace{-0.5cm}
      %\begin{cvitems} % Description(s) bullet points
       % \item {Got a Chun Shin-Il Scholarship which is given to promising students in CSE Dept.}
      %\end{cvitems}
    }

    \vspace{-\baselineskip}

  \cventry
    {Other Bachelors} % Degree
    {UC Berkeley} % Institution
    {Berkeley, CA} % Location
    {2011} % Date(s)
    {
    %\vspace{-5mm}
      %\begin{cvitems} % Description(s) bullet points
      %  \item {Got a Chun Shin-Il Scholarship which is given to promising students in CSE Dept.}
      %\end{cvitems}
    }

    \vspace{-\baselineskip}