s*******z 发帖数: 422 | 1 我用的这个文件级
\documentclass[option]{book}
请问如何去掉Chapter之间的空白页?
大虾们帮帮忙啦! | 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 的大作中提到】 : 我用的这个文件级 : \documentclass[option]{book} : 请问如何去掉Chapter之间的空白页? : 大虾们帮帮忙啦!
| s*******z 发帖数: 422 | 3 大虾,这个没起作用阿。
我用的是
\documentclass[letterpaper,twoside,12pt,openright,pdf,epsf,epsfig]{book}
【在 T*******n 的大作中提到】 : 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".
| T*******n 发帖数: 493 | 4 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".
【在 s*******z 的大作中提到】 : 大虾,这个没起作用阿。 : 我用的是 : \documentclass[letterpaper,twoside,12pt,openright,pdf,epsf,epsfig]{book}
| s*******z 发帖数: 422 | 5 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 的大作中提到】 : 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 | 6 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.
【在 s*******z 的大作中提到】 : Sorry i didnt make myself clear. : I did change "openright" to "openany", but it didnt work. : Is there any other possible solution for this?
|
|