我希望我的论文中有一张乳胶白页,上面写着一些小题词。我只想在页面右侧、中间稍上方写上“致我的父亲”。
有什么帮助吗?
答案1
你可以这样说
\documentclass{book}
\usepackage{lipsum}
\title{a title}
\begin{document}
\maketitle
%maybe more stuff
\cleardoublepage\thispagestyle{empty} %clears head and foot
\vspace*{5cm} %adjust spacing as you like
\begin{center} % i think this should be centered
To my father
\end{center}
\vfill
%some content.. here fake
\chapter{a chapter}
\lipsum[30]
\end{document}
感谢 Barbara Beeton 在评论中提出的一些宝贵建议