forked from CheariX/vscode-devcontainer-latex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.tex
More file actions
33 lines (25 loc) · 739 Bytes
/
example.tex
File metadata and controls
33 lines (25 loc) · 739 Bytes
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
\documentclass{article}
\begin{document}
\title{A Simple LaTeX Document}
\author{CheariX}
\date{\today}
\maketitle
% SECTION: Content
\section{Introduction}
This is a very simple \LaTeX document to demonstrate and test this container's features.
% TODO: You can find your todos in the Anchros-Sidebar. They can be nested in SECTIONs.
% !SECTION
% SECTION: Content
\section{Content}
And a brief list:
\begin{itemize}
\item First item
\item Second item
\item Third item
\end{itemize}
You easily can detected grammatic and speling errors. % NOTE: These errors are intented.
VS Code underlines them in your editor and provides suggestions.
% !SECTION
\section{Conclusion}
That's all for this simple example!
\end{document}