LaTeX Awesome CV - Space after entries
up vote
0
down vote
favorite
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
New contributor
|
show 2 more comments
up vote
0
down vote
favorite
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
New contributor
Would you like to provide the full code (fromdocumentclass
toend{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 addvspace*{-8pt}
before the nextcventry
.
– LianTze Lim
58 mins ago
|
show 2 more comments
up vote
0
down vote
favorite
up vote
0
down vote
favorite
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
New contributor
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
line-spacing awesome-cv vspace
New contributor
New contributor
edited 38 mins ago
New contributor
asked 3 hours ago
jake
11
11
New contributor
New contributor
Would you like to provide the full code (fromdocumentclass
toend{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 addvspace*{-8pt}
before the nextcventry
.
– LianTze Lim
58 mins ago
|
show 2 more comments
Would you like to provide the full code (fromdocumentclass
toend{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 addvspace*{-8pt}
before the nextcventry
.
– 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
|
show 2 more comments
active
oldest
votes
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.
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Would you like to provide the full code (from
documentclass
toend{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 nextcventry
.– LianTze Lim
58 mins ago