Okay, an Emacs StackExchange person said I'd have to alter the actual HTML/CSS, that adding #+LaTeX_CLASS_OPTIONS: [oneside,reqno] would not help the HTML output -- and it doesn't. I did find the HTML section
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
displayAlign: "left",
displayIndent: "5em",
"HTML-CSS": { scale: 100,
linebreaks: { automatic: "false" },
webFont: "Neo-Euler"
},
SVG: {scale: 100,
linebreaks: { automatic: "false" },
font: "Neo-Euler"},
NativeMML: {scale: 100},
TeX: { equationNumbers: {autoNumber: "AMS"},
MultLineWidth: "85%",
TagSide: "right",
TagIndent: ".8em"
}
});
</script>
where the TagSide "left" can be changed after output by hand to "right", and that solves the problem. So how would I tell org-mode to make this change? Is there any control over MathJax from Emacs variables or my org-mode file?