由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
TeX版 - Latex中如何使pagenumber的SIZE变大些
相关主题
请教几个Latex的小问题add caption above floating table using floatflt
请教一个BIBLIOGRAPHY 顺序改变的问题请问tabular里面的一个格子里如何能够换行呢?谢谢!
如何让 图表的标题和图表有空白?请教图片排版问题
怎么用latex做POSTER?default font
LaTeX Table 缩放解决了请问怎么把两幅图并排放?用不同的标题?
DVI转PDF问题:公式的大括号中括号小括号全部在打印的时候消失[请教]怎样改变图和表格标题的size?
怎样只在文章的首页加规定的header终于把我老婆convert成tex user了,呵呵
如何改变page header's font?figure的caption
相关话题的讨论汇总
话题: size话题: latex话题: font话题: pagenumber话题: fancyhdr
进入TeX版参与讨论
1 (共1页)
o*****y
发帖数: 699
1
请问Latex中如何使pagenumber的SIZE变大些,我的pagenumber总是显得比较小。
T*******n
发帖数: 493
2
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
\ps@plain or \ps@headings. Try fancyhdr first.
Whatever you do, do not redefine the \thepage macro
to include any font information, especially if you
use hyperref.

【在 o*****y 的大作中提到】
: 请问Latex中如何使pagenumber的SIZE变大些,我的pagenumber总是显得比较小。
o*****y
发帖数: 699
3
谢谢你的答复。我是用的amsbook。cls,我改动了下面:
\def\scriptsize{\small}
改为:
\def\scriptsize{\large}
有个新问题:如何使图表中的文字SIZE大些。比如FIGURE 1,TABLE 1等,总显得很小

【在 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
: \ps@plain or \ps@headings. Try fancyhdr first.
: Whatever you do, do not redefine the \thepage macro
: to include any font information, especially if you
: use hyperref.

T*******n
发帖数: 493
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 \sf@size,
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\ps@plain{\ps@empty
\def\@oddfoot{\normalfont\

【在 o*****y 的大作中提到】
: 谢谢你的答复。我是用的amsbook。cls,我改动了下面:
: \def\scriptsize{\small}
: 改为:
: \def\scriptsize{\large}
: 有个新问题:如何使图表中的文字SIZE大些。比如FIGURE 1,TABLE 1等,总显得很小

T*******n
发帖数: 493
5
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

【在 o*****y 的大作中提到】
: 谢谢你的答复。我是用的amsbook。cls,我改动了下面:
: \def\scriptsize{\small}
: 改为:
: \def\scriptsize{\large}
: 有个新问题:如何使图表中的文字SIZE大些。比如FIGURE 1,TABLE 1等,总显得很小

1 (共1页)
进入TeX版参与讨论
相关主题
figure的captionLaTeX Table 缩放解决了
怎样让table caption左对齐?DVI转PDF问题:公式的大括号中括号小括号全部在打印的时候消失
表格 caption 文字怎么设置左对齐怎样只在文章的首页加规定的header
auctex 多文件补全宏有问题啊如何改变page header's font?
请教几个Latex的小问题add caption above floating table using floatflt
请教一个BIBLIOGRAPHY 顺序改变的问题请问tabular里面的一个格子里如何能够换行呢?谢谢!
如何让 图表的标题和图表有空白?请教图片排版问题
怎么用latex做POSTER?default font
相关话题的讨论汇总
话题: size话题: latex话题: font话题: pagenumber话题: fancyhdr