由买买提看人间百态

topics

全部话题 - 话题: amsbook
(共0页)
T*******n
发帖数: 493
1
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
T*******n
发帖数: 493
2
来自主题: TeX版 - 请问引用文献的一个问题
What version of cite.sty do you have?
I tested versions 3.9 and 4.01 and had no problems.
Are there other packages that you are loading?
Here is what I got:
\documentclass{amsbook}
\begin{document}
\cite{...} %% prints *boldface* 1
\bibliographystyle{amsplain}
\bibliography{...}
\end{document}
\documentclass{amsbook}
\usepackage{cite} %% add this
\begin{document}
\cite{...} %% prints normal 1
\bibliographystyle{amsplain}
\bibliography{...}
\end{document}
\documentclass{amsbook}
\makeatletter %%
q******c
发帖数: 16
3
来自主题: TeX版 - 请问引用文献的一个问题
我的cite.sty version 是 4.01 (Nov 2003).
我试了试你给的例子。
\documentclass{amsbook}
\begin{document}
\cite{...} %% prints *boldface* 1
\bibliographystyle{amsplain}
\bibliography{...}
\end{document
这个是一样的,得到黑体
\documentclass{amsbook}
\usepackage{cite} %% add this
\begin{document}
\cite{...} %% prints normal 1
\bibliographystyle{amsplain}
\bibliography{...}
\end{document}
这个不一样,仍然是黑体
\documentclass{amsbook}
\makeatletter %% add these three lines
\def\@cite#1#2{{\m@th\upshape\mdseries[{#1}{\if@tempswa, #2\fi
q******c
发帖数: 16
4
来自主题: TeX版 - 请问引用文献的一个问题
学校的模板上用到的
\documentclass[12pt, titlepage, openany, reqno]{amsbook}
\usepackage{amsmath, amsfonts,amsthm, amssymb, amscd, cite}
其中cite包是我自己加上的。
在我的计算机上试了试你给的例子,只要是用cite包,就是黑体,那三行代码好像不能
控制住字体。下面是我试你给的例子
\documentclass{amsbook}
\makeatletter
\def\@cite#1#2{{\m@th\upshape\mdseries[{#1}{\if@tempswa, #2\fi}]}}
\makeatother
\usepackage{cite}
\begin{document}
Here is the citation\cite{Bezerra2001,Cahen2002}.
\bibliographystyle{amsplain}
\bibliography{refer}
\end{document}
o*****y
发帖数: 699
5
谢谢你的答复。我是用的amsbook。cls,我改动了下面:
\def\scriptsize{\small}
改为:
\def\scriptsize{\large}
有个新问题:如何使图表中的文字SIZE大些。比如FIGURE 1,TABLE 1等,总显得很小
q******c
发帖数: 16
6
来自主题: TeX版 - 请问引用文献的一个问题
用amsbook documentclass, 可是用\usepackage{cite}后,除了引用方括号内的数字是
黑体,其它的不是。不知道该怎么调整才能让那些数字变成正常字体。
谢谢!
T*******n
发帖数: 493
7
来自主题: TeX版 - 请问引用文献的一个问题
I think you will get boldface citations with or without \usepackage{cite},
am I right?
Try adding this right after \documentclass{amsbook}, before anything else:
\makeatletter
\def\@cite#1#2{{\m@th\upshape\mdseries[{#1}{\if@tempswa, #2\fi}]}}
\makeatother
T*******n
发帖数: 493
8
来自主题: TeX版 - 请问引用文献的一个问题
You must be loading some other package too. I ran this file and I got
a boldface 1 in the [].
\documentclass{amsbook}
\begin{document}
Here is the citation \cite{someref}.
Here is nonbold text for comparison: [1].
\bibliographystyle{amsplain}
\bibliography{bibfile}
\end{document}
If I inserted those three lines I posted earlier, the citation is no longer
bold.
q******c
发帖数: 16
9
我的文件编译后发现参考文献中的字体比正文的小,实在是找不到问题出在哪里。恳请
高手赐教,谢谢。下面是文件的基本信息
\documentclass[12pt, titlepage, openany, reqno]{amsbook}
\usepackage{amsmath, amsfonts,amsthm, amssymb, amscd, graphicx, subfigure}
\usepackage{cmbright}
\input{dissertation.sty} %university's style file
\begin{document}
%include chapters here
\backmatter
\bibliographystyle{amsplain}
\bibliography{refer}
\end{document}
q******c
发帖数: 16
10
来自主题: TeX版 - 关于底边边距的问题
文件的头是:
\documentclass[12pt, titlepage, openany, reqno]{amsbook}
\usepackage{amsmath, amsfonts,amsthm, amssymb, amscd, graphicx, subfigure}
行间距全部设置为两倍行距,用的是\renewcommand{\baselinestretch}{1.66}
编译后出来的结果很奇怪,每页的底边距都多多少少不一样,看起来很糟糕。请教高人
指点一下该怎么改。
谢谢!
D***a
发帖数: 939
11
来自主题: TeX版 - 目录中的页码和实际不符
最近在写论文, 目录中的每一章每一节的页码都比实际的页码少了4页. 例如, 第一章
第一节应该是在第13页, 可是目录中显示是第9页 (整个目录部分我有6页, 可是系统只
算了2页). 这是神马问题阿? 急死了. 有没有什么命令可以直接改页数? 谢谢!
我用的amsbook类
(共0页)