我在用着sdaps-1.1.10.tar.gz(开发快照)我试图在乳胶中为 SDAPS 设计自己的标题,其中包含文本以及索引号框,如下所示
而不是自动生成这个标题。
我的第一个意图是编辑当前标题,因为我发现这里
正如它所说我必须编辑翻译-sdaps-词典-英语.dict编辑标题。确实如此,但我无法生成预期的结果,因为无论我做什么,如果我将 choicegroup 放在中间,它都会显示在自动生成的标题上方。这是翻译-sdaps-词典-英语.dict
% This file is auto-generated from gettext translations (.po files).
% The header of the original file follows for reference:
%
% Translations for sdaps LaTeX classes.
% Copyright 2010-2013 Ferdinand Schwenk ([email protected]).
% Copyright 2011-2013 Benjamin Berg ([email protected]).
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either version 1.3c
% of this license or (at your option) any later version.
% The latest version of this license is in
% http://www.latex-project.org/lppl.txt
%
\ProvidesDictionary{translator-sdaps-dictionary}{English}
\providetranslation{infotext}{This is my header option hari yan mage deyiyo}
\providetranslation{standard-deviation}{Standard-Deviation}
\providetranslation{info-cross}{Check}
\providetranslation{info-correct}{Uncheck to correct}
\providetranslation{answers}{Answers}
\providetranslation{questionnaireid}{Questionnaire-ID:}
\providetranslation{surveyid}{Survey-ID:}
\providetranslation{draft}{draft}
\providetranslation{info-select}{You can check any number of boxes in selection questions.}
\providetranslation{info-mark}{For questions with a range (1--\arabic{markcheckboxcount}) choose the answer the mark that fits best.}
\providetranslation{mean}{Mean}
经过几次尝试,我无法创建我想要的内容,所以我尝试删除标题并使用 latex 创建一个新标题,但尽管我删除了所有命令,但标题并没有完全删除。这是我的内容翻译-sdaps-词典-英语.dict现在
% This file is auto-generated from gettext translations (.po files).
% The header of the original file follows for reference:
%
% Translations for sdaps LaTeX classes.
% Copyright 2010-2013 Ferdinand Schwenk ([email protected]).
% Copyright 2011-2013 Benjamin Berg ([email protected]).
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either version 1.3c
% of this license or (at your option) any later version.
% The latest version of this license is in
% http://www.latex-project.org/lppl.txt
%
但输出是这样的。
我无法删除页眉上的那些文本。如果有人能帮助我删除页眉或创建我的页眉,对我会很有帮助。这是我当前的乳胶代码。
\documentclass[english,pdf]{sdaps}
\usepackage[utf8]{inputenc}
\author{Menuka Ishan}
\title{The Title hode}
\begin{document}
\begin{questionnaire}
\begin{choicegroup}{Please write your student ID into the $\sqcup$
and check the corresponding cross.\\ }
\groupaddchoice{\Huge$\Box$}
\groupaddchoice{\Huge$\Box$}
\groupaddchoice{\Huge$\Box$}
\groupaddchoice{\Huge$\Box$}
\groupaddchoice{\Huge$\Box$}
\groupaddchoice{\Huge$\Box$}
\groupaddchoice{\Huge$\Box$}
\groupaddchoice{\Huge$\Box$}
\choiceline{\hfill 0}
\choiceline{\hfill 1}
\choiceline{\hfill 2}
\choiceline{\hfill 3}
\choiceline{\hfill 4}
\choiceline{\hfill 5}
\choiceline{\hfill 6}
\choiceline{\hfill 7}
\choiceline{\hfill 8}
\choiceline{\hfill 9}
\end{choicegroup}
\end{questionnaire}
\end{document}