General ⇒ Standardized format for academic papers in finance?
Standardized format for academic papers in finance?
Examples:
http://papers.ssrn.com/sol3/papers.cfm? ... id=1081337 (One-Click Download)
http://papers.ssrn.com/sol3/papers.cfm? ... id=1399323 (One-Click Download)
What I am wondering:
1. Is there a standardized template one can use to get the same format on regular text, headings, table of contens, equations etc.?
2. What is the name of the exact font?
3. Is it the same font that's used throughout both of the papers?
4. Could these papers possibly have been written in a different program than MS Word?
Thanks!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Standardized format for academic papers in finance?
Both documents are a simple LaTeX document written with the »article« class. See code sample below.Fredande wrote:[…] 1. Is there a standardized template one can use to get the same format on regular text, headings, table of contens, equations etc.? […]
Computer Modern (CM), the standard LaTeX font.Fredande wrote:[…] 2. What is the name of the exact font? […]
Yes.Fredande wrote:[…] 3. Is it the same font that's used throughout both of the papers? […]
They are done with LaTeX (see above). The code below is a basic structure for reproduction.Fredande wrote:[…] 4. Could these papers possibly have been written in a different program than MS Word? […]
Code: Select all
\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{blindtext}
\title{An $n$-Dimensional Markov-functional Interest Rate Model}
\author{%
Linus Kaisajuntti\thanks{Financial support from the Jan Wallander and Tom Hedelius foundation is gratefully acknowledged}\\
\small Department of Finance\\
\small Stockholm School of Economics \\
\small\texttt{email.address@hhs.se}
\and
Joanne Kennedy\\
\small Department of Statistics\\
\small University of Warwick\\
\small\texttt{email.address@warwick.ac.uk}
}
\begin{document}
\maketitle
\begin{abstract}
\blindtext
\end{abstract}
\newpage
\tableofcontents\newpage
\blinddocument
\end{document}
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10