页末题词

页末题词

我怎样才能将题词放在页面末尾,而不是开头?我使用这个序言:

\documentclass[pdftex,11pt,a4paper,openany]{memoir}
\usepackage[brazil]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{indentfirst}
\usepackage{latexsym}
\usepackage{amsmath,amssymb,amsfonts,wasysym}
\usepackage[pdftex]{graphicx}
\usepackage{wrapfig}
\usepackage[left=3cm,right=2cm,top=3cm,bottom=3cm]{geometry}
\usepackage{color}
\usepackage[dvipsnames]{xcolor}
\definecolor{darkgray}{gray}{0.3}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\usepackage[pdftex, colorlinks=true, linkcolor=darkgray, citecolor=blue, urlcolor=blue]{hyperref}

并在题词页面上发出以下命令:

\thispagestyle{empty}
\epigraph{O problema dessas citações na internet é a dificuldade para saber se elas são realmente autênticas.}{Friedrich Nietzsche}

我已经尝试使用\vspace{}\vfill,而且它们不起作用。

答案1

\epigraph命令会在文本中放置题词的位置排版。因此,您可以通过在前面插入以下内容将其放置在页面的末尾\vfill

\vfill
\epigraph{...}{...}

由于\vfill在页面开头无效,因此使用

\vspace*{\fill}
\epigraph{...}{...}

如果您想将题词推到空白页的下方。带星号的版本\vspace*会强制在页面开头添加空白,否则这些空白可能会被删除。

如果您想先写题词,然后再写一些文字,但题词应该位于页面末尾的文字之后,则可以使用以下选项之一:在页面的精确位置插入图形。这也适用于诸如题词之类的文本框。textpos会很容易。您只需小心避免重叠即可 - 线性书写会更容易。

相关内容