我想要获取n
学生的name
、roll
、phone
值的数量,TextField
如下所示 -
我会将其包含在我尾部的另一个现有表单中。我的现有文件 -
\documentclass{article}
\usepackage{hyperref}
\begin{document}
\begin{Form}
\renewcommand*{\LayoutCheckField}[2]{#2 #1}
We want to build up a statistical model to predict tution fees of students. We will use these information to build up the model. Your privacy must be ensured. Please help us for developing the model by giving your information mentioning below-\\\\
\TextField[name=name,align=0]{Name:}\\\\
\ChoiceMenu[radio,radiosymbol=,name=year]{Year:}{1st,2nd,3rd,4th,MS}\\\\
\ChoiceMenu[radio,name=university]{University:}{DU,BUET,DMC,JU,JNU}\\\\
\TextField[name=dept.]{Department:} \ChoiceMenu[radio,name=section]{Section:}{Science,Arts,Commerce}\\\\
\ChoiceMenu[radio,name=hsscsection]{HSC Section:}{Science,Arts,Commerce}\\\\
\TextField[name=hsscCollege]{HSC College:}\\\\
\TextField[name=hall]{Hall:}\ChoiceMenu[radio,name=hall]{}{mess,Basha}\\\\
\TextField[name=homedistict]{Home District:}\\\\
\ChoiceMenu[radio,name=foccupation]{Father's occupation:}{Farmer,Job holder,Businessman}\\\\
\ChoiceMenu[radio,name=moccupation]{Mother's occupation:}{Housewife,Job holder}\\\\
\TextField[name=familymembers]{Family members:}\\\\
\TextField[name=earningmembers]{No. of earning members:}\\\\
\TextField[name=birthposition]{Birth Position:}\\\\
\ChoiceMenu[radio,name=texperi]{Experienc as tutor:}{no,1y,2y,3y,4y,4up}\\\\
\ChoiceMenu[radio,name=scholarship]{Getting scholarship per month:}{0.00,1-2,2.1-3.0,3.1-4.0,4.1-5.0,5up}\\\\
\ChoiceMenu[radio,name=takingmoneyhome]{Getting money per month from home:}{0.00,1-2,2.1-3.0,3.1-4.0,4.1-5.0,5up}\\\\
\TextField[name=tourcount]{Number of tour per year:}\\\\
\ChoiceMenu[radio,name=meal]{From where taking meal:}{Hall dyning/mess, Hall canteen, hotel,Basha}\\\\
\ChoiceMenu[radio,name=GF]{Having GF?}{yes,no}\\\\
\ChoiceMenu[radio,name=smoker]{Smoker?}{yes,no}\\\\
\ChoiceMenu[radio,name=readd]{Having readdmission?}{yes,no}\\\\
\ChoiceMenu[radio,name=result]{Result:}{\textless 2.5=A,\textless 3.00=B,\textless 3.5=C,\textless 4.00=D}\\\\
\end{Form}
\end{document}
我将如何使用制作表格hyperref
?
PS 您可以给出答案,n > 2
并记住我必须csv
在填写字段后将数据提取为或其他格式。