Awesome-CV icon indicating copy to clipboard operation
Awesome-CV copied to clipboard

Education entries not aligned

Open nbecker opened this issue 7 years ago • 6 comments

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

nbecker avatar Aug 30 '18 13:08 nbecker

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

Nimita311 avatar Aug 30 '18 21:08 Nimita311

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

nbecker avatar Aug 31 '18 00:08 nbecker

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.

Nimita311 avatar Aug 31 '18 23:08 Nimita311

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

CyberMew avatar Nov 11 '18 18:11 CyberMew

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}

nateGeorge avatar Dec 19 '19 22:12 nateGeorge

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)

fords avatar Dec 31 '19 08:12 fords