由买买提看人间百态

topics

全部话题 - 话题: amsplain
(共0页)
T*******n
发帖数: 493
1
来自主题: 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
2
来自主题: 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
T*******n
发帖数: 493
3
来自主题: 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
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}
q******c
发帖数: 16
5
我的文件编译后发现参考文献中的字体比正文的小,实在是找不到问题出在哪里。恳请
高手赐教,谢谢。下面是文件的基本信息
\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}
a**e
发帖数: 5794
6
amsplain.bst里大概有意设置成这样的
(共0页)