LaTeX 882 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. ~~~~~~~~
  2. \section{Section heading}
  3. \subsection{Subsection}
  4. Formatting: \emph{italics},
  5. \textbf{bold},
  6. super\textsuperscript{script},
  7. sub\textsubscr{script},
  8. \sout{strikeout}. A line break\\
  9. can be forced with \\ at
  10. the end of the line.
  11. \begin{quote}
  12. Indented quotation
  13. \end{quote}
  14. Links:
  15. \href{http://foo.bar}{external},
  16. \href{}{Wiki Link},
  17. \includegraphics{/img/banner.png},
  18. \href{#subsection}{to heading}.
  19. \begin{verbatim}
  20. #include <stdbool.h>
  21. \end{verbatim}
  22. \begin{itemize}
  23. \item bulleted
  24. \item list
  25. \end{itemize}
  26. \begin{enumerate}
  27. \item ordered
  28. \item list
  29. \begin{enumerate}[a.]
  30. \item sublist
  31. \item another
  32. \end{enumerate}
  33. \item item three
  34. \end{enumerate}
  35. \begin{description}
  36. \item[term] definition
  37. \item[orange] orange fruit
  38. \end{description}
  39. ~~~~~~~~
  40. For more: [LaTeX], [pandoc].
  41. [LaTeX]: http://www.latex-project.org/
  42. [pandoc]: http://pandoc.org/README.html