回忆录章节格式

回忆录章节格式

我希望我的章节不编号,就像这个 MWE 一样。但是,使用此配置,ref带有 的章节的链接label不显示任何文本:

在此处输入图片描述

我希望在那里显示章节名称,或者更好的是,在我创建标签时可以设置一个文本。

第二个需求(我可以在一个单独的问题中提出):我希望我的章节从背面而不是正面开始,因为它们以阅读文本时应该可见的图像开始。

\documentclass[12pt]{memoir}

% suppress section and chapter numbering
\setsecnumdepth{none}
\maxsecnumdepth {none} 

% Set chapter name on the left
\chapterstyle{section}

\usepackage[hyperfootnotes=false]{hyperref}

\begin{document}
\frontmatter
\pagestyle{empty}


\tableofcontents*

\pagestyle{ruled}

\mainmatter

\chapter{foo}\label{ch:foo}

[image on first page, should be verso]
\newpage
About this image (recto page)

\chapter{bar}\label{ch:bar}

[image on first page, should be verso]
\newpage
About this image (recto page), with a reference to Chapter~\ref{ch:foo}.

\end{document}

答案1

由于没有人回答,所以我阅读了回忆录文档并回答了我自己的问题。

对于链接,使用

Chapter~\titleref{ch:foo}

代替

Chapter~\ref{ch:foo}

要在背面开始章节,请使用openleft类别选项

\documentclass[12pt,openleft]{memoir}

相关内容