This process is somewhat involved. I may write notes about how to do this well in the future.
==== Enabling LaTeX ====
* Install the <code>REL1_31</code> branch of the [https://www.mediawiki.org/wiki/Extension:Math Math] extension to the <code>extensions</code> directory
<syntaxhighlight lang="bash">
sudo git clone -b REL1_31 --single-branch --depth 1 https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
</syntaxhighlight>
* Enable the extension in <code>LocalSettings.php</code>
<syntaxhighlight lang="php">
wfLoadExtension('Math');
</syntaxhighlight>
* Run the update script
<syntaxhighlight lang="bash">
sudo php maintenance/update.php
</syntaxhighlight>