I have a task in an exploration where I would like students to fill in a table with their computed values and then use this work to develop a general formula. I tried using fillins and there are now lines, but when I attempt to enter answers into the html nothing appears.
a. Is this possible for html in the current PreTeXt version?
b. Will this work in Runestone even if it doesn't work in html?
c. Am I missing something in the code?
d. The last row asks for algebraic expressions, some of which could be written in multiple ways. Is there documentation to help me write this in a way that would be checkable.
My code follows. TIA!
<task xml:id="regular-pentagon-table-task" label="regular-pentagon-table-label">
<!-- Is there a way for students to fill in answers for this table? -->
<statement>
<p>
Use your work from the previous task to complete the row for regular
pentagon in the table below. Repeat this procedure for squares, regular
hexagons, regular octagons, and regular decagons: First draw diagonals from
a single vertex to dissect the polygon into triangles, next use the triangles
to determine the total vertex angle measure, and then determine the
measure of each angle. In the final row, <m>n</m> is a variable representing
the number of sides and the answers will be algebraic expressions involving the
variable <m>n</m>.
</p>
<table xml:id="table-vertex-measure-regular-polygons-common">
<title>Angles of Regular Polygons</title>
<tabular halign="center" row-headers="yes">
<col right="medium"/>
<col right="minor"/>
<col right="minor"/>
<col right="minor"/>
<col />
<row bottom="medium" header="yes">
<cell>shape</cell>
<cell><line>number</line><line>of sides</line></cell>
<cell><line>number of</line><line>triangles</line></cell>
<cell><line>total angle</line><line>measure</line></cell>
<cell><line>single vertex</line><line>measure</line></cell>
</row>
<row bottom="minor">
<cell>triangle</cell>
<cell>3</cell>
<cell>1</cell>
<cell>180</cell>
<cell>60</cell>
</row>
<row bottom="minor">
<cell>square</cell>
<cell>4</cell>
<cell><fillin mode="number" answer="2" /></cell>
<cell><fillin mode="number" answer="360" /></cell>
<cell><fillin mode="number" answer="90" /></cell>
</row>
<row bottom="minor">
<cell>regular pentagon</cell>
<cell>5</cell>
<cell><fillin mode="number" answer="3" /></cell>
<cell><fillin mode="number" answer="540" /></cell>
<cell><fillin mode="number" answer="108" /></cell>
</row>
<row bottom="minor">
<cell>regular hexagon</cell>
<cell>6</cell>
<cell><fillin mode="number" answer="4" /></cell>
<cell><fillin mode="number" answer="720" /></cell>
<cell><fillin mode="number" answer="120" /></cell>
</row>
<row bottom="minor">
<cell>regular octagon</cell>
<cell>8</cell>
<cell><fillin mode="number" answer="6" /></cell>
<cell><fillin mode="number" answer="1080" /></cell>
<cell><fillin mode="number" answer="135" /></cell>
</row>
<row bottom="minor">
<cell>regular decagon</cell>
<cell>10</cell>
<cell><fillin mode="number" answer="8" /></cell>
<cell><fillin mode="number" answer="1440" /></cell>
<cell><fillin mode="number" answer="144" /></cell>
</row>
<row>
<cell>regular <m>n</m>-gon</cell>
<cell><m>n</m></cell>
<cell><fillin mode="math" answer="n-2" /></cell>
<cell><fillin mode="math" answer="180(n-2)" /></cell>
<cell><fillin mode="number" answer="180(n-2)/n" /></cell>
</row>
</tabular>
</table>
<!--How do I fix the fillins in the above table so that answers can be inserted?
What mode is needed for the last row?-->
</statement>
</task>