我想排版一个看起来“古董”的页面。LaTeX 中是否有可以实现这一点的软件包/字体?我可以找到古董字体在线,但它们不包含数学符号。http://www.ctan.org/tex-archive/info/Free_Math_Font_Survey/survey.html(2006 年)列出了当时可用的各种免费数学字体,但它们都看起来不像古董。
我正在寻找的示例:
- 爱因斯坦的广义相对论论文
- JSTOR;美国数学月刊,1960 年(需订阅)
- JSTOR 的另一个(AMM 1960)
- JSTOR;AMM(1894)
谢谢!
答案1
答案2
合并frabjous'用一些真实的回答疼痛排版数学看起来我想到了一个答案。因此,您可以使用 Old Standard 来表示文本和拉丁数学,但使用 GFS Solomos 来表示希腊数学,使用 GFS Baskerville 的特殊贡献来表示求和符号。此外,\partial
我能找到的最接近的字体是 TeX Gyre Pagella Math 字体。因此,
\documentclass{minimal}
\usepackage{graphicx} % in order to use rotatebox
\usepackage{physics} % defines \qty{},\pdv{} and more http://www.ctan.org/pkg/physics, very very useful, though not totally necessary
\usepackage{mathspec} % https://ctan.org/pkg/mathspec
\defaultfontfeatures{Mapping=tex-text, Numbers=OldStyle}
\setmainfont{Old Standard}
\setmathsfont(Greek)[Uppercase=Plain,Lowercase=Regular]{GFS Solomos}
\setmathsfont(Digits)[Numbers=OldStyle]{GFS Baskerville} % because Solomos' "1" wasn't as good
\setmathsfont(Latin)[Uppercase=Italic,Lowercase=Italic]{Old Standard}
% download GFS's fonts from http://www.greekfontsociety.gr/
\newfontfamily{\bask}{GFS Baskerville}
\let\sum\relax
\DeclareMathOperator*{\sum}{\raisebox{-3.5pt}{\scalebox{2}{\rotatebox{1}{{\bask Σ}}}}} % all these lines to define this extreme summation sign
\newfontfamily{\tgp}{TeX Gyre Pagella Math}
\let\partial\oldpartial
\newcommand{\partial}{\text{{\tgp ∂}}} % these three lines go for the weird \partial symbol
\begin{document}
\begin{equation}
G_{im} = 0 \tag{2}
\end{equation}
Diese Gleichungen lassen sich einfacher gestalten, wenn man das Bezugsystem so wählt, daß $\sqrt{-g} =1$ ist. Dann verschwindet $S_{im}$ wegen (1 b), so daß man statt erzählt
\begin{align}
R_{im} = \sum_{l} \pdv{\Gamma^{l}_{im}}{x^l} &+ \sum_{\rho l} \Gamma^l_{i\rho} \Gamma^\rho_{ml} = 0 \tag{3} \\
\sqrt{-g} &= 1 \tag{3\;a}
\end{align}
Dabei ist
\begin{equation}
\Gamma^{l}_{im} = - \qty{\begin{array}{cc} im \\ l \end{array}}
\end{equation}
gesetzt, welch Grösen wir als »Komponenten« des Gravitationsfeldes bezeichnen.
Ist in dem betrachteten Raume »Materie« vorhanden, so tritt deren Energietensor auf den rechten seite von (2) bzw. auf (3) auf. Wir setzen
\begin{equation}
G_{im} = -\kappa\qty(T_{im} - \frac{1}{2}g_{im}T), \tag{2 a}
\end{equation}\\[1cm]
\begin{center}
blah\\blah\\blah
\end{center}
\end{document}
产生这个