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

Education entries not aligned #229

Open nbecker opened 6 years ago

nbecker commented 6 years ago

My CV was fine with an older version of awesome-CV, but I just did a git pull (update to master), and now the alignment is off. I have 2 education entries. The 2nd seems to be slightly indented relative to the 1st. Any ideas on why? screenshot_20180830_090651

Nimita311 commented 6 years ago

I think you need to put an explicit blank line after the first entry.

nbecker commented 6 years ago

It appears you are correct. So there needs to be a blank between each \cventry? Do the examples show this?

Nimita311 commented 6 years ago

Yeah, the example was formatted in that way but did not tell it explicitly. Without digging into the style sheet, I guess that adding an empty line creates a separate paragraph, otherwise the extra indentation is carried alone.

CyberMew commented 5 years ago

I also had to add \vspace*{-4mm} to remove the vertical spacing between them.

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}
fords commented 4 years ago

How to add dual degree in one university? This below code is causing an error. \cventry {Other Bachelors} % Degree {Other Masters} % Degree {UC Berkeley} % Institution {Berkeley, CA} % Location {2011} % Date(s)