I am writing a little expository note on the Poisson equation. During the redaction of the note, due to the simplicity of the content, I decided to experiment with mathematical fonts: I experimented many of the ones listed in the nice Stephen G. Hartke's "A Survey of Free Math Fonts for TEX and LATEX". When I tried to use the Belleek font package, (p. 15 of the paper quoted above), I checked if it was installed in my TEXLive installation (MACTEX) and I loaded it by issuing the command \usepackage{mathtime} (as stated in the paper), but it failed (ERROR: LaTeX Error: File 'mathtime.sty' not found). So my question: how could I use that math font?
Few infos
- My machine is an iMac macOS 10.14.5 -The TEXLIVE utility I've installed is Version 1.35.
Here follows an example code:
%********************************************************************
\documentclass[a4paper,10pt]{article}
%********************************************************************
% Packages
%********************************************************************
\usepackage[italian]{babel}
\usepackage[utf8]{inputenc}
\usepackage[intlimits]{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{mathrsfs}
\usepackage{mathtime}
\newcommand{\dm}{\mathrm{d}}
\newtheorem{defn}{Definizione}
\newtheorem{lemma}{Lemma}
\newtheorem{theo}{Teorema}
%********************************************************************
% Content
%********************************************************************
\author{Daniele Tampieri}
\title{La condizione necessaria e sufficiente per la soluzione del problema di Neumann per l'equazione di Poisson.}
\begin{document}
Testo di prova
\[
\frac{\partial^2u}{\partial x^2} + \frac{\partial^2u}{\partial y^2} +\frac{\partial^2u}{\partial x^2}= f(x,y,z)
\]
\end{document}

