这是示例:
\documentclass[a4paper,11pt,spanish,answers]{exam}
\usepackage{showkeys}
\begin{document}
\begin{questions}
\question This is a question This is a question with the label printed on top.
\end{questions}
\end{document}
标签打印在文本上方,所以我无法阅读。
有办法解决吗或者我做错了什么?
答案1
您没有说明希望实现什么结果,但这里有两个基于showlabels
包的选项,而不是showkeys
。如果您想要类使用的内部标签exam
,请使用该inline
选项。这不需要在您的问题后出现任何其他信息,如下所示。
\documentclass[a4paper,11pt,spanish,answers]{exam}
\usepackage[inline]{showlabels}
\begin{document}
\begin{questions}
\question This is a question with the label displayed in various places depending on option used.
\question Here is another question.
\question One final question to complete the trilogy series.
\end{questions}
\end{document}
结果是
您可以创建自己的标签,该标签将根据其他选项定位。您必须将命令放置在\label
您想要标签的任何位置。以下示例将您的自定义标签放置在左边距中。
\documentclass[a4paper,11pt,spanish,answers]{exam}
\usepackage[left]{show labels}
\begin{document}
\begin{questions}
\question This is a question with the label displayed in various places depending on option used. \label{Q\thequestion}
\question This question has no label.
\question One final question to complete the trilogy series.\label{Q\thequestion}
\end{questions}
\end{document}
是您可以访问的变量\thequestion
之一(请参阅手册第 29 页)。有关其他选项,请参阅其手册第一页。exam
exam
showlabels