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 的大作中提到】 : 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
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".
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
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?