To begin, use the "Open File" button to open a source file you want to work on. You can also drag and drop files directly into this space.
% in LaTeX
\section{Section title}
Some section text...
\subsection{Subsection title}
Some subsection text...
<!-- in HTML -->
<section>
<h2>Section title</h2>
<p>Some section text...</p>
<section>
<h3>Subsection title</h3>
<p>Some subsection text...</p>
</section>
</section>
\textbf{...}
to <strong>...</strong>
or <b>...</b>
\textit{...}
to <emph>...</emph>
or <i>...</i>
\textsubscript{...}
to <sub>...</sub>
\textsuperscript{...}
to <sup>...</sup>
% in LaTeX
\citet{Einstein1914} says something brilliant about general relativity.
General relativity \citep{Einstein1914} is a fascinating topic.
<!-- in HTML, specific to elucidate -->
<span class="citet" data-refs="Einstein1914"></span> says something brillian about general relativity.
General relativity <span class="citep" data-refs="Einstein1914"> is a fascinating topic.