在日记的回忆录章节中使用宏

在日记的回忆录章节中使用宏

我正在尝试创建一个自动章节标题,显示星期几和日期(有点像日记条目)我有一个名为“august”的目录,其中有一个名为 01.tex 的文件。父文件 08.tex(08 代表八月)调用 01.tex。请参阅我的 WME

主文件08.tex:

\documentclass{memoir}    
\usepackage[parent]{currfile}    
\let\ordinal\relax    
\usepackage[dayofweek]{datetime}    
\newcommand{\diarydate}{\formatdate{\currfilebase}{\parentfilebase}{2014}}


\begin{document}

\input{08/1.tex}

\end{document} 

08/1.tex:

\chapter{\diarydate}

我收到的错误:

./08/1.tex:1: \@chapter 的使用与其定义不符。[\chapter{\lauddate}] ./08/1.tex:1: \@gobbletwo 的参数有一个多余的 }。[\chapter{\lauddate}] ./08/1.tex:1: 段落在 \@gobbletwo 完成之前结束。[\chapter{\lauddate}]

相关内容