Photo option in .sty file for LaTeX CV











up vote
0
down vote

favorite
1












I have a .sty file for my CV which create a box at the beginning where I could give my name (first column) and my info (2nd column). I want to include my photo (.jpg/.gif) to the right of my info (as third column). The relevant lines of .sty file looks like this:



usepackage{paralist,datetime}
usepackage{hyperref,fancyhdr,enumitem,color}
usepackage[a4paper,text={17.5cm,25.5cm},centering]{geometry}
usepackage[compact,small,sf,bf]{titlesec}
usepackage{kpfonts,dsfont}

%RaggedRight
sloppy

% Header and footer
pagestyle{fancy}
lhead{sf Curriculum Vitae: @name}
rhead{sfthepage}
cfoot{}

% Date format
newdateformat{rjh}{monthname~THEYEAR}
rjh

% Header box
defname#1{def@name{#1}}
definfo#1{def@info{#1}}
newcommand{shadebox}[3][.9]{fcolorbox[gray]{0}{#1}{parbox{#2}{#3}}}

defmaketitle{
thispagestyle{plain}
vspace*{-1.4cm}
shadebox[0.9]{17.3cm}{sfcolor[rgb]{.6,0,0}
hbox to 17cm{begin{tabular}{p{7.4cm}}
LARGEtextbf{@name}\[0.3cm]
Largetextbf{Curriculum Vitae}\[0.6cm]
normalsizetoday
end{tabular}
hfillhbox{fontsize{9}{12}sf
begin{tabular}{@{}rp{7.2cm}@{}}
@info
end{tabular}}}
}
vspace*{0.2cm}}
..
..




Then my .tex file I simply give my name and info like this:



name{XYZ}

info{Address: XYZ}


I would like to ask how I could add the photo also along with name and info.










share|improve this question




















  • 1




    Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it with documentclass{...}, the required usepackage's, begin{document}, and end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.
    – DG'
    Jan 2 at 20:34










  • I have posted a working example below.
    – Sushil Chauhan
    Jan 4 at 11:46















up vote
0
down vote

favorite
1












I have a .sty file for my CV which create a box at the beginning where I could give my name (first column) and my info (2nd column). I want to include my photo (.jpg/.gif) to the right of my info (as third column). The relevant lines of .sty file looks like this:



usepackage{paralist,datetime}
usepackage{hyperref,fancyhdr,enumitem,color}
usepackage[a4paper,text={17.5cm,25.5cm},centering]{geometry}
usepackage[compact,small,sf,bf]{titlesec}
usepackage{kpfonts,dsfont}

%RaggedRight
sloppy

% Header and footer
pagestyle{fancy}
lhead{sf Curriculum Vitae: @name}
rhead{sfthepage}
cfoot{}

% Date format
newdateformat{rjh}{monthname~THEYEAR}
rjh

% Header box
defname#1{def@name{#1}}
definfo#1{def@info{#1}}
newcommand{shadebox}[3][.9]{fcolorbox[gray]{0}{#1}{parbox{#2}{#3}}}

defmaketitle{
thispagestyle{plain}
vspace*{-1.4cm}
shadebox[0.9]{17.3cm}{sfcolor[rgb]{.6,0,0}
hbox to 17cm{begin{tabular}{p{7.4cm}}
LARGEtextbf{@name}\[0.3cm]
Largetextbf{Curriculum Vitae}\[0.6cm]
normalsizetoday
end{tabular}
hfillhbox{fontsize{9}{12}sf
begin{tabular}{@{}rp{7.2cm}@{}}
@info
end{tabular}}}
}
vspace*{0.2cm}}
..
..




Then my .tex file I simply give my name and info like this:



name{XYZ}

info{Address: XYZ}


I would like to ask how I could add the photo also along with name and info.










share|improve this question




















  • 1




    Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it with documentclass{...}, the required usepackage's, begin{document}, and end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.
    – DG'
    Jan 2 at 20:34










  • I have posted a working example below.
    – Sushil Chauhan
    Jan 4 at 11:46













up vote
0
down vote

favorite
1









up vote
0
down vote

favorite
1






1





I have a .sty file for my CV which create a box at the beginning where I could give my name (first column) and my info (2nd column). I want to include my photo (.jpg/.gif) to the right of my info (as third column). The relevant lines of .sty file looks like this:



usepackage{paralist,datetime}
usepackage{hyperref,fancyhdr,enumitem,color}
usepackage[a4paper,text={17.5cm,25.5cm},centering]{geometry}
usepackage[compact,small,sf,bf]{titlesec}
usepackage{kpfonts,dsfont}

%RaggedRight
sloppy

% Header and footer
pagestyle{fancy}
lhead{sf Curriculum Vitae: @name}
rhead{sfthepage}
cfoot{}

% Date format
newdateformat{rjh}{monthname~THEYEAR}
rjh

% Header box
defname#1{def@name{#1}}
definfo#1{def@info{#1}}
newcommand{shadebox}[3][.9]{fcolorbox[gray]{0}{#1}{parbox{#2}{#3}}}

defmaketitle{
thispagestyle{plain}
vspace*{-1.4cm}
shadebox[0.9]{17.3cm}{sfcolor[rgb]{.6,0,0}
hbox to 17cm{begin{tabular}{p{7.4cm}}
LARGEtextbf{@name}\[0.3cm]
Largetextbf{Curriculum Vitae}\[0.6cm]
normalsizetoday
end{tabular}
hfillhbox{fontsize{9}{12}sf
begin{tabular}{@{}rp{7.2cm}@{}}
@info
end{tabular}}}
}
vspace*{0.2cm}}
..
..




Then my .tex file I simply give my name and info like this:



name{XYZ}

info{Address: XYZ}


I would like to ask how I could add the photo also along with name and info.










share|improve this question















I have a .sty file for my CV which create a box at the beginning where I could give my name (first column) and my info (2nd column). I want to include my photo (.jpg/.gif) to the right of my info (as third column). The relevant lines of .sty file looks like this:



usepackage{paralist,datetime}
usepackage{hyperref,fancyhdr,enumitem,color}
usepackage[a4paper,text={17.5cm,25.5cm},centering]{geometry}
usepackage[compact,small,sf,bf]{titlesec}
usepackage{kpfonts,dsfont}

%RaggedRight
sloppy

% Header and footer
pagestyle{fancy}
lhead{sf Curriculum Vitae: @name}
rhead{sfthepage}
cfoot{}

% Date format
newdateformat{rjh}{monthname~THEYEAR}
rjh

% Header box
defname#1{def@name{#1}}
definfo#1{def@info{#1}}
newcommand{shadebox}[3][.9]{fcolorbox[gray]{0}{#1}{parbox{#2}{#3}}}

defmaketitle{
thispagestyle{plain}
vspace*{-1.4cm}
shadebox[0.9]{17.3cm}{sfcolor[rgb]{.6,0,0}
hbox to 17cm{begin{tabular}{p{7.4cm}}
LARGEtextbf{@name}\[0.3cm]
Largetextbf{Curriculum Vitae}\[0.6cm]
normalsizetoday
end{tabular}
hfillhbox{fontsize{9}{12}sf
begin{tabular}{@{}rp{7.2cm}@{}}
@info
end{tabular}}}
}
vspace*{0.2cm}}
..
..




Then my .tex file I simply give my name and info like this:



name{XYZ}

info{Address: XYZ}


I would like to ask how I could add the photo also along with name and info.







graphics cv






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 2 at 20:41









CarLaTeX

28.3k446122




28.3k446122










asked Jan 2 at 20:29









Sushil Chauhan

61




61








  • 1




    Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it with documentclass{...}, the required usepackage's, begin{document}, and end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.
    – DG'
    Jan 2 at 20:34










  • I have posted a working example below.
    – Sushil Chauhan
    Jan 4 at 11:46














  • 1




    Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it with documentclass{...}, the required usepackage's, begin{document}, and end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.
    – DG'
    Jan 2 at 20:34










  • I have posted a working example below.
    – Sushil Chauhan
    Jan 4 at 11:46








1




1




Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it with documentclass{...}, the required usepackage's, begin{document}, and end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.
– DG'
Jan 2 at 20:34




Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it with documentclass{...}, the required usepackage's, begin{document}, and end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.
– DG'
Jan 2 at 20:34












I have posted a working example below.
– Sushil Chauhan
Jan 4 at 11:46




I have posted a working example below.
– Sushil Chauhan
Jan 4 at 11:46










1 Answer
1






active

oldest

votes

















up vote
0
down vote













Here is the working example: .sty file



usepackage{paralist,datetime}
usepackage{hyperref,fancyhdr,enumitem,color}
usepackage[a4paper,text={17.5cm,25.5cm},centering]{geometry}
usepackage[compact,small,sf,bf]{titlesec}
usepackage{kpfonts,dsfont}

sloppy

pagestyle{fancy}
lhead{sf ccc: @name}
rhead{sfthepage}
cfoot{}


defname#1{def@name{#1}}
definfo#1{def@info{#1}}
newcommand{shadebox}[3][.9]{fcolorbox[gray]{0}{#1}{parbox{#2}{#3}}}

defmaketitle{
thispagestyle{plain}
vspace*{-1.4cm}
shadebox[0.9]{17.3cm}{sfcolor[rgb]{.6,0,0}
hbox to 17cm{begin{tabular}{p{7.4cm}}
LARGEtextbf{@name}\[0.3cm]
Largetextbf{Curriculum Vitae}\[0.6cm]
normalsizetoday
end{tabular}
hfillhbox{fontsize{9}{12}sf
begin{tabular}{@{}rp{7.2cm}@{}}
@info
end{tabular}}}
}
vspace*{0.2cm}}

titlelabel{}
titlespacing{section}{0pt}{2ex}{1ex}
titleformat*{section}{color[rgb]{0.6,0,0}largesfbfseries}
titlespacing{subsection}{0pt}{1ex}{0.5ex}

setlength{parskip}{0ex}
setlength{parindent}{0em}
setlength{headheight}{15pt}
setlength{tabcolsep}{0.15cm}
clubpenalty = 10000
widowpenalty = 10000
setlist{itemsep=1pt}
setdescription{labelwidth=1.2cm,leftmargin=1.5cm,labelindent=1.5cm,font=rm}


-------
myCV.tex file:

documentclass[a4paper,11pt]{article}
usepackage{/Users/sushilchauhan/cv/cv}
usepackage{setspace}
usepackage{multicol}
usepackage{url}
usepackage{hyperref}
usepackage{color,soul}
usepackage{longtable}
definecolor{lightgray}{gray}{0.85}
sethlcolor{lightgray}
defmet{mbox{${hbox{$E$kern-0.45emlower-.1exhbox{bf{/}}}}_T$}~}

name{Dr. XYZ}
info{Address: & XYZ\
phone: & XYZ}

begin{document}

vspace{25pt}
maketitle

end{document}




I hope this help.






share|improve this answer























  • highlight your code and press the curly braces button to format your code.
    – Artificial Stupidity
    Jan 4 at 3:28










  • You asked a question and answered it with duplicate accounts. Please contact TeX.SE Team to merge them.
    – Cragfelt
    Jan 4 at 3:43










  • btw to run the above files one need to change the path /Users/sushilchauhan/cv/ accordingly.
    – Sushil Chauhan
    Jan 4 at 11:32










  • anyone know the solution??
    – Sushil Chauhan
    Jan 8 at 5:11











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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f408538%2fphoto-option-in-sty-file-for-latex-cv%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
0
down vote













Here is the working example: .sty file



usepackage{paralist,datetime}
usepackage{hyperref,fancyhdr,enumitem,color}
usepackage[a4paper,text={17.5cm,25.5cm},centering]{geometry}
usepackage[compact,small,sf,bf]{titlesec}
usepackage{kpfonts,dsfont}

sloppy

pagestyle{fancy}
lhead{sf ccc: @name}
rhead{sfthepage}
cfoot{}


defname#1{def@name{#1}}
definfo#1{def@info{#1}}
newcommand{shadebox}[3][.9]{fcolorbox[gray]{0}{#1}{parbox{#2}{#3}}}

defmaketitle{
thispagestyle{plain}
vspace*{-1.4cm}
shadebox[0.9]{17.3cm}{sfcolor[rgb]{.6,0,0}
hbox to 17cm{begin{tabular}{p{7.4cm}}
LARGEtextbf{@name}\[0.3cm]
Largetextbf{Curriculum Vitae}\[0.6cm]
normalsizetoday
end{tabular}
hfillhbox{fontsize{9}{12}sf
begin{tabular}{@{}rp{7.2cm}@{}}
@info
end{tabular}}}
}
vspace*{0.2cm}}

titlelabel{}
titlespacing{section}{0pt}{2ex}{1ex}
titleformat*{section}{color[rgb]{0.6,0,0}largesfbfseries}
titlespacing{subsection}{0pt}{1ex}{0.5ex}

setlength{parskip}{0ex}
setlength{parindent}{0em}
setlength{headheight}{15pt}
setlength{tabcolsep}{0.15cm}
clubpenalty = 10000
widowpenalty = 10000
setlist{itemsep=1pt}
setdescription{labelwidth=1.2cm,leftmargin=1.5cm,labelindent=1.5cm,font=rm}


-------
myCV.tex file:

documentclass[a4paper,11pt]{article}
usepackage{/Users/sushilchauhan/cv/cv}
usepackage{setspace}
usepackage{multicol}
usepackage{url}
usepackage{hyperref}
usepackage{color,soul}
usepackage{longtable}
definecolor{lightgray}{gray}{0.85}
sethlcolor{lightgray}
defmet{mbox{${hbox{$E$kern-0.45emlower-.1exhbox{bf{/}}}}_T$}~}

name{Dr. XYZ}
info{Address: & XYZ\
phone: & XYZ}

begin{document}

vspace{25pt}
maketitle

end{document}




I hope this help.






share|improve this answer























  • highlight your code and press the curly braces button to format your code.
    – Artificial Stupidity
    Jan 4 at 3:28










  • You asked a question and answered it with duplicate accounts. Please contact TeX.SE Team to merge them.
    – Cragfelt
    Jan 4 at 3:43










  • btw to run the above files one need to change the path /Users/sushilchauhan/cv/ accordingly.
    – Sushil Chauhan
    Jan 4 at 11:32










  • anyone know the solution??
    – Sushil Chauhan
    Jan 8 at 5:11















up vote
0
down vote













Here is the working example: .sty file



usepackage{paralist,datetime}
usepackage{hyperref,fancyhdr,enumitem,color}
usepackage[a4paper,text={17.5cm,25.5cm},centering]{geometry}
usepackage[compact,small,sf,bf]{titlesec}
usepackage{kpfonts,dsfont}

sloppy

pagestyle{fancy}
lhead{sf ccc: @name}
rhead{sfthepage}
cfoot{}


defname#1{def@name{#1}}
definfo#1{def@info{#1}}
newcommand{shadebox}[3][.9]{fcolorbox[gray]{0}{#1}{parbox{#2}{#3}}}

defmaketitle{
thispagestyle{plain}
vspace*{-1.4cm}
shadebox[0.9]{17.3cm}{sfcolor[rgb]{.6,0,0}
hbox to 17cm{begin{tabular}{p{7.4cm}}
LARGEtextbf{@name}\[0.3cm]
Largetextbf{Curriculum Vitae}\[0.6cm]
normalsizetoday
end{tabular}
hfillhbox{fontsize{9}{12}sf
begin{tabular}{@{}rp{7.2cm}@{}}
@info
end{tabular}}}
}
vspace*{0.2cm}}

titlelabel{}
titlespacing{section}{0pt}{2ex}{1ex}
titleformat*{section}{color[rgb]{0.6,0,0}largesfbfseries}
titlespacing{subsection}{0pt}{1ex}{0.5ex}

setlength{parskip}{0ex}
setlength{parindent}{0em}
setlength{headheight}{15pt}
setlength{tabcolsep}{0.15cm}
clubpenalty = 10000
widowpenalty = 10000
setlist{itemsep=1pt}
setdescription{labelwidth=1.2cm,leftmargin=1.5cm,labelindent=1.5cm,font=rm}


-------
myCV.tex file:

documentclass[a4paper,11pt]{article}
usepackage{/Users/sushilchauhan/cv/cv}
usepackage{setspace}
usepackage{multicol}
usepackage{url}
usepackage{hyperref}
usepackage{color,soul}
usepackage{longtable}
definecolor{lightgray}{gray}{0.85}
sethlcolor{lightgray}
defmet{mbox{${hbox{$E$kern-0.45emlower-.1exhbox{bf{/}}}}_T$}~}

name{Dr. XYZ}
info{Address: & XYZ\
phone: & XYZ}

begin{document}

vspace{25pt}
maketitle

end{document}




I hope this help.






share|improve this answer























  • highlight your code and press the curly braces button to format your code.
    – Artificial Stupidity
    Jan 4 at 3:28










  • You asked a question and answered it with duplicate accounts. Please contact TeX.SE Team to merge them.
    – Cragfelt
    Jan 4 at 3:43










  • btw to run the above files one need to change the path /Users/sushilchauhan/cv/ accordingly.
    – Sushil Chauhan
    Jan 4 at 11:32










  • anyone know the solution??
    – Sushil Chauhan
    Jan 8 at 5:11













up vote
0
down vote










up vote
0
down vote









Here is the working example: .sty file



usepackage{paralist,datetime}
usepackage{hyperref,fancyhdr,enumitem,color}
usepackage[a4paper,text={17.5cm,25.5cm},centering]{geometry}
usepackage[compact,small,sf,bf]{titlesec}
usepackage{kpfonts,dsfont}

sloppy

pagestyle{fancy}
lhead{sf ccc: @name}
rhead{sfthepage}
cfoot{}


defname#1{def@name{#1}}
definfo#1{def@info{#1}}
newcommand{shadebox}[3][.9]{fcolorbox[gray]{0}{#1}{parbox{#2}{#3}}}

defmaketitle{
thispagestyle{plain}
vspace*{-1.4cm}
shadebox[0.9]{17.3cm}{sfcolor[rgb]{.6,0,0}
hbox to 17cm{begin{tabular}{p{7.4cm}}
LARGEtextbf{@name}\[0.3cm]
Largetextbf{Curriculum Vitae}\[0.6cm]
normalsizetoday
end{tabular}
hfillhbox{fontsize{9}{12}sf
begin{tabular}{@{}rp{7.2cm}@{}}
@info
end{tabular}}}
}
vspace*{0.2cm}}

titlelabel{}
titlespacing{section}{0pt}{2ex}{1ex}
titleformat*{section}{color[rgb]{0.6,0,0}largesfbfseries}
titlespacing{subsection}{0pt}{1ex}{0.5ex}

setlength{parskip}{0ex}
setlength{parindent}{0em}
setlength{headheight}{15pt}
setlength{tabcolsep}{0.15cm}
clubpenalty = 10000
widowpenalty = 10000
setlist{itemsep=1pt}
setdescription{labelwidth=1.2cm,leftmargin=1.5cm,labelindent=1.5cm,font=rm}


-------
myCV.tex file:

documentclass[a4paper,11pt]{article}
usepackage{/Users/sushilchauhan/cv/cv}
usepackage{setspace}
usepackage{multicol}
usepackage{url}
usepackage{hyperref}
usepackage{color,soul}
usepackage{longtable}
definecolor{lightgray}{gray}{0.85}
sethlcolor{lightgray}
defmet{mbox{${hbox{$E$kern-0.45emlower-.1exhbox{bf{/}}}}_T$}~}

name{Dr. XYZ}
info{Address: & XYZ\
phone: & XYZ}

begin{document}

vspace{25pt}
maketitle

end{document}




I hope this help.






share|improve this answer














Here is the working example: .sty file



usepackage{paralist,datetime}
usepackage{hyperref,fancyhdr,enumitem,color}
usepackage[a4paper,text={17.5cm,25.5cm},centering]{geometry}
usepackage[compact,small,sf,bf]{titlesec}
usepackage{kpfonts,dsfont}

sloppy

pagestyle{fancy}
lhead{sf ccc: @name}
rhead{sfthepage}
cfoot{}


defname#1{def@name{#1}}
definfo#1{def@info{#1}}
newcommand{shadebox}[3][.9]{fcolorbox[gray]{0}{#1}{parbox{#2}{#3}}}

defmaketitle{
thispagestyle{plain}
vspace*{-1.4cm}
shadebox[0.9]{17.3cm}{sfcolor[rgb]{.6,0,0}
hbox to 17cm{begin{tabular}{p{7.4cm}}
LARGEtextbf{@name}\[0.3cm]
Largetextbf{Curriculum Vitae}\[0.6cm]
normalsizetoday
end{tabular}
hfillhbox{fontsize{9}{12}sf
begin{tabular}{@{}rp{7.2cm}@{}}
@info
end{tabular}}}
}
vspace*{0.2cm}}

titlelabel{}
titlespacing{section}{0pt}{2ex}{1ex}
titleformat*{section}{color[rgb]{0.6,0,0}largesfbfseries}
titlespacing{subsection}{0pt}{1ex}{0.5ex}

setlength{parskip}{0ex}
setlength{parindent}{0em}
setlength{headheight}{15pt}
setlength{tabcolsep}{0.15cm}
clubpenalty = 10000
widowpenalty = 10000
setlist{itemsep=1pt}
setdescription{labelwidth=1.2cm,leftmargin=1.5cm,labelindent=1.5cm,font=rm}


-------
myCV.tex file:

documentclass[a4paper,11pt]{article}
usepackage{/Users/sushilchauhan/cv/cv}
usepackage{setspace}
usepackage{multicol}
usepackage{url}
usepackage{hyperref}
usepackage{color,soul}
usepackage{longtable}
definecolor{lightgray}{gray}{0.85}
sethlcolor{lightgray}
defmet{mbox{${hbox{$E$kern-0.45emlower-.1exhbox{bf{/}}}}_T$}~}

name{Dr. XYZ}
info{Address: & XYZ\
phone: & XYZ}

begin{document}

vspace{25pt}
maketitle

end{document}




I hope this help.







share|improve this answer














share|improve this answer



share|improve this answer








edited Jan 4 at 3:40









Cragfelt

2,8313928




2,8313928










answered Jan 4 at 3:24









Sushil Chauhan

61




61












  • highlight your code and press the curly braces button to format your code.
    – Artificial Stupidity
    Jan 4 at 3:28










  • You asked a question and answered it with duplicate accounts. Please contact TeX.SE Team to merge them.
    – Cragfelt
    Jan 4 at 3:43










  • btw to run the above files one need to change the path /Users/sushilchauhan/cv/ accordingly.
    – Sushil Chauhan
    Jan 4 at 11:32










  • anyone know the solution??
    – Sushil Chauhan
    Jan 8 at 5:11


















  • highlight your code and press the curly braces button to format your code.
    – Artificial Stupidity
    Jan 4 at 3:28










  • You asked a question and answered it with duplicate accounts. Please contact TeX.SE Team to merge them.
    – Cragfelt
    Jan 4 at 3:43










  • btw to run the above files one need to change the path /Users/sushilchauhan/cv/ accordingly.
    – Sushil Chauhan
    Jan 4 at 11:32










  • anyone know the solution??
    – Sushil Chauhan
    Jan 8 at 5:11
















highlight your code and press the curly braces button to format your code.
– Artificial Stupidity
Jan 4 at 3:28




highlight your code and press the curly braces button to format your code.
– Artificial Stupidity
Jan 4 at 3:28












You asked a question and answered it with duplicate accounts. Please contact TeX.SE Team to merge them.
– Cragfelt
Jan 4 at 3:43




You asked a question and answered it with duplicate accounts. Please contact TeX.SE Team to merge them.
– Cragfelt
Jan 4 at 3:43












btw to run the above files one need to change the path /Users/sushilchauhan/cv/ accordingly.
– Sushil Chauhan
Jan 4 at 11:32




btw to run the above files one need to change the path /Users/sushilchauhan/cv/ accordingly.
– Sushil Chauhan
Jan 4 at 11:32












anyone know the solution??
– Sushil Chauhan
Jan 8 at 5:11




anyone know the solution??
– Sushil Chauhan
Jan 8 at 5:11


















draft saved

draft discarded




















































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%2f408538%2fphoto-option-in-sty-file-for-latex-cv%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

Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

ComboBox Display Member on multiple fields

Is it possible to collect Nectar points via Trainline?