Skip to content

Resolve conflicts between iris.sty and acmart

Ralf Jung requested to merge ralf/acmart-fixes into master

\nequiv and \state now both exist in acmart so we have to pick different names.

sed script for fixing documents:

sed -i -E -f- *.tex <<EOF
s/\\\nequiv\b/\\\dist/g
s/\\\nincl\b/\\\subseteqN/g
s/\\\notnequiv\b/\\\ndist/g
s/\\\nequivset\b/\\\distset/g
s/\\\state\b/\\\ste/g
EOF

Merge request reports