You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can insert equations using standard latex macros like $e^{i\pi} = -1$ → $eiπ = -1$ for inline equations using single dollars or separate line equations using double dollars $$\sum_{n=1}^{\infty} n = -\frac{1}{12}$$ → $$∑n=1∞ n = -\frac{1}{12}$$
Alternatively, you can use latex begin and end equation \begin{equation}1 + 1 = 2\end{equation} →
\begin{equation}1 + 1 = 2\end{equation}
Images
You can insert an image using double square braces, like [[./imgs/oxford_logo.png]]. Specify html attributes beforehand, like width.
Code
You can insert code using begin_src and end_src with a language:
defagi(input_string):
return42
Monospace Example
You can use begin_example to have a block of monospace text
Like this example
Link Example
You can use links by writing [[https://www.google.com/][Google]] → Google
Random HTML snippets
For inline HTML, you can use double at signs @@html:<kbd>like this</kbd>@@ → @@html:<kbd>like this</kbd>@@.
For a single HTML line, you can use #+html: followed by your line
Like this line in html
You can insert any block of HTML by surrounding your code with #+begin_export html and #+end_export, which can include javascript.
Example Websites
The websites below were created using a similar style to this website. Feel free to use them as reference when trying to incorporate specific features.