commit 57cecc05884e377f2d77ca06825b7627f4189a4b
parent 18e467ef9ea9061e83a6bc5bed14dd89c6b99543
Author: Ben Greenman <benjaminlgreenman@gmail.com>
Date: Tue, 2 May 2017 14:55:21 -0400
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`.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scribble-lib/scribble/jfp/replacements.tex b/scribble-lib/scribble/jfp/replacements.tex
@@ -1 +1 @@
-\renewcommand{\packageRelsize}{}
+\renewcommand\Large{\@setfontsize\@xvpt{18}}