This website works better with JavaScript.
Home
Explore
Help
Sign In
Latex
/
jade-latex
Watch
1
Star
1
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
examples for day 1
pull/1/head
Gerardo Marx Chávez-Campos
3 years ago
parent
f953d06271
commit
dde1e3fb23
3 changed files
with
19 additions
and
0 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
.gitignore
+6
-0
1_basics/1_example/main.tex
+12
-0
1_basics/2_example/main.tex
+ 1
- 0
.gitignore
View File
@ -2,3 +2,4 @@
*/auto/
*/auto/
*.log
*.log
*.synctex.gz
*.synctex.gz
*.out
+ 6
- 0
1_basics/1_example/main.tex
View File
@ -0,0 +1,6 @@
%
Preamble
\documentclass
{
standalone
}
%
document's body
\begin
{
document
}
Hello
\LaTeX
{
}
\end
{
document
}
+ 12
- 0
1_basics/2_example/main.tex
View File
@ -0,0 +1,12 @@
%
Preamble
\documentclass
[a4paper]
{
article
}
\usepackage
[utf8]
{
inputenc
}
\usepackage
{
lipsum
}
\title
{
My First Document in
\LaTeX
{
}
}
\author
{
Gerardo Marx Chávez Campos
}
\date
{
2021/01/28
}
%
document's body:
\begin
{
document
}
\maketitle
{
}
\lipsum
[1-2]
\end
{
document
}
Write
Preview
Loading…
Cancel
Save