-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Comments
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 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 |
@Avijit-ap thanks for the reply, anyway with your code the entire section is messed up (see location and date) |
@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 |
@Avijit-ap thanks! |
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 :
" 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 |
yeah maybe for that one, unfortunately I need the "dissertation" part thanks @Avijit-ap :) |
This is the code:
and this is the result:
Why the first item is bigger than others? How to change this?
The text was updated successfully, but these errors were encountered: