如何删除 Lyx 中的多余页面

如何删除 Lyx 中的多余页面

我正在使用 Lyx 编辑书籍布局。每章之后都会出现一个额外的空白页。如何删除该额外页面?

\batchmode
\makeatletter
\def\input@path{{C:/Users/Anuja/Documents//}}
\makeatother
\documentclass[english,openany]{book}
\renewcommand{\familydefault}{\rmdefault}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{geometry}
\geometry{verbose,tmargin=1.5cm,bmargin=2.5cm,lmargin=2.5cm,rmargin=2.5cm}
\usepackage{setspace}
\usepackage{subscript}
\doublespacing

\makeatletter
\@ifundefined{date}{}{\date{}}
\makeatother

\usepackage{babel}
\begin{document}
\frontmatter


\title{\textbf{\huge{}Title}}

\maketitle

\chapter*{}


\chapter*{Acknowledgements}


\chapter*{Publications}


\chapter*{List of Figures}


\chapter*{List of Tables}
\end{document}

答案1

您有一个空的章节标题,即行写着\chapter*{},空白页实际上包含该标题。删除该标题,您应该没问题。

相关内容