forked from pkalkul/latex.sugar
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Sample.tex
37 lines (24 loc) · 866 Bytes
/
Sample.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
\documentclass[10pt,twocolumn]{article}
\usepackage{verbatim}
\title{Sample Latex for Espresso!}
\author{Trevor Fountain and pkalkul}
\begin{document}
\maketitle
\section{Introduction}
\subsection{SubIntro}
\subsection{AnotherSub}
\section{Final Section}
% This is a comment
\emph{Latex.sugar} is a \textbf{Sugar} for the delicious \textsc{Espresso} editor that provides syntax highlighting, auto-completion, snippets, and itemizers for LaTeX documents. It recognizes a large number of common LaTeX constructions, including multiline comments, sectioning, and $math mode$.
\begin{comment}
See? This paragraph doesn't exist.
\end{comment}
\begin{table}[h!]
\begin{centering}
\begin{tabular}{r|c c c}
\textbf{Features} & Syntax Highlighting & Itemizers & Text Actions \\ \hline
Provided? & X & X &
\end{tabular}
\end{centering}
\end{table}
\end{document}