Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Different font size in same list #54

Open
edoardottt opened this issue Jun 2, 2023 · 6 comments
Open

Different font size in same list #54

edoardottt opened this issue Jun 2, 2023 · 6 comments

Comments

@edoardottt
Copy link

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
Copy link

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
Copy link
Author

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

@Avijit-ap
Copy link

@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
Copy link
Author

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

@Avijit-ap
Copy link

@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
Copy link
Author

edoardottt commented Feb 7, 2024

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

thanks @Avijit-ap :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants