如何使用回憶錄包製作自訂扉頁

如何使用回憶錄包製作自訂扉頁

可能有一種簡單的方法可以做到這一點,但如何將回憶錄標題頁樣式添加到現有文件中?我已經嘗試過這段程式碼,但我仍然得到基本的標題頁。

\documentclass[12pt,a4paper,twoside]{memoir}
\usepackage[T1]{fontenc}
\usepackage{geometry}
\usepackage{titlesec}  %needs recent version of »titlesec«
\usepackage{xcolor}


\newcommand*{\titleGM}{\begingroup% Gentle Madness
\drop = 0.1\textheight
\vspace*{\baselineskip}
\vfill
\hbox{%
\hspace*{0.2\textwidth}%
\rule{1pt}{\textheight}
\hspace*{0.05\textwidth}%
\parbox[b]{0.75\textwidth}{
\vbox{%
\vspace{\drop}
{\noindent\HUGE\bfseries Some\\[0.5\baselineskip]
Conundrums}\\[2\baselineskip]
{\Large\itshape Puzzles for the Mind}\\[4\baselineskip]
{\Large THE AUTHOR}\par
\vspace{0.5\textheight}
{\noindent The Publisher}\\[\baselineskip]
}% end of vbox
}% end of parbox
}% end of hbox
\vfill
\null
\endgroup}

\title{\Huge\textbf{ORTHODOX RULE OF PRAYER}}
\author{\Large\textbf{Father Thomas Moore, Michael Dykes}}
\date{\Large{\today}}

\begin{document}

\title{\Huge\textbf{ORTHODOX RULE OF PRAYER}}
\author{\Large\textbf{Father Thomas Moore, Michael Dykes}}
\date{\Large{\today}}

Towards evening, we stand before the holy icons (having lit a candle and        maybe some incense), with reverence and fear of God; we gather our thoughts, make the        Sign of the Cross, and say:

\end{document}

謝謝!

答案1

您只需要建立\drop長度並\titleGM在文件中調用(我做了另外兩個小更改,將頁面樣式設定為empty更改規則的高度以防止溢出\vbox):

\documentclass[12pt,a4paper,twoside]{memoir}
\usepackage[T1]{fontenc}
\usepackage{geometry}
\usepackage{titlesec}  %needs recent version of »titlesec«
\usepackage{xcolor}

\newlength\drop
\newcommand*{\titleGM}{%
\thispagestyle{empty}
\begingroup% Gentle Madness
\drop = 0.1\textheight
\vspace*{\baselineskip}
\vfill
\hbox{%
\hspace*{0.2\textwidth}%
\rule{1pt}{\dimexpr\textheight-28pt\relax}%
\hspace*{0.05\textwidth}%
\parbox[b]{0.75\textwidth}{
\vbox{%
\vspace{\drop}
{\noindent\HUGE\bfseries Some\\[0.5\baselineskip]
Conundrums}\\[2\baselineskip]
{\Large\itshape Puzzles for the Mind}\\[.37\baselineskip]
{\Large THE AUTHOR}\par
\vspace{0.5\textheight}
{\noindent The Publisher}\\[\baselineskip]
}% end of vbox
}% end of parbox
}% end of hbox
\vfill
\null
\endgroup}

\title{\Huge\textbf{ORTHODOX RULE OF PRAYER}}
\author{\Large\textbf{Father Thomas Moore, Michael Dykes}}
\date{\Large{\today}}

\begin{document}

\titleGM

Towards evening, we stand before the holy icons (having lit a candle and        maybe some incense), with reverence and fear of God; we gather our thoughts, make the        Sign of the Cross, and say:

\end{document}

在此輸入影像描述

要自動使用標準命令中包含的信息\author\title需要進行一些修改:

\documentclass[12pt,a4paper,twoside]{memoir}
\usepackage[T1]{fontenc}
\usepackage{geometry}
\usepackage{titlesec}  %needs recent version of »titlesec«
\usepackage{xcolor}

\makeatletter
\newlength\drop
\newcommand*{\titleGM}{%
\thispagestyle{empty}
\begingroup% Gentle Madness
\drop = 0.1\textheight
\vspace*{\baselineskip}
\vfill
\hbox{%
  \hspace*{0.2\textwidth}%
  \rule{1pt}{\dimexpr\textheight-28pt\relax}%
  \hspace*{0.05\textwidth}% 
  \parbox[b]{0.75\textwidth}{%
    \vbox{%
      \vspace{\drop}
      {\Huge\bfseries\raggedright\@title\par}\vskip2.37\baselineskip
      {\Large\bfseries\@author\par}
      \vspace{0.5\textheight}
    }% end of vbox
  }% end of parbox
}% end of hbox
\vfill
\null
\endgroup}
\makeatother

\title{ORTHODOX RULE OF PRAYER}
\author{Father Thomas Moore, Michael Dykes}

\begin{document}

\titleGM

Towards evening, we stand before the holy icons (having lit a candle and        maybe some incense), with reverence and fear of God; we gather our thoughts, make the        Sign of the Cross, and say:

\end{document}

在此輸入影像描述

相關內容