[Tex/LaTex] How to write like old mathematical papers

fontsheader-footermathdesignmetafont

Every time I read an old math paper, I'm pretty exited about how perfectly it looks.

See this PDF, for example:

enter image description here

Everything, though a not-so-perfect-scan, somehow looks "real" to me. It's the little differences that I believe are important here. The not-too-perfect alignment of letters for example. Some are more up than others, some more down, even tiny bits. And sometimes, lightning and saturation is not all-too-perfect, too.

I really like the look of it, but sadly I prefer writing on a modern-day-keyboard instead of an old typewriter (mainly for software-reasons, the hardware alone would be fine). So… is there any way, just for fun, to create a LaTeX document, coming out as PDF or whatever, that, when printed, looks like that proof?

There are plus-points if it looks like a very old proof, e.g. the things Frege did in his Begriffsschrift, old-style-letters would be perfect there, but again, professional and not too oldstyle. But I couldn't easily find a picture of the Begriffsschrift online that have a high enough resolution…

Best Answer

I guess I'll replicate the above excellent portion of this mathematical paper as good as I can.

But first, historical clarification. Before Donald Knuth laid the cornerstone of Tex in 1978 printing mathematical papers was quite a hassle, primarily because such papers consisted of fairly complex mathematical symbols. You can imagine that not everyone had elaborate matrices for such symbols. That's why old papers (and books) are printed so flawlessly - they demanded time, effort and a lot of patience. Thanks to Knuth (a genius in my opinion) and modern technology we can now write just as beautiful documents.

And now, my replication (I hope it suffices):

\documentclass[a4paper, leqno]{report}

\usepackage{amsmath}
\usepackage{latexsym}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{amssymb}
\usepackage{amstext}
\usepackage{amsxtra}
\usepackage{amscd}
\usepackage{amsopn}
\usepackage{lmodern}
\usepackage[slovene]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{fullpage}
\usepackage{slashed}
\usepackage{mathtools}
\usepackage{microtype}
\usepackage{graphicx}
\usepackage{geometry}
\usepackage{mathdots}
\usepackage{mathrsfs}

\textwidth=300pt

\begin{document}

\begin{center}
\begin{large}
\textbf{A PRIME-REPRESENTING FUNCTION} \\ \vspace{0.3cm }
\end{large}
W. H. MILLS
\end{center}

A function $f(x)$ is said to be a prime-representing function if $f(x)$ is a prime number for all positive integral values of $x$. It will be shown that there exists a real number $A$ such that $[A^{8^{x}}]$ is a prime-representing function, where $[R]$ denotes the greatest integer less than or equal to $R$.

Let $p_n$ denote the $n$th prime number. A. E. Ingham\textsuperscript{1} has shown that
\begin{equation}
p_{n+1} - p_n < Kp_{n}^{5/8}
\end{equation}
where $K$ is a fixed positive integer. \vspace{0.2cm}

\textsc{Lemma.} \textit{If $N$ is an integer greater than $K^8$ there exists a prime $p$ such that $N^8 < p < (N+1)^3 - 1$.} \vspace{0.2cm}

\textsc{Proof.} Let $p_n$ be the greatest prime less than $N^3$. Then
\begin{equation}
\begin{split}
N^3 < p_{n+1} &< p_n + Kp_{n}^{5/8} < N^3 + KN^{15/8} < N^3 + N^2 \\
&< (N + 1)^3 -1
\end{split}
\end{equation}

Let $P_0$ be a prime greater than $K^8$. Then by lemma we can construct an infinite sequence of primes, $P_0, P_1, P_2, \dots ,$ such that $P_{n}^{3} < P_{n+1} < (P_n + 1)^8 -1$. Let
\begin{equation}
u_n = P^{3 - n}_{n}, \qquad v_n = (P_n + 1)^{3-n}.
\end{equation}
Then
\begin{equation}
v_n > u_n, \qquad u_{n+1} = P_{n+1}^{3-n-1} > P_{n}^{3-n} = u_n,
\end{equation}
\vspace{-0.8cm}
\begin{equation}
v_{n+1} = (P_{n+1} + 1)^{3-n-1} < (P_n + 1)^{3-n} = v_n .
\end{equation}

It follows at once that the $u_n$ form a bounded monotone increasing sequence. Let $A = \lim_{n \to \infty} u_n$.

\vspace{0.2cm}
\textsc{Theorem.} $[A^{3^{n}}]$ \textit{is a prime-representing function.}

