How to put author affiliations to the bottom left corner in a two-column page
up vote
0
down vote
favorite
See the template below. The affiliation looks like footnote integrated into text (actually, this is literally the saying in the journal format document).
two-column affiliation
|
show 1 more comment
up vote
0
down vote
favorite
See the template below. The affiliation looks like footnote integrated into text (actually, this is literally the saying in the journal format document).
two-column affiliation
1
Is that a MSWord format?
– Sigur
Nov 16 at 22:44
1
Yes, it is. Only a formatted Word document is given.
– Bs He
Nov 17 at 0:12
@BsHe: This site is dedicated to content related to (La)TeX and related systems. This excludes MS Word. Do you have any (La)TeX problems specific to the template?
– Werner
Nov 17 at 0:16
1
@Werner I think that Bs He wants to create the same with LaTeX, so he uses MS Word to explain his idea.
– Dũng Vũ
Nov 17 at 2:08
@Werner I want to create the same format in latex. Thanks.
– Bs He
Nov 17 at 3:50
|
show 1 more comment
up vote
0
down vote
favorite
up vote
0
down vote
favorite
See the template below. The affiliation looks like footnote integrated into text (actually, this is literally the saying in the journal format document).
two-column affiliation
See the template below. The affiliation looks like footnote integrated into text (actually, this is literally the saying in the journal format document).
two-column affiliation
two-column affiliation
asked Nov 16 at 22:32
Bs He
206
206
1
Is that a MSWord format?
– Sigur
Nov 16 at 22:44
1
Yes, it is. Only a formatted Word document is given.
– Bs He
Nov 17 at 0:12
@BsHe: This site is dedicated to content related to (La)TeX and related systems. This excludes MS Word. Do you have any (La)TeX problems specific to the template?
– Werner
Nov 17 at 0:16
1
@Werner I think that Bs He wants to create the same with LaTeX, so he uses MS Word to explain his idea.
– Dũng Vũ
Nov 17 at 2:08
@Werner I want to create the same format in latex. Thanks.
– Bs He
Nov 17 at 3:50
|
show 1 more comment
1
Is that a MSWord format?
– Sigur
Nov 16 at 22:44
1
Yes, it is. Only a formatted Word document is given.
– Bs He
Nov 17 at 0:12
@BsHe: This site is dedicated to content related to (La)TeX and related systems. This excludes MS Word. Do you have any (La)TeX problems specific to the template?
– Werner
Nov 17 at 0:16
1
@Werner I think that Bs He wants to create the same with LaTeX, so he uses MS Word to explain his idea.
– Dũng Vũ
Nov 17 at 2:08
@Werner I want to create the same format in latex. Thanks.
– Bs He
Nov 17 at 3:50
1
1
Is that a MSWord format?
– Sigur
Nov 16 at 22:44
Is that a MSWord format?
– Sigur
Nov 16 at 22:44
1
1
Yes, it is. Only a formatted Word document is given.
– Bs He
Nov 17 at 0:12
Yes, it is. Only a formatted Word document is given.
– Bs He
Nov 17 at 0:12
@BsHe: This site is dedicated to content related to (La)TeX and related systems. This excludes MS Word. Do you have any (La)TeX problems specific to the template?
– Werner
Nov 17 at 0:16
@BsHe: This site is dedicated to content related to (La)TeX and related systems. This excludes MS Word. Do you have any (La)TeX problems specific to the template?
– Werner
Nov 17 at 0:16
1
1
@Werner I think that Bs He wants to create the same with LaTeX, so he uses MS Word to explain his idea.
– Dũng Vũ
Nov 17 at 2:08
@Werner I think that Bs He wants to create the same with LaTeX, so he uses MS Word to explain his idea.
– Dũng Vũ
Nov 17 at 2:08
@Werner I want to create the same format in latex. Thanks.
– Bs He
Nov 17 at 3:50
@Werner I want to create the same format in latex. Thanks.
– Bs He
Nov 17 at 3:50
|
show 1 more comment
1 Answer
1
active
oldest
votes
up vote
0
down vote
The following somewhat replicates the template you're showing. It's not automated, but that can be done if needed.
documentclass[10pt]{article}
usepackage{geometry,sectsty,etoolbox}
usepackage{newtxtext,newtxmath}
geometry{
margin = 1in,
twocolumn
}
sectionfont{normalfontlargescshapecentering}
renewcommand{thesection}{Roman{section}}
subsectionfont{normalfontnormalsizeitshape}
renewcommand{thesubsection}{Alph{subsection}}
makeatletter
renewcommand{@seccntformat}[1]{csname the#1endcsname.space}
patchcmd{@maketitle}% <cmd>
{vskip 1em{large @date}}% <search>
{}% <replace>
{}{}% <success><failure>
makeatother
renewenvironment{abstract}
{partextbf{itshape Abstract}---ignorespaces}
{parmedskip}
newenvironment{keywords}
{partextbf{itshape Keywords}---ignorespaces}
{parmedskip}
title{Preparation of Papers - Paper Title}
author{%
AuthorName Lastname%
rlap{textsuperscript{1}},
AuthorName Lastname%
rlap{textsuperscript{2}},
AuthorName Lastname%
rlap{textsuperscript{3}}%
}
usepackage{lipsum}
begin{document}
twocolumn[maketitle]
footnotetext[1]{AuthorName Lastname is with the National Institute of Standards and Technology,
Boulder, CO 80305 USA (correspondence author's phone: XXX-XXX-XXXX; email: who@cares.com}
footnotetext[2]{AuthorName Lastname was with Rice University, Houston, TX 77005 USA.
He is now with the Department of Physics, Colorado State University, Fort Collins,
CO 80523 USA (email: who@cares.com)}
footnotetext[3]{AuthorName Lastname is with the Electrical Engineering Department, University
of Colorado, Boulder, CO 80309 USA, on leave from the National Research Institute
for Metals, Tsukuba, Japan (email: who@cares.com)}
begin{abstract}
lipsum*[2]
end{abstract}
begin{keywords}
About four key words or phrases in alphabetical order, separated by commas.
end{keywords}
sloppy% Just for this example
section{Introduction}
lipsum[1]
section{Procedure for Paper Submission}
lipsum[2]
subsection{Review Stage}
lipsum[3]
subsection{Figures}
lipsum[4]
subsection{Document Modification}
lipsum[5]
subsection{Copyright Form}
lipsum[6]
section{Math}
lipsum[7]
section{Units}
lipsum[8]
end{document}
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
The following somewhat replicates the template you're showing. It's not automated, but that can be done if needed.
documentclass[10pt]{article}
usepackage{geometry,sectsty,etoolbox}
usepackage{newtxtext,newtxmath}
geometry{
margin = 1in,
twocolumn
}
sectionfont{normalfontlargescshapecentering}
renewcommand{thesection}{Roman{section}}
subsectionfont{normalfontnormalsizeitshape}
renewcommand{thesubsection}{Alph{subsection}}
makeatletter
renewcommand{@seccntformat}[1]{csname the#1endcsname.space}
patchcmd{@maketitle}% <cmd>
{vskip 1em{large @date}}% <search>
{}% <replace>
{}{}% <success><failure>
makeatother
renewenvironment{abstract}
{partextbf{itshape Abstract}---ignorespaces}
{parmedskip}
newenvironment{keywords}
{partextbf{itshape Keywords}---ignorespaces}
{parmedskip}
title{Preparation of Papers - Paper Title}
author{%
AuthorName Lastname%
rlap{textsuperscript{1}},
AuthorName Lastname%
rlap{textsuperscript{2}},
AuthorName Lastname%
rlap{textsuperscript{3}}%
}
usepackage{lipsum}
begin{document}
twocolumn[maketitle]
footnotetext[1]{AuthorName Lastname is with the National Institute of Standards and Technology,
Boulder, CO 80305 USA (correspondence author's phone: XXX-XXX-XXXX; email: who@cares.com}
footnotetext[2]{AuthorName Lastname was with Rice University, Houston, TX 77005 USA.
He is now with the Department of Physics, Colorado State University, Fort Collins,
CO 80523 USA (email: who@cares.com)}
footnotetext[3]{AuthorName Lastname is with the Electrical Engineering Department, University
of Colorado, Boulder, CO 80309 USA, on leave from the National Research Institute
for Metals, Tsukuba, Japan (email: who@cares.com)}
begin{abstract}
lipsum*[2]
end{abstract}
begin{keywords}
About four key words or phrases in alphabetical order, separated by commas.
end{keywords}
sloppy% Just for this example
section{Introduction}
lipsum[1]
section{Procedure for Paper Submission}
lipsum[2]
subsection{Review Stage}
lipsum[3]
subsection{Figures}
lipsum[4]
subsection{Document Modification}
lipsum[5]
subsection{Copyright Form}
lipsum[6]
section{Math}
lipsum[7]
section{Units}
lipsum[8]
end{document}
add a comment |
up vote
0
down vote
The following somewhat replicates the template you're showing. It's not automated, but that can be done if needed.
documentclass[10pt]{article}
usepackage{geometry,sectsty,etoolbox}
usepackage{newtxtext,newtxmath}
geometry{
margin = 1in,
twocolumn
}
sectionfont{normalfontlargescshapecentering}
renewcommand{thesection}{Roman{section}}
subsectionfont{normalfontnormalsizeitshape}
renewcommand{thesubsection}{Alph{subsection}}
makeatletter
renewcommand{@seccntformat}[1]{csname the#1endcsname.space}
patchcmd{@maketitle}% <cmd>
{vskip 1em{large @date}}% <search>
{}% <replace>
{}{}% <success><failure>
makeatother
renewenvironment{abstract}
{partextbf{itshape Abstract}---ignorespaces}
{parmedskip}
newenvironment{keywords}
{partextbf{itshape Keywords}---ignorespaces}
{parmedskip}
title{Preparation of Papers - Paper Title}
author{%
AuthorName Lastname%
rlap{textsuperscript{1}},
AuthorName Lastname%
rlap{textsuperscript{2}},
AuthorName Lastname%
rlap{textsuperscript{3}}%
}
usepackage{lipsum}
begin{document}
twocolumn[maketitle]
footnotetext[1]{AuthorName Lastname is with the National Institute of Standards and Technology,
Boulder, CO 80305 USA (correspondence author's phone: XXX-XXX-XXXX; email: who@cares.com}
footnotetext[2]{AuthorName Lastname was with Rice University, Houston, TX 77005 USA.
He is now with the Department of Physics, Colorado State University, Fort Collins,
CO 80523 USA (email: who@cares.com)}
footnotetext[3]{AuthorName Lastname is with the Electrical Engineering Department, University
of Colorado, Boulder, CO 80309 USA, on leave from the National Research Institute
for Metals, Tsukuba, Japan (email: who@cares.com)}
begin{abstract}
lipsum*[2]
end{abstract}
begin{keywords}
About four key words or phrases in alphabetical order, separated by commas.
end{keywords}
sloppy% Just for this example
section{Introduction}
lipsum[1]
section{Procedure for Paper Submission}
lipsum[2]
subsection{Review Stage}
lipsum[3]
subsection{Figures}
lipsum[4]
subsection{Document Modification}
lipsum[5]
subsection{Copyright Form}
lipsum[6]
section{Math}
lipsum[7]
section{Units}
lipsum[8]
end{document}
add a comment |
up vote
0
down vote
up vote
0
down vote
The following somewhat replicates the template you're showing. It's not automated, but that can be done if needed.
documentclass[10pt]{article}
usepackage{geometry,sectsty,etoolbox}
usepackage{newtxtext,newtxmath}
geometry{
margin = 1in,
twocolumn
}
sectionfont{normalfontlargescshapecentering}
renewcommand{thesection}{Roman{section}}
subsectionfont{normalfontnormalsizeitshape}
renewcommand{thesubsection}{Alph{subsection}}
makeatletter
renewcommand{@seccntformat}[1]{csname the#1endcsname.space}
patchcmd{@maketitle}% <cmd>
{vskip 1em{large @date}}% <search>
{}% <replace>
{}{}% <success><failure>
makeatother
renewenvironment{abstract}
{partextbf{itshape Abstract}---ignorespaces}
{parmedskip}
newenvironment{keywords}
{partextbf{itshape Keywords}---ignorespaces}
{parmedskip}
title{Preparation of Papers - Paper Title}
author{%
AuthorName Lastname%
rlap{textsuperscript{1}},
AuthorName Lastname%
rlap{textsuperscript{2}},
AuthorName Lastname%
rlap{textsuperscript{3}}%
}
usepackage{lipsum}
begin{document}
twocolumn[maketitle]
footnotetext[1]{AuthorName Lastname is with the National Institute of Standards and Technology,
Boulder, CO 80305 USA (correspondence author's phone: XXX-XXX-XXXX; email: who@cares.com}
footnotetext[2]{AuthorName Lastname was with Rice University, Houston, TX 77005 USA.
He is now with the Department of Physics, Colorado State University, Fort Collins,
CO 80523 USA (email: who@cares.com)}
footnotetext[3]{AuthorName Lastname is with the Electrical Engineering Department, University
of Colorado, Boulder, CO 80309 USA, on leave from the National Research Institute
for Metals, Tsukuba, Japan (email: who@cares.com)}
begin{abstract}
lipsum*[2]
end{abstract}
begin{keywords}
About four key words or phrases in alphabetical order, separated by commas.
end{keywords}
sloppy% Just for this example
section{Introduction}
lipsum[1]
section{Procedure for Paper Submission}
lipsum[2]
subsection{Review Stage}
lipsum[3]
subsection{Figures}
lipsum[4]
subsection{Document Modification}
lipsum[5]
subsection{Copyright Form}
lipsum[6]
section{Math}
lipsum[7]
section{Units}
lipsum[8]
end{document}
The following somewhat replicates the template you're showing. It's not automated, but that can be done if needed.
documentclass[10pt]{article}
usepackage{geometry,sectsty,etoolbox}
usepackage{newtxtext,newtxmath}
geometry{
margin = 1in,
twocolumn
}
sectionfont{normalfontlargescshapecentering}
renewcommand{thesection}{Roman{section}}
subsectionfont{normalfontnormalsizeitshape}
renewcommand{thesubsection}{Alph{subsection}}
makeatletter
renewcommand{@seccntformat}[1]{csname the#1endcsname.space}
patchcmd{@maketitle}% <cmd>
{vskip 1em{large @date}}% <search>
{}% <replace>
{}{}% <success><failure>
makeatother
renewenvironment{abstract}
{partextbf{itshape Abstract}---ignorespaces}
{parmedskip}
newenvironment{keywords}
{partextbf{itshape Keywords}---ignorespaces}
{parmedskip}
title{Preparation of Papers - Paper Title}
author{%
AuthorName Lastname%
rlap{textsuperscript{1}},
AuthorName Lastname%
rlap{textsuperscript{2}},
AuthorName Lastname%
rlap{textsuperscript{3}}%
}
usepackage{lipsum}
begin{document}
twocolumn[maketitle]
footnotetext[1]{AuthorName Lastname is with the National Institute of Standards and Technology,
Boulder, CO 80305 USA (correspondence author's phone: XXX-XXX-XXXX; email: who@cares.com}
footnotetext[2]{AuthorName Lastname was with Rice University, Houston, TX 77005 USA.
He is now with the Department of Physics, Colorado State University, Fort Collins,
CO 80523 USA (email: who@cares.com)}
footnotetext[3]{AuthorName Lastname is with the Electrical Engineering Department, University
of Colorado, Boulder, CO 80309 USA, on leave from the National Research Institute
for Metals, Tsukuba, Japan (email: who@cares.com)}
begin{abstract}
lipsum*[2]
end{abstract}
begin{keywords}
About four key words or phrases in alphabetical order, separated by commas.
end{keywords}
sloppy% Just for this example
section{Introduction}
lipsum[1]
section{Procedure for Paper Submission}
lipsum[2]
subsection{Review Stage}
lipsum[3]
subsection{Figures}
lipsum[4]
subsection{Document Modification}
lipsum[5]
subsection{Copyright Form}
lipsum[6]
section{Math}
lipsum[7]
section{Units}
lipsum[8]
end{document}
answered Nov 17 at 6:23
Werner
431k599491626
431k599491626
add a comment |
add a comment |
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%2f460386%2fhow-to-put-author-affiliations-to-the-bottom-left-corner-in-a-two-column-page%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
Is that a MSWord format?
– Sigur
Nov 16 at 22:44
1
Yes, it is. Only a formatted Word document is given.
– Bs He
Nov 17 at 0:12
@BsHe: This site is dedicated to content related to (La)TeX and related systems. This excludes MS Word. Do you have any (La)TeX problems specific to the template?
– Werner
Nov 17 at 0:16
1
@Werner I think that Bs He wants to create the same with LaTeX, so he uses MS Word to explain his idea.
– Dũng Vũ
Nov 17 at 2:08
@Werner I want to create the same format in latex. Thanks.
– Bs He
Nov 17 at 3:50