T*******n 发帖数: 493 | 1 I said add "openany" to the options list. If you don't say "openany"
or "openright", the default is "openright".
So change your "openright" to "openany". |
|
T*******n 发帖数: 493 | 2 Try \documentclass[openany,otheroptions]{book}
The default is "openright", forcing insertion of
a blank "verso" page at the end of a chapter if
that is needed so that chapters open "recto". |
|
s*******z 发帖数: 422 | 3 Sorry i didnt make myself clear.
I did change "openright" to "openany", but it didnt work.
Is there any other possible solution for this? |
|
T*******n 发帖数: 493 | 4 Are you loading other packages? You are listing a lot of
options for the book class that are not recognized by the
book class.
Does this work correctly for you?
\documentclass[openany]{book}
\begin{document}
\chapter{Introduction}
Text, should be on page 1.
\chapter{Conclusion}
Text, should be on page 2.
\end{document}
Please post a minimal and complete file that reproduces the
problem if you still have difficulty. |
|
q******c 发帖数: 16 | 5 学校的模板上用到的
\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 | 6 我的文件编译后发现参考文献中的字体比正文的小,实在是找不到问题出在哪里。恳请
高手赐教,谢谢。下面是文件的基本信息
\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 | 7 文件的头是:
\documentclass[12pt, titlepage, openany, reqno]{amsbook}
\usepackage{amsmath, amsfonts,amsthm, amssymb, amscd, graphicx, subfigure}
行间距全部设置为两倍行距,用的是\renewcommand{\baselinestretch}{1.66}
编译后出来的结果很奇怪,每页的底边距都多多少少不一样,看起来很糟糕。请教高人
指点一下该怎么改。
谢谢! |
|
|