[Tex/LaTex] Amsart with 14pt possible

amsartfontsize

If I try \documentclass[14pt,reqno,a4paper]{amsart} I just get the default which is less than 12pt. I tried to switch to the memoir class but there were so many changes I had to do that I gave up on switching the class. Is there any way to get 14pt for the amsart class?

Best Answer

You can use extsizes package to get unusual font sizes:

\documentclass[14pt,reqno,a4paper]{amsart}
\usepackage{extsizes}
\usepackage{blindtext}
\begin{document}
  \Blinddocument
\end{document}

Further, the facilities of KOMA-classes can be extended to other classes too using scrextend package. With this:

\documentclass[reqno,a4paper]{amsart}
\usepackage[fontsize=14pt]{scrextend}
\usepackage{blindtext}
\begin{document}
  \Blinddocument
\end{document}