-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
% letterpaper, a4paper, legalpaper | ||
\documentclass[12pt, letterpaper]{article} | ||
\usepackage{graphicx} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.