[Tex/LaTex] Template of old research document

templates

I've been looking at this PDF, and I can't figure out what template it is. It looks vaguely similar to this post: Showcase of beautiful typography done in TeX & friends

What I'm trying to accomplish is to replicate the style of the header, more specifically the size of the font and the type of the font.

enter image description here

http://www.wiwi.uni-jena.de/uiw/publications/pub_before_1999/Audretsch_Fritsch_1994b.pdf

I'm trying to replicate this document in TeX.

This is what I have so far.

%!TEX TS-program = xelatex
%!TEX encoding = UTF-8 Unicode

\documentclass[12pt]{extarticle} 

\usepackage[protrusion=true,expansion=true,tracking=true,kerning=true]{microtype}
\usepackage{multicol}
\usepackage{lipsum}

\usepackage[margin=0.5in,top=1in,bottom=1in]{geometry}

\setlength{\columnsep}{20pt}


\usepackage{fontspec,xltxtra,xunicode}
\defaultfontfeatures{Mapping=tex-text}
\setromanfont[Mapping=tex-text]{Adobe Caslon Pro}
%\setsansfont[Scale=MatchLowercase,Mapping=tex-text]{Gill Sans}
%\setmonofont[Scale=MatchLowercase]{Adobe Caslon Pro}

\title{Fancy title goes here.}
\author{Author name}
\date{November $21^{st}$, 2012}                                           % Activate to display a given date or no date

\begin{document}
\maketitle

\begin{center}
\rule[1cm]{17cm}{0.01cm}
\end{center}

\abstract{This paper will assess various aspects of a certain topic. \lipsum[24]}
\bigskip

\noindent Keywords: Something blah geography


\begin{multicols}{2}
\subsubsection*{\centerline{\bf{INTRODUCTION}}}

\lipsum[1-10]


\end{multicols}






\end{document}  

Best Answer

I like old, beautiful fonts, too. I looked through my library in search of some that bear a resemblance to what you have there. I found a few, some more so some less so. While fonts themselves are not really TeX questions, the relevance to my response is that I wrote the programs to install these fonts onto my LaTeX installation, as detailed in Displaying medieval scriptures and neumes in TeX . Anyhow, here is a pic of those fontsets, none of which are an exact match to your example:

enter image description here

The fonts are identified by name above the image. For them, I have no small caps, so the author names look nothing like the original.

Related Question