Skip to content

Commit

Permalink
Remove use of color to designate complex conjugation
Browse files Browse the repository at this point in the history
  • Loading branch information
jwj61 committed Nov 13, 2024
1 parent 487512a commit 6fe5589
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,16 +98,18 @@ <h2> Character values on conjugacy classes</h2>
{% endfor %}$
{% else %}
$r_1, \ldots, r_{ {{object.number_field_galois_group().degree()}} }$
{% endif %}</td><td>Character value</td></tr></thead>
{% endif %}</td><td>Character value</td><td>Complex conjugation</td></tr></thead>

<tbody>
{% for gen in object.number_field_galois_group().conjugacy_classes()%}
<tr {% if loop.index == object.number_field_galois_group().index_complex_conjugation()%}class="bluehighlight"{%endif%}>
<td align="center">${{gen.size()}}$</td><td align="center">${{gen.order()}}$</td><td align="center">${{cycle_string(gen.representative())}}$</td><td align="center">${{ object.character_formatted()[loop.index - 1] }}$</td></tr>
<tr>
<td align="center">${{gen.size()}}$</td><td align="center">${{gen.order()}}$</td><td align="center">${{cycle_string(gen.representative())}}$</td><td align="center">${{ object.character_formatted()[loop.index - 1] }}$</td>
<td align="center">
{% if loop.index == object.number_field_galois_group().index_complex_conjugation()%}&#x2713;{%endif%}</td>
</tr>
{% endfor %}
</tbody>
</table>
<p>The blue line marks the conjugacy class containing complex conjugation.</p>
{# For testing in progress
<div>
<br>
Expand Down

0 comments on commit 6fe5589

Please sign in to comment.