在乳胶中垂直对齐标题页

在乳胶中垂直对齐标题页

我想在标题页中垂直对齐文档标题和名称。我当前的 LaTeX 如下所示:

\documentclass[a4paper]{article}

\title{ ... }}
\author{ ... }
\date{{ ... }}

\begin{document}

\begin{titlepage}
\maketitle
\end{titlepage}

\end{document}

但是这会将内容显示在文档的上半部分。我想将其垂直居中。这个帖子要求使用\vplace。但我不知道如何\vplace在标题页中使用。

我试过

\begin{vplace}[1]
\begin{titlepage}
\maketitle
\end{titlepage}
\end{vplace}

并且

\begin{vplace}[1]
\title{ ... }}
\author{ ... }
\date{{ ... }}
\end{vplace}

但是它给出了类似这样的错误Environment vplace undefined。它似乎需要memoir类。但是 overleaf 无法识别memoir文档类。我如何在文档类中实现相同的功能?

答案1

titling软件包中有自定义maketitle命令的工具。以下是示例:

\documentclass[a4paper]{article}
\usepackage{showframe}
\renewcommand{\ShowFrameLinethickness}{0.3pt}
\usepackage{titling}
\setlength{\droptitle}{-9.5ex}
\renewcommand{\maketitlehooka}{\vfill\bfseries}
\renewcommand{\maketitlehookb}{\normalfont}
\renewcommand{\maketitlehookd}{\vfill\clearpage}
\title{The Quangle-Wangle’s Hat}
\author{Edward Lear}
\date{(1876)}

\begin{document}

\begin{titlingpage}
\maketitle
\end{titlingpage}

\end{document} 

在此处输入图片描述

答案2

就我个人而言,我会这样做,TiKz因为这样可以更好地控制对齐(我的观点),并且计算代码对我来说更容易理解——有关选项,TiKz请参阅编辑

垂直居中标题页:文章

\documentclass[]{article}
\title{Project Title}
\date{2016-31-01}
\author{Author Name}
%\usepackage[showframe]{geometry}

\usepackage{titling}
\renewcommand\maketitlehooka{\null\mbox{}\vfill}
\renewcommand\maketitlehookd{\vfill\null}

\begin{document}
    
    \begin{titlingpage}
        \maketitle
    \end{titlingpage}
    
\end{document} 

编辑---带有 tikz 的标题页

使用 Tikz 格式化标题页

在此处输入图片描述

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{calc}

\begin{document}
\begin{titlepage}

\begin{tikzpicture}[remember picture, overlay]
  \draw[line width = 2pt] ($(current page.north west) + (1in,-1in)$) 
  rectangle ($(current page.south east) + (-1in,1in)$);
  \draw[line width = 1pt, blue] ($(current page.center) + (-1in,0in)$) -- 
    ($(current page.center) + (1in,0in)$)node[pos=0.5,above](){%
    \textbf{\LARGE Escola Secundária Domingos Sequeira}\\[4.5cm]
  };
\end{tikzpicture}

\vfill

% Bottom of the page
\centering{\bf \large \today}

\end{titlepage}

\end{document}

相关内容