Try \usepackage{fancyhdr}, and take a look at the examples given in the user manual. If you don't want to use fancyhdr (fancyhdr has a few minor problems with line spacing calculations which could clash with your font size change), you will have to define a new page style or redefine \[email protected] or \[email protected] Try fancyhdr first. Whatever you do, do not redefine the \thepage macro to include any font information, especially if you use hyperref.
【在 T*******n 的大作中提到】 : Try \usepackage{fancyhdr}, and take a look at the : examples given in the user manual. : If you don't want to use fancyhdr (fancyhdr has a : few minor problems with line spacing calculations : which could clash with your font size change), you : will have to define a new page style or redefine : \[email protected] or \[email protected] Try fancyhdr first. : Whatever you do, do not redefine the \thepage macro : to include any font information, especially if you : use hyperref.
T*n
4 楼
That's not a good solution because some packages rely on the definition of \scriptsize giving a font size that is consistent with the internal LaTeX macro \[email protected], and by redefining \scriptsize you have broken this. Try this instead: Save the following (up to and including \endinput) in "mypgnum.sty" in the local directory and in your document say \usepackage{mypgnum.sty} after all the other \usepackage{...} commands. \let\mypgnumsize=\large \def\[email protected]{\[email protected] \def\@oddfoot{\normalfont\
Assuming that you are still referring to amsbook.cls, do you want to get rid of the small caps in the caption or do you really want a bigger font size? The font size for the captions used by amsbook.cls is the LaTeX default of \normalsize (i.e., amsbook.cls doesn't change the font size for captions). If you want to change this to something bigger (I suggest you don't because your caption text will end up larger than the regular text), add the following to the style file in my previous post: \le