sb2nov / resume

Software developer resume in Latex
http://sourabhbajaj.com
MIT License
4.9k stars 1.37k forks source link

Different font size in same list #54

Open edoardottt opened 1 year ago

edoardottt commented 1 year ago

This is the code:

%-----------EDUCATION-----------------
\section{Education}
    \resumeSubHeadingListStart
    \resumeSubheading
      {Sapienza University}{Rome, Italy}
      {Master's Degree in Cybersecurity; 109/110}{Oct. 2020 -- May 2023}\\
      \vspace{0.3cm}\small{Dissertation: "Proposal and Investigation of a framework for Cross App Poisoning\\attacks detection in Software Defined Networks."}
    \resumeSubheading
      {Sapienza University}{Rome, Italy}
      {Bachelor's Degree in Computer Science; 103/110}{Sept. 2016 -- Oct. 2020}\\
      \vspace{0.3cm}\small{Dissertation: "Design and development of the End User Development system in SeismoCloud".}
    \resumeSubheading
      {Fabio Besta Scientific High School}{Orte, Italy}
      {Scientific High School Diploma; 71/100}{Sept. 2011 -- July 2016}
  \resumeSubHeadingListEnd

and this is the result: Screenshot from 2023-06-02 18-29-37

Why the first item is bigger than others? How to change this?

Avijit-ap commented 5 months ago

The discrepancy in the size of the first item compared to the others is likely due to the additional text ("Dissertation" information) following the first \resumeSubheading. This extra text causes the spacing to appear larger.

To fix this, you can adjust the vertical spacing consistently for all items. Here's how you can do it:

\section{Education}
\resumeSubHeadingListStart
    \item
    {\textbf{Sapienza University}}{Rome, Italy}
      {Master's Degree in Cybersecurity; 109/110}{Oct. 2020 -- May 2023}
      \vspace{0.1cm}\newline
      \small{Dissertation: "Proposal and Investigation of a framework for Cross App Poisoning attacks detection in Software Defined Networks."}

    \item
    {\textbf{Sapienza University}}{Rome, Italy}
      {Bachelor's Degree in Computer Science; 103/110}{Sept. 2016 -- Oct. 2020}
      \vspace{0.1cm}\newline
      \small{Dissertation: "Design and development of the End User Development system in SeismoCloud".}

    \item
    {\textbf{Fabio Besta Scientific High School}}{Orte, Italy}
      {Scientific High School Diploma; 71/100}{Sept. 2011 -- July 2016}
\resumeSubHeadingListEnd

In this revised version, I've adjusted the spacing for each item to \vspace{0.1cm} to make them consistent. You may need to adjust the spacing value to your preference.

edoardottt commented 5 months ago

@Avijit-ap thanks for the reply, anyway with your code the entire section is messed up (see location and date)

Avijit-ap commented 5 months ago

@edoardottt I'm sorry hear that buddy, would it be possible to share your latex that you're working on? I want to work on it

edoardottt commented 5 months ago

@Avijit-ap thanks! https://pastebin.com/yL31i2Jp be sure to download it, it will expire in 1 hour

Avijit-ap commented 5 months ago

@edoardottt

Hi buddy! I think I got the reason for this issue, this is happening due to adding "vspace{0.3cm}" in the "\resumeSubheading" .

The \vspace command adds a vertical space before the next subheading, which pushes the subheading down and making it appear shrunk.

Replace with this : "

%-----------EDUCATION-----------------
\section{Education}
    \resumeSubHeadingListStart
    \resumeSubheading
      {Sapienza University}{Rome, Italy}
      {Master's Degree in Cybersecurity; 109/110}{Oct. 2020 -- May 2023}\\
    %  \vspace{0.3cm}\small{Dissertation: "Proposal and Investigation of a framework for Cross App Poisoning\\attacks detection in Software Defined Networks."}
    \resumeSubheading
      {Sapienza University}{Rome, Italy}
      {Bachelor's Degree in Computer Science; 103/110}{Sept. 2016 -- Oct. 2020}\\
     % \vspace{0.3cm}\small{Dissertation: "Design and development of the End User Development system in SeismoCloud".}
    \resumeSubheading
      {Fabio Besta Scientific High School}{Orte, Italy}
      {Scientific High School Diploma; 71/100}{Sept. 2011 -- July 2016}
  \resumeSubHeadingListEnd

"

I am trying to figure out what could be used to add the extra details over there, but until then this is what I have found

edoardottt commented 5 months ago

yeah maybe for that one, unfortunately I need the "dissertation" part

thanks @Avijit-ap :)