有没有一种简单的方法可以在首页右上角放置一个框,要求输入学生姓名/号码?有没有类似于用绝对位置定义网页上某个位置的方法?
我需要满足以下条件:
- 不使用考试类
- 将框放在边距内(即不会将标题向下移动/妨碍)
答案1
感谢@DavidCarlisle 在原始评论中提供的链接,让我找到了他的回答这里,我发现了以下技巧:
\documentclass[letterpaper]{article}
\begin{document}
\title{Quiz Two}
\author{Batman}
\date{}
\maketitle
\begin{picture}(0,0)
\put(200,200){
\begin{tabular}{|r|c|}
\hline
Name: & \hspace{5cm} \\
\hline
Student Number: & ~ \\
\hline
\end{tabular}
}
\end{picture}
\end{document}
通过改变命令中的数字来控制框的位置\put
。
答案2
完整示例:
\documentclass{article}
\usepackage{tikz}
\begin{document}
\thispagestyle{empty}
\begin{tikzpicture}[remember picture, overlay]
\node[below left] (coin) at (current page.north east)
{\begin{tabular}{l p{3cm}}
Last Name: & \hrule \\
First Name: &\hrule \\
Date:& \hrule \\
\end{tabular}
};
\end{tikzpicture}
\end{document}