请考虑以下示例:
\documentclass[a4paper]{article}
\title{A Paper}
\author{\begin{tabular}{l@{\ }l}
Advisor: "Name of Advisor"
Candidate: "My Name"
\end{tabular}}
\begin{document}
\maketitle
Given in this paper ...
\end{document}
我的问题是如何使“顾问”和“候选人”后面的两个冒号位于同一行?
答案1
我根本就不确定这是否意味着什么。
请注意,期刊对作者姓名的排版/对齐有自己的指导方针。
根本@{\ }
没有用,要求第一列右对齐,所以使用r
列说明符。
\documentclass[a4paper]{article}
\title{A Paper}
\author{%
\begin{tabular}{rl}
Advisor: & ``Name of Advisor'' \tabularnewline
Candidate: & ``Name of Candidate''
\end{tabular}
}
\begin{document}
\maketitle
Given in this paper ...
\end{document}