\vspace{0.2cm}
\textsc{Proof.} From (4) and (5) it follows that $u_n < A < v_n$, or $P_n < A^{3^{n}} < P_n +1$.

Therefore $[A^{3^{n}}] = P_n$ and $[A^{3^{x}}]$ is a prime-representing function.

\end{document}

enter image description here

This is just my personal opinion (we probably don't have the same taste) , but the LaTex replica looks just as beautiful as the original paper. Of course I didn't bother writing the answer just for the sake of expressing my personal preference. You seek some font that would make your LaTex document look natural. I combined my standard source code and Old Standard font by adding \usepackage{mathspec}, \defaultfontfeatures{Mapping=tex-text} and \setallmainfonts{Old Standard}. Note that the following code must be compiled with XeLaTex, otherwise it will not work. Here is the renewed code:

\documentclass[a4paper, leqno]{report}

\usepackage{amsmath}
\usepackage{latexsym}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{amssymb}
\usepackage{amstext}
\usepackage{amsxtra}
\usepackage{amscd}
\usepackage{amsopn}
\usepackage{lmodern}
\usepackage[slovene]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{fullpage}
\usepackage{slashed}
\usepackage{mathtools}
\usepackage{microtype}
\usepackage{graphicx}
\usepackage{geometry}
\usepackage{mathdots}
\usepackage{mathrsfs}
\usepackage{mathspec}

\defaultfontfeatures{Mapping=tex-text}
\setallmainfonts{Old Standard}

\textwidth=300pt

\begin{document}

\begin{center}
\begin{large}
\textbf{A PRIME-REPRESENTING FUNCTION} \\ \vspace{0.3cm }
\end{large}
W. H. MILLS
\end{center}

A function $f(x)$ is said to be a prime-representing function if $f(x)$ is a prime number for all positive integral values of $x$. It will be shown that there exists a real number $A$ such that $[A^{8^{x}}]$ is a prime-representing function, where $[R]$ denotes the greatest integer less than or equal to $R$.

Let $p_n$ denote the $n$th prime number. A. E. Ingham\textsuperscript{1} has shown that
\begin{equation}
p_{n+1} - p_n < Kp_{n}^{5/8}
\end{equation}
where $K$ is a fixed positive integer. \vspace{0.2cm}

\textsc{Lemma.} \textit{If $N$ is an integer greater than $K^8$ there exists a prime $p$ such that $N^8 < p < (N+1)^3 - 1$.} \vspace{0.2cm}

\textsc{Proof.} Let $p_n$ be the greatest prime less than $N^3$. Then
\begin{equation}
\begin{split}
N^3 < p_{n+1} &< p_n + Kp_{n}^{5/8} < N^3 + KN^{15/8} < N^3 + N^2 \\
&< (N + 1)^3 -1
\end{split}
\end{equation}

Let $P_0$ be a prime greater than $K^8$. Then by lemma we can construct an infinite sequence of primes, $P_0, P_1, P_2, \dots ,$ such that $P_{n}^{3} < P_{n+1} < (P_n + 1)^8 -1$. Let
\begin{equation}
u_n = P^{3 - n}_{n}, \qquad v_n = (P_n + 1)^{3-n}.
\end{equation}
Then
\begin{equation}
v_n > u_n, \qquad u_{n+1} = P_{n+1}^{3-n-1} > P_{n}^{3-n} = u_n,
\end{equation}
\vspace{-0.9cm}
\begin{equation}
v_{n+1} = (P_{n+1} + 1)^{3-n-1} < (P_n + 1)^{3-n} = v_n .
\end{equation}

It follows at once that the $u_n$ form a bounded monotone increasing sequence. Let $A = \lim_{n \to \infty} u_n$.

\vspace{0.2cm}
\textsc{Theorem.} $[A^{3^{n}}]$ \textit{is a prime-representing function.}

\vspace{0.2cm}
\textsc{Proof.} From (4) and (5) it follows that $u_n < A < v_n$, or $P_n < A^{3^{n}} < P_n +1$.

Therefore $[A^{3^{n}}] = P_n$ and $[A^{3^{x}}]$ is a prime-representing function.

\end{document}

enter image description here

I hope you'll find this font extravagant and archaic, just as the one you exposed. If not, I got another one for you. Since I don't have the appropriate software (my Texstudio just won't compile) I can only post a link to this wonderful solution. Read up on this: Old-style/Antique typesetting in LaTeX/TeX.

I wish you a wonderful day and plenty more hours of fun with LaTex!