我只想将我的班级和教授信息添加到标题中。我不想使用分页符。
我想要这样的标题右对齐:
Anthony Sample
Intro to Expos
Prof. Selinsky
Summary: Draft
如何实现?如能得到任何帮助,我们将不胜感激。
\documentclass[12pt]{article}
\begin{document}
\title{}
\author{}
\date{}
\end{document}
答案1
这能达到你想要的效果吗?
\documentclass[12pt]{article}
\title{\hfill Anthony Sample\\
\ \\
\hfill Intro to Expos\\
\ \\
\hfill Prof. Selinsky\\
\ \\
\hfill Summary: Draft}
\date{\hfill\today}
\begin{document}
\maketitle
\end{document}
关键思想是:
- 你可以把任何你想要的东西放进去
\title{}
。 - 可以添加换行符
\\
(如 Werner 的建议)。 - 您需要在一行上放置一些内容才能添加
\\
,因此当我想创建空白行时,我会\
在前面添加一个硬空格。\\
\hfill
尝试填充尽可能多的空间。通过将其放在一行中的文本之前,它会将文本推到最右边。
相同的观点适用于\date{}
,但\author{}
似乎灵活性较差。