Photo option in .sty file for LaTeX CV
up vote
0
down vote
favorite
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
add a comment |
up vote
0
down vote
favorite
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
1
Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it withdocumentclass{...}
, the requiredusepackage
's,begin{document}
, andend{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
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
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
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
graphics cv
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 withdocumentclass{...}
, the requiredusepackage
's,begin{document}
, andend{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
add a comment |
1
Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it withdocumentclass{...}
, the requiredusepackage
's,begin{document}
, andend{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
add a comment |
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.
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
add a comment |
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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%2f408538%2fphoto-option-in-sty-file-for-latex-cv%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
1
Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it with
documentclass{...}
, the requiredusepackage
's,begin{document}
, andend{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