Skip to content

Commit

Permalink
-- experimenting with tex
Browse files Browse the repository at this point in the history
  • Loading branch information
djnzx committed Dec 13, 2024
1 parent dcbd589 commit 5c5c97b
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 0 deletions.
4 changes: 4 additions & 0 deletions llatex/1.md
Original file line number Diff line number Diff line change
@@ -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
5 changes: 5 additions & 0 deletions llatex/1.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
\documentclass{article}
\begin{document}
First document. This is a simple example, with no
extra parameters or packages included.
\end{document}
3 changes: 3 additions & 0 deletions llatex/2.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
% letterpaper, a4paper, legalpaper
\documentclass[12pt, letterpaper]{article}
\usepackage{graphicx}
43 changes: 43 additions & 0 deletions llatex/3.tex
Original file line number Diff line number Diff line change
@@ -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}
Binary file added llatex/imges/universe.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 5c5c97b

Please sign in to comment.