diff --git a/llatex/1.md b/llatex/1.md new file mode 100644 index 00000000..26c58a3b --- /dev/null +++ b/llatex/1.md @@ -0,0 +1,4 @@ +https://www.ctan.org +https://ctan.org/pkg/graphicx?lang=en +https://www.overleaf.com/learn/latex/Learn_LaTeX_in_30_minutes#What_is_LaTeX? +https://www.overleaf.com/learn/latex/Page_size_and_margins diff --git a/llatex/1.tex b/llatex/1.tex new file mode 100644 index 00000000..3bbeac6d --- /dev/null +++ b/llatex/1.tex @@ -0,0 +1,5 @@ +\documentclass{article} +\begin{document} + First document. This is a simple example, with no + extra parameters or packages included. +\end{document} diff --git a/llatex/2.tex b/llatex/2.tex new file mode 100644 index 00000000..2a516a24 --- /dev/null +++ b/llatex/2.tex @@ -0,0 +1,3 @@ +% letterpaper, a4paper, legalpaper +\documentclass[12pt, letterpaper]{article} +\usepackage{graphicx} diff --git a/llatex/3.tex b/llatex/3.tex new file mode 100644 index 00000000..ae2b7df8 --- /dev/null +++ b/llatex/3.tex @@ -0,0 +1,43 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% Welcome to Overleaf --- just edit your LaTeX on the left, +% and we'll compile it for you on the right. If you open the +% 'Share' menu, you can invite other users to edit at the same +% time. See www.overleaf.com/learn for more info. Enjoy! +% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +\documentclass[12pt, letterpaper]{article} +\usepackage{graphicx} %LaTeX package to import graphics +\graphicspath{{images/}} %configuring the graphicx package +\title{My first LaTeX document} +\author{Hubert Farnsworth\thanks{Funded by the Overleaf team.}} +\date{August 2022} +\begin{document} + \maketitle + We have now added a title, author and date to our first \LaTeX{} document! + + Some of the \textbf{greatest} + discoveries in \underline{science} + were made by \textbf{\textit{accident}}. + + Some of the greatest \emph{discoveries} in science + were made by accident. + + \textit{Some of the greatest \emph{discoveries} + in science were made by accident.} + + \textbf{Some of the greatest \emph{discoveries} + in science were made by accident.} + \includegraphics{universe} + + \begin{itemize} + \item The individual entries are indicated with a black dot, a so-called bullet. + \item The text in the entries may be of any length. + \end{itemize} + + \begin{enumerate} + \item This is the first entry in our list. + \item The list numbers increase with each entry we add. + \end{enumerate} + +\end{document} \ No newline at end of file diff --git a/llatex/imges/universe.jpg b/llatex/imges/universe.jpg new file mode 100644 index 00000000..ed19e7d6 Binary files /dev/null and b/llatex/imges/universe.jpg differ