Page Layout ⇒ Title page lay-out for oxford bulletin of Economics and Stat
Title page lay-out for oxford bulletin of Economics and Stat
I recently started to use Latex. I have a question about the lay-out for the title page. Because I want to make a submission to the Oxford Bulletin of Economics and Statistics I need to change the style of my title page (2 authors). Can someone help me with the code for the title page needed for Oxford Bulletin. Because I don't find it.
(the title page needs to look this way: http://www.blackwellpublishing.com/pdf/obes_ss.pdf)
I hope someone can help me, because it is the style for 2 authors that I need and that causes problems.
Thanks in advance
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Title page lay-out for oxford bulletin of Economics and Stat
Code: Select all
\title{Article Title}
\author{
Adam Smith\\
Department of Economics\\
...
(e-mail: \texttt{a.smith@economics.ox.ac.uk})
\and
Robert Jones\\
...
}
\date{}
\maketitle
Follow howtoTeX on twitter
Title page lay-out for oxford bulletin of Economics and Stat
My first suggestion would be something like this:
Code: Select all
ADAM SMITH\textdagger\ and ROBERT JONES\textdaggerdbl \\
\bigskip
\textdagger \textit{Department of Economics, Manor Road
Building, Oxford. OX1 3UQ. UK\\
(e-mail: a.smith@economics.ox.ac.uk)}\\
\textdaggerdbl \textit{Department of Economics, University of Keele,
Keele, Staffs. UK\\
(e-mail: r.jones@keele.ac.uk)}
Code: Select all
\usepackage{titling}
\preauthor{\flushleft}
\postauthor{}
\author{%
ADAM SMITH\textdagger\ and ROBERT JONES\textdaggerdbl \\
\bigskip
\textdagger \textit{Department of Economics, Manor Road
Building, Oxford. OX1 3UQ. UK\\
(e-mail: a.smith@economics.ox.ac.uk)}\\
\textdaggerdbl \textit{Department of Economics, University of Keele,
Keele, Staffs. UK\\
(e-mail: r.jones@keele.ac.uk)}
}
Re: Title page lay-out for oxford bulletin of Economics and
\usepackage{titling}
\title{Fiscal policy and TFP in the OECD: a non-stationary panel approach\thanks{}}
\preauthor{\flushleft}
\postauthor{}
\author{RUBEN SCHOONACKERS\textdagger\ and FREDDY HEYLEN\textdaggerdbl \\
\bigskip
\textdagger \textit{Department of Social Economics, Ghent University,\\
Tweekerkenstraat 2, 9000 Ghent, Belgium\\
(e-mail: ruben.schoonackers@ugent.be)}\\
\textdaggerdbl \textit{Department of Social Economics, Ghent University\\
(e-mail: freddy.heylen@ugent.be)}
}
Title page lay-out for oxford bulletin of Economics and Stat
I don't understand the phrase "centered to the left". Do you want it centered, or to the left? (Or do you mean that with the two lines, the longer of the two lines should be flush against the left margin, but the shorter line centered with relative to the longer one? That could be done, I suppose, but wouldn't you have to manually break it?)
If you just mean flush left, then you do it more or less the same way I did it for the authors' names:
Code: Select all
\pretitle{\flushleft\bfseries}
\posttitle{}
\title{Fiscal policy and TFP in the OECD: a non-stationary panel approach\thanks{}}
I have no hope of trying to answer your question about the abstract without knowing what document class, etc., you're using. Again, I would need a minimal working example.