LaTeX Awesome CV - Space after entries











up vote
0
down vote

favorite












enter image description hereenter image description here



for some sections, i do not wish to put a bullet/description, however a space is automatically generated regardless if the bullet or description is filled out. i want to make this space only generate if i am using a bullet point. photos above show the extra spacing i'm referring to. never used LaTeX before so this is foreign to me.



the code for the section i think should be altered, from the awesome-cv.cls file, is as follows:



% Define an entry of cv information
% Usage: cventry{<position>}{<title>}{<location>}{<date>}{<description>}
newcommand*{cventry}[5]{%
vspace{-2.0mm}
setlengthtabcolsep{0pt}
setlength{extrarowheight}{0pt}
begin{tabular*}{textwidth}{@{extracolsep{fill}} L{textwidth - 4.5cm} R{4.5cm}}
ifempty{#2#3}
{entrypositionstyle{#1} & entrydatestyle{#4} \}
{entrytitlestyle{#2} & entrylocationstyle{#3} \
entrypositionstyle{#1} & entrydatestyle{#4} \}
multicolumn{2}{L{textwidth}}{descriptionstyle{#5}}
end{tabular*}%
}


full code as requested below:



% A4 paper size by default, use 'letterpaper' for US letter
documentclass[11pt, a4paper]{awesome-cv}

% Configure page margins with geometry
geometry{left=1.4cm, top=.8cm, right=1.4cm, bottom=1.8cm, footskip=.5cm}

% Specify the location of the included fonts
fontdir[fonts/]

% Color for highlights
% Awesome Colors: awesome-emerald, awesome-skyblue, awesome-red, awesome-pink, awesome-orange
% awesome-nephritis, awesome-concrete, awesome-darknight
colorlet{awesome}{awesome-darknight}
% Uncomment if you would like to specify your own color
% definecolor{awesome}{HTML}{CA63A8}

% Colors for text
% Uncomment if you would like to specify your own color
% definecolor{darktext}{HTML}{414141}
% definecolor{text}{HTML}{333333}
% definecolor{graytext}{HTML}{5D5D5D}
% definecolor{lighttext}{HTML}{999999}

% Set false if you don't want to highlight section with awesome color
setbool{acvSectionColorHighlight}{false}

% If you would like to change the social information separator from a pipe (|) to something else
renewcommand{acvHeaderSocialSep}{quadtextbarquad}

makeatletter
patchcmd{@sectioncolor}{color}{mdseriescolor}{}{}
makeatother

%-------------------------------------------------------------------------------
% PERSONAL INFORMATION
% Comment any of the lines below if they are not required
%-------------------------------------------------------------------------------
% Available options: circle|rectangle,edge/noedge,left/right
% photo[rectangle,edge,right]{profile}
name{}{}
% position{{enskipcdotpenskip}}
address{}

mobile{}
email{}
homepage{}
% github{posquit0}
% linkedin{posquit0}
% gitlab{gitlab-id}
% stackoverflow{SO-id}{SO-name}
% twitter{@twit}
% skype{skype-id}
% reddit{reddit-id}
% extrainfo{extra informations}

% quote{``Be the change that you want to see in the world."}


%-------------------------------------------------------------------------------
begin{document}

% Print the header with above personal informations
% Give optional argument to change alignment(C: center, L: left, R: right)
makecvheader[C]

% Print the footer with 3 arguments(<left>, <center>, <right>)
% Leave any of these blank if they are not needed
%makecvfooter
% {today}
% {Claud D. Park~~~·~~~Résumé}
% {thepage}


%-------------------------------------------------------------------------------
% CV/RESUME CONTENT
% Each section is imported separately, open each file in turn to modify content
%-------------------------------------------------------------------------------
%input{resume/summary.tex}
input{resume/education.tex}
input{resume/experience.tex}
input{resume/projects.tex}
input{resume/skills.tex}
input{resume/presentation.tex}



%-------------------------------------------------------------------------------
end{document}


the template is found here: https://www.overleaf.com/latex/templates/awesome-cv/dfnvtnhzhhbm










share|improve this question









New contributor




jake is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • Would you like to provide the full code (from documentclass to end{document}) so we can even tune the header for you/
    – Symbol 1
    3 hours ago










  • this seems to be the question asked earlier today, do you have two accounts? tex.stackexchange.com/questions/464388/…
    – David Carlisle
    3 hours ago










  • ^was using a guest account at work, and couldnt log back in when i got home
    – jake
    3 hours ago










  • You may want to add that AwesomeCV template is available at github.com/posquit0/Awesome-CV, or at overleaf.com/latex/templates/awesome-cv/dfnvtnhzhhbm, to help other users locate the template.
    – LianTze Lim
    1 hour ago










  • Probably the fastest hack is to add vspace*{-8pt} before the next cventry.
    – LianTze Lim
    58 mins ago















up vote
0
down vote

favorite












enter image description hereenter image description here



for some sections, i do not wish to put a bullet/description, however a space is automatically generated regardless if the bullet or description is filled out. i want to make this space only generate if i am using a bullet point. photos above show the extra spacing i'm referring to. never used LaTeX before so this is foreign to me.



the code for the section i think should be altered, from the awesome-cv.cls file, is as follows:



% Define an entry of cv information
% Usage: cventry{<position>}{<title>}{<location>}{<date>}{<description>}
newcommand*{cventry}[5]{%
vspace{-2.0mm}
setlengthtabcolsep{0pt}
setlength{extrarowheight}{0pt}
begin{tabular*}{textwidth}{@{extracolsep{fill}} L{textwidth - 4.5cm} R{4.5cm}}
ifempty{#2#3}
{entrypositionstyle{#1} & entrydatestyle{#4} \}
{entrytitlestyle{#2} & entrylocationstyle{#3} \
entrypositionstyle{#1} & entrydatestyle{#4} \}
multicolumn{2}{L{textwidth}}{descriptionstyle{#5}}
end{tabular*}%
}


full code as requested below:



% A4 paper size by default, use 'letterpaper' for US letter
documentclass[11pt, a4paper]{awesome-cv}

% Configure page margins with geometry
geometry{left=1.4cm, top=.8cm, right=1.4cm, bottom=1.8cm, footskip=.5cm}

% Specify the location of the included fonts
fontdir[fonts/]

% Color for highlights
% Awesome Colors: awesome-emerald, awesome-skyblue, awesome-red, awesome-pink, awesome-orange
% awesome-nephritis, awesome-concrete, awesome-darknight
colorlet{awesome}{awesome-darknight}
% Uncomment if you would like to specify your own color
% definecolor{awesome}{HTML}{CA63A8}

% Colors for text
% Uncomment if you would like to specify your own color
% definecolor{darktext}{HTML}{414141}
% definecolor{text}{HTML}{333333}
% definecolor{graytext}{HTML}{5D5D5D}
% definecolor{lighttext}{HTML}{999999}

% Set false if you don't want to highlight section with awesome color
setbool{acvSectionColorHighlight}{false}

% If you would like to change the social information separator from a pipe (|) to something else
renewcommand{acvHeaderSocialSep}{quadtextbarquad}

makeatletter
patchcmd{@sectioncolor}{color}{mdseriescolor}{}{}
makeatother

%-------------------------------------------------------------------------------
% PERSONAL INFORMATION
% Comment any of the lines below if they are not required
%-------------------------------------------------------------------------------
% Available options: circle|rectangle,edge/noedge,left/right
% photo[rectangle,edge,right]{profile}
name{}{}
% position{{enskipcdotpenskip}}
address{}

mobile{}
email{}
homepage{}
% github{posquit0}
% linkedin{posquit0}
% gitlab{gitlab-id}
% stackoverflow{SO-id}{SO-name}
% twitter{@twit}
% skype{skype-id}
% reddit{reddit-id}
% extrainfo{extra informations}

% quote{``Be the change that you want to see in the world."}


%-------------------------------------------------------------------------------
begin{document}

% Print the header with above personal informations
% Give optional argument to change alignment(C: center, L: left, R: right)
makecvheader[C]

% Print the footer with 3 arguments(<left>, <center>, <right>)
% Leave any of these blank if they are not needed
%makecvfooter
% {today}
% {Claud D. Park~~~·~~~Résumé}
% {thepage}


%-------------------------------------------------------------------------------
% CV/RESUME CONTENT
% Each section is imported separately, open each file in turn to modify content
%-------------------------------------------------------------------------------
%input{resume/summary.tex}
input{resume/education.tex}
input{resume/experience.tex}
input{resume/projects.tex}
input{resume/skills.tex}
input{resume/presentation.tex}



%-------------------------------------------------------------------------------
end{document}


the template is found here: https://www.overleaf.com/latex/templates/awesome-cv/dfnvtnhzhhbm










share|improve this question









New contributor




jake is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • Would you like to provide the full code (from documentclass to end{document}) so we can even tune the header for you/
    – Symbol 1
    3 hours ago










  • this seems to be the question asked earlier today, do you have two accounts? tex.stackexchange.com/questions/464388/…
    – David Carlisle
    3 hours ago










  • ^was using a guest account at work, and couldnt log back in when i got home
    – jake
    3 hours ago










  • You may want to add that AwesomeCV template is available at github.com/posquit0/Awesome-CV, or at overleaf.com/latex/templates/awesome-cv/dfnvtnhzhhbm, to help other users locate the template.
    – LianTze Lim
    1 hour ago










  • Probably the fastest hack is to add vspace*{-8pt} before the next cventry.
    – LianTze Lim
    58 mins ago













up vote
0
down vote

favorite









up vote
0
down vote

favorite











enter image description hereenter image description here



for some sections, i do not wish to put a bullet/description, however a space is automatically generated regardless if the bullet or description is filled out. i want to make this space only generate if i am using a bullet point. photos above show the extra spacing i'm referring to. never used LaTeX before so this is foreign to me.



the code for the section i think should be altered, from the awesome-cv.cls file, is as follows:



% Define an entry of cv information
% Usage: cventry{<position>}{<title>}{<location>}{<date>}{<description>}
newcommand*{cventry}[5]{%
vspace{-2.0mm}
setlengthtabcolsep{0pt}
setlength{extrarowheight}{0pt}
begin{tabular*}{textwidth}{@{extracolsep{fill}} L{textwidth - 4.5cm} R{4.5cm}}
ifempty{#2#3}
{entrypositionstyle{#1} & entrydatestyle{#4} \}
{entrytitlestyle{#2} & entrylocationstyle{#3} \
entrypositionstyle{#1} & entrydatestyle{#4} \}
multicolumn{2}{L{textwidth}}{descriptionstyle{#5}}
end{tabular*}%
}


full code as requested below:



% A4 paper size by default, use 'letterpaper' for US letter
documentclass[11pt, a4paper]{awesome-cv}

% Configure page margins with geometry
geometry{left=1.4cm, top=.8cm, right=1.4cm, bottom=1.8cm, footskip=.5cm}

% Specify the location of the included fonts
fontdir[fonts/]

% Color for highlights
% Awesome Colors: awesome-emerald, awesome-skyblue, awesome-red, awesome-pink, awesome-orange
% awesome-nephritis, awesome-concrete, awesome-darknight
colorlet{awesome}{awesome-darknight}
% Uncomment if you would like to specify your own color
% definecolor{awesome}{HTML}{CA63A8}

% Colors for text
% Uncomment if you would like to specify your own color
% definecolor{darktext}{HTML}{414141}
% definecolor{text}{HTML}{333333}
% definecolor{graytext}{HTML}{5D5D5D}
% definecolor{lighttext}{HTML}{999999}

% Set false if you don't want to highlight section with awesome color
setbool{acvSectionColorHighlight}{false}

% If you would like to change the social information separator from a pipe (|) to something else
renewcommand{acvHeaderSocialSep}{quadtextbarquad}

makeatletter
patchcmd{@sectioncolor}{color}{mdseriescolor}{}{}
makeatother

%-------------------------------------------------------------------------------
% PERSONAL INFORMATION
% Comment any of the lines below if they are not required
%-------------------------------------------------------------------------------
% Available options: circle|rectangle,edge/noedge,left/right
% photo[rectangle,edge,right]{profile}
name{}{}
% position{{enskipcdotpenskip}}
address{}

mobile{}
email{}
homepage{}
% github{posquit0}
% linkedin{posquit0}
% gitlab{gitlab-id}
% stackoverflow{SO-id}{SO-name}
% twitter{@twit}
% skype{skype-id}
% reddit{reddit-id}
% extrainfo{extra informations}

% quote{``Be the change that you want to see in the world."}


%-------------------------------------------------------------------------------
begin{document}

% Print the header with above personal informations
% Give optional argument to change alignment(C: center, L: left, R: right)
makecvheader[C]

% Print the footer with 3 arguments(<left>, <center>, <right>)
% Leave any of these blank if they are not needed
%makecvfooter
% {today}
% {Claud D. Park~~~·~~~Résumé}
% {thepage}


%-------------------------------------------------------------------------------
% CV/RESUME CONTENT
% Each section is imported separately, open each file in turn to modify content
%-------------------------------------------------------------------------------
%input{resume/summary.tex}
input{resume/education.tex}
input{resume/experience.tex}
input{resume/projects.tex}
input{resume/skills.tex}
input{resume/presentation.tex}



%-------------------------------------------------------------------------------
end{document}


the template is found here: https://www.overleaf.com/latex/templates/awesome-cv/dfnvtnhzhhbm










share|improve this question









New contributor




jake is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











enter image description hereenter image description here



for some sections, i do not wish to put a bullet/description, however a space is automatically generated regardless if the bullet or description is filled out. i want to make this space only generate if i am using a bullet point. photos above show the extra spacing i'm referring to. never used LaTeX before so this is foreign to me.



the code for the section i think should be altered, from the awesome-cv.cls file, is as follows:



% Define an entry of cv information
% Usage: cventry{<position>}{<title>}{<location>}{<date>}{<description>}
newcommand*{cventry}[5]{%
vspace{-2.0mm}
setlengthtabcolsep{0pt}
setlength{extrarowheight}{0pt}
begin{tabular*}{textwidth}{@{extracolsep{fill}} L{textwidth - 4.5cm} R{4.5cm}}
ifempty{#2#3}
{entrypositionstyle{#1} & entrydatestyle{#4} \}
{entrytitlestyle{#2} & entrylocationstyle{#3} \
entrypositionstyle{#1} & entrydatestyle{#4} \}
multicolumn{2}{L{textwidth}}{descriptionstyle{#5}}
end{tabular*}%
}


full code as requested below:



% A4 paper size by default, use 'letterpaper' for US letter
documentclass[11pt, a4paper]{awesome-cv}

% Configure page margins with geometry
geometry{left=1.4cm, top=.8cm, right=1.4cm, bottom=1.8cm, footskip=.5cm}

% Specify the location of the included fonts
fontdir[fonts/]

% Color for highlights
% Awesome Colors: awesome-emerald, awesome-skyblue, awesome-red, awesome-pink, awesome-orange
% awesome-nephritis, awesome-concrete, awesome-darknight
colorlet{awesome}{awesome-darknight}
% Uncomment if you would like to specify your own color
% definecolor{awesome}{HTML}{CA63A8}

% Colors for text
% Uncomment if you would like to specify your own color
% definecolor{darktext}{HTML}{414141}
% definecolor{text}{HTML}{333333}
% definecolor{graytext}{HTML}{5D5D5D}
% definecolor{lighttext}{HTML}{999999}

% Set false if you don't want to highlight section with awesome color
setbool{acvSectionColorHighlight}{false}

% If you would like to change the social information separator from a pipe (|) to something else
renewcommand{acvHeaderSocialSep}{quadtextbarquad}

makeatletter
patchcmd{@sectioncolor}{color}{mdseriescolor}{}{}
makeatother

%-------------------------------------------------------------------------------
% PERSONAL INFORMATION
% Comment any of the lines below if they are not required
%-------------------------------------------------------------------------------
% Available options: circle|rectangle,edge/noedge,left/right
% photo[rectangle,edge,right]{profile}
name{}{}
% position{{enskipcdotpenskip}}
address{}

mobile{}
email{}
homepage{}
% github{posquit0}
% linkedin{posquit0}
% gitlab{gitlab-id}
% stackoverflow{SO-id}{SO-name}
% twitter{@twit}
% skype{skype-id}
% reddit{reddit-id}
% extrainfo{extra informations}

% quote{``Be the change that you want to see in the world."}


%-------------------------------------------------------------------------------
begin{document}

% Print the header with above personal informations
% Give optional argument to change alignment(C: center, L: left, R: right)
makecvheader[C]

% Print the footer with 3 arguments(<left>, <center>, <right>)
% Leave any of these blank if they are not needed
%makecvfooter
% {today}
% {Claud D. Park~~~·~~~Résumé}
% {thepage}


%-------------------------------------------------------------------------------
% CV/RESUME CONTENT
% Each section is imported separately, open each file in turn to modify content
%-------------------------------------------------------------------------------
%input{resume/summary.tex}
input{resume/education.tex}
input{resume/experience.tex}
input{resume/projects.tex}
input{resume/skills.tex}
input{resume/presentation.tex}



%-------------------------------------------------------------------------------
end{document}


the template is found here: https://www.overleaf.com/latex/templates/awesome-cv/dfnvtnhzhhbm







line-spacing awesome-cv vspace






share|improve this question









New contributor




jake is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




jake is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 38 mins ago





















New contributor




jake is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 3 hours ago









jake

11




11




New contributor




jake is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





jake is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






jake is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












  • Would you like to provide the full code (from documentclass to end{document}) so we can even tune the header for you/
    – Symbol 1
    3 hours ago










  • this seems to be the question asked earlier today, do you have two accounts? tex.stackexchange.com/questions/464388/…
    – David Carlisle
    3 hours ago










  • ^was using a guest account at work, and couldnt log back in when i got home
    – jake
    3 hours ago










  • You may want to add that AwesomeCV template is available at github.com/posquit0/Awesome-CV, or at overleaf.com/latex/templates/awesome-cv/dfnvtnhzhhbm, to help other users locate the template.
    – LianTze Lim
    1 hour ago










  • Probably the fastest hack is to add vspace*{-8pt} before the next cventry.
    – LianTze Lim
    58 mins ago


















  • Would you like to provide the full code (from documentclass to end{document}) so we can even tune the header for you/
    – Symbol 1
    3 hours ago










  • this seems to be the question asked earlier today, do you have two accounts? tex.stackexchange.com/questions/464388/…
    – David Carlisle
    3 hours ago










  • ^was using a guest account at work, and couldnt log back in when i got home
    – jake
    3 hours ago










  • You may want to add that AwesomeCV template is available at github.com/posquit0/Awesome-CV, or at overleaf.com/latex/templates/awesome-cv/dfnvtnhzhhbm, to help other users locate the template.
    – LianTze Lim
    1 hour ago










  • Probably the fastest hack is to add vspace*{-8pt} before the next cventry.
    – LianTze Lim
    58 mins ago
















Would you like to provide the full code (from documentclass to end{document}) so we can even tune the header for you/
– Symbol 1
3 hours ago




Would you like to provide the full code (from documentclass to end{document}) so we can even tune the header for you/
– Symbol 1
3 hours ago












this seems to be the question asked earlier today, do you have two accounts? tex.stackexchange.com/questions/464388/…
– David Carlisle
3 hours ago




this seems to be the question asked earlier today, do you have two accounts? tex.stackexchange.com/questions/464388/…
– David Carlisle
3 hours ago












^was using a guest account at work, and couldnt log back in when i got home
– jake
3 hours ago




^was using a guest account at work, and couldnt log back in when i got home
– jake
3 hours ago












You may want to add that AwesomeCV template is available at github.com/posquit0/Awesome-CV, or at overleaf.com/latex/templates/awesome-cv/dfnvtnhzhhbm, to help other users locate the template.
– LianTze Lim
1 hour ago




You may want to add that AwesomeCV template is available at github.com/posquit0/Awesome-CV, or at overleaf.com/latex/templates/awesome-cv/dfnvtnhzhhbm, to help other users locate the template.
– LianTze Lim
1 hour ago












Probably the fastest hack is to add vspace*{-8pt} before the next cventry.
– LianTze Lim
58 mins ago




Probably the fastest hack is to add vspace*{-8pt} before the next cventry.
– LianTze Lim
58 mins ago















active

oldest

votes











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});






jake is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f464431%2flatex-awesome-cv-space-after-entries%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes








jake is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















jake is a new contributor. Be nice, and check out our Code of Conduct.













jake is a new contributor. Be nice, and check out our Code of Conduct.












jake is a new contributor. Be nice, and check out our Code of Conduct.
















Thanks for contributing an answer to TeX - LaTeX Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f464431%2flatex-awesome-cv-space-after-entries%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

サソリ

広島県道265号伴広島線

Setup Asymptote in Texstudio