文章类中的奉献页面

文章类中的奉献页面

文档类中奉献页的对齐方式article

\documentclass[a4paper,12pt]{article} 
\usepackage[paper=a4paper,left=30mm,right=20mm,top=25mm,bottom=30mm]{geometry}
    \newenvironment{dedication}
        {\vspace{6ex}\begin{quotation}\begin{center}\begin{em}}
        {\par\end{em}\end{center}\end{quotation}}
\begin{document}
\begin{dedication}
\hspace{4cm}
\vspace*{9cm}{Dedicated to google and wikipedia.}
\end{dedication}
\end{document}

对齐是水平移动,而不是垂直移动。我是不是漏掉了什么?

在 Linux 中使用 Texmaker。

答案1

可能另一种方法更好。自己选择顶部和底部的空白比例(这里是 1:3)。

\documentclass[a4paper,12pt]{article}
\usepackage[paper=a4paper,left=30mm,right=20mm,top=25mm,bottom=30mm]{geometry}

\newenvironment{dedication}
  {\clearpage           % we want a new page
   \thispagestyle{empty}% no header and footer
   \vspace*{\stretch{1}}% some space at the top 
   \itshape             % the text is in italics
   \raggedleft          % flush to the right margin
  }
  {\par % end the paragraph
   \vspace{\stretch{3}} % space at bottom is three times that at the top
   \clearpage           % finish off the page
  }

\begin{document}
\begin{dedication}
Dedicated to google and wikipedia  
\end{dedication}
\end{document}

为了生成下面的图像,我添加了showframe选项geometry

在此处输入图片描述

答案2

因为这是谷歌搜索“latex 奉献”的第一个结果,所以我想贡献一种更简单的 Latex 奉献方式,它改编自这里

\newpage \vspace*{8cm}
% Sets a PDF bookmark for the dedication
\pdfbookmark{Dedication}{dedication}
\thispagestyle{empty}
\begin{center}
  \Large \emph{Dedicated to google and wikipedia}
\end{center}

相关内容