HTML authoring workspace

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.

    • Basic document structure:
      % 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>
    • Bold text: \textbf{...} to <strong>...</strong> or <b>...</b>
    • Italic text: \textit{...} to <emph>...</emph> or <i>...</i>
    • Subscript text: \textsubscript{...} to <sub>...</sub>
    • Superscript text: \textsuperscript{...} to <sup>...</sup>
    • Citations:
      % 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.