From 57cecc05884e377f2d77ca06825b7627f4189a4b Mon Sep 17 00:00:00 2001 From: Ben Greenman Date: Tue, 2 May 2017 14:55:21 -0400 Subject: [PATCH] patch for '\Large' in jfp1.cls Fixes an incompatibility between jfp1.cls and the 'relsize' package. Justification for the fix: 1. `pdflatex` fails on this document ``` \documentclass{jfp1} \begin{document} \maketitle hello {\Large world} \end{document} ``` 2. `pdflatex` succeeds on this document ``` \documentclass{jfp1} \renewcommand\Large{\@setfontsize\@xvpt{18}} \begin{document} \maketitle hello {\Large world} \end{document} ``` I do not know why (1) fails. The new line in (2) is copied from `jfp1.cls`. --- scribble-lib/scribble/jfp/replacements.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scribble-lib/scribble/jfp/replacements.tex b/scribble-lib/scribble/jfp/replacements.tex index 176fa412..955a1172 100644 --- a/scribble-lib/scribble/jfp/replacements.tex +++ b/scribble-lib/scribble/jfp/replacements.tex @@ -1 +1 @@ -\renewcommand{\packageRelsize}{} +\renewcommand\Large{\@setfontsize\@xvpt{18}}