-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
f0aebf5
commit 8802143
Showing
3 changed files
with
69 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,2 @@ | ||
% Specific to this .tex | ||
\newcommand\HW{Hello World!} | ||
This comment has been minimized.
Sorry, something went wrong. |
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,15 @@ | ||
\usepackage{amsfonts,amsmath,amssymb} | ||
\usepackage{fontawesome} % For fancy icons | ||
\usepackage[a4paper]{geometry} | ||
\geometry{rmargin=4cm,vmargin=3cm} | ||
\usepackage{graphicx} | ||
\usepackage{hyperref} | ||
\hypersetup{ | ||
colorlinks=true, | ||
linkcolor=blue, | ||
urlcolor=gray, | ||
citecolor=blue | ||
} | ||
\usepackage[utf8x]{inputenc} | ||
\usepackage{natbib} | ||
\usepackage{xcolor} |
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,52 @@ | ||
\documentclass{article} | ||
|
||
\input{packages} | ||
\include{commands} | ||
|
||
\begin{document} | ||
|
||
%%%%%%%%%%% | ||
%% TITLE %% | ||
%%%%%%%%%%% | ||
|
||
\title{Reproducible paper} | ||
|
||
\author{Guillaume Gautier} | ||
|
||
\date{ Last compilation \today } | ||
|
||
\maketitle | ||
|
||
%%%%%%%%%%%%%% | ||
%% Abstract %% | ||
%%%%%%%%%%%%%% | ||
|
||
\abstract{A collaborative paper/note with \LaTeX. | ||
The typos are made intentionally \faSmileO} | ||
|
||
%%%%%%%%%% | ||
%% BODY %% | ||
%%%%%%%%%% | ||
|
||
\section{Equations} % (fold) | ||
\label{sec:equations} | ||
|
||
I was told that | ||
\begin{equation} | ||
\sum_{n=1}^{\infty} \frac{1}{n^2} = \frac{\pi}{2}. | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong. |
||
\end{equation} | ||
|
||
\begin{equation} | ||
\HW | ||
This comment has been minimized.
Sorry, something went wrong. |
||
\end{equation} | ||
|
||
% section equations (end) | ||
|
||
\section{Random} % (fold) | ||
\label{sec:random} | ||
|
||
Take a look at the \href{https://en.wikipedia.org/wiki/Linus_Torvalds}{WikipediA} page of Guido van Rossum, the father of Python. | ||
This comment has been minimized.
Sorry, something went wrong. |
||
|
||
% section random (end) | ||
|
||
\end{document} |
Maybe place the command in a
\text{}
to use it in a equation!See 8802143#r30755637