不行,这是一个使用latex设计的pdf封面
时间: 2024-01-27 12:04:48 浏览: 126
如果你是在 LaTeX 中设计的 PDF 封面,可以使用 minipage 环境将姓名和学号分别放在两个小框中,并设置两个小框的宽度为相同的长度,代码如下:
```
\begin{titlepage}
\begin{center}
\vspace*{1cm}
\Huge
\textbf{Thesis Title}
\vspace{0.5cm}
\LARGE
Thesis Subtitle
\vspace{1.5cm}
\textbf{Author Name}
\vfill
\begin{minipage}{0.45\linewidth}
\centering
\textbf{姓名:}\\
\vspace{0.2cm}
\underline{\makebox[3cm]{蔡兆彬}}
\end{minipage}
\hfill
\begin{minipage}{0.45\linewidth}
\centering
\textbf{学号:}\\
\vspace{0.2cm}
\underline{\makebox[3cm]{201205102852}}
\end{minipage}
\vfill
\Large
Department Name\\
University Name\\
Date
\end{center}
\end{titlepage}
```
在这个例子中,姓名和学号的小框各占封面宽度的 $45\%$,并分别使用 \textbf 命令加粗标注。使用 \makebox 命令使得小框宽度为 3cm,同时将小框内容用 \underline 命令加下划线。
阅读全文