LaTeX技巧191:如何从oneside模式切换到twoside
(2009-12-26 22:09:55)
标签:
latexonesidetwoside模式 |
分类: 页面设置 |
QQ群:91940767/145316219/141877998/80300084/194770436
淘宝店:http://latexstudio.taobao.com
技巧续篇:http://latexstudio.net/
常见数学公式问题集下载
解决方案:
\usepackage{ifthen}
\begin{document}
% then the first part would be "oneside"
..
..
\setboolean{@twoside}{true}
% now you will have the "twoside" Layout!
..
..
\setboolean{@twoside}{false}
% back to normal
\end{document}