-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
\usepackage{verbatim}
to TeX template
- Loading branch information
1 parent
1956bbc
commit cd85b3d
Showing
3 changed files
with
16 additions
and
4 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
Binary file not shown.
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 |
---|---|---|
@@ -1,9 +1,20 @@ | ||
\documentclass{article} | ||
\usepackage{amsmath, amssymb, amsfonts} | ||
\usepackage{amssymb, amsthm, enumitem, microtype} | ||
\usepackage[utf8]{inputenc} | ||
\usepackage[margin=1in,top=0.6in,bottom=0.6in]{geometry} | ||
\usepackage[fleqn]{amsmath} | ||
|
||
\usepackage{verbatim} | ||
\usepackage{minted} | ||
% Install: pip install Pygments | ||
% Add "-shell-escape", to vscode: | ||
% Open settings, search for "latex-workshop.latex.tools", click "Edit in settings.json", add "-shell-escape" to the pdflatex command. | ||
|
||
\begin{document} | ||
|
||
\begin{equation*} | ||
e.g., (g) \ \log{\frac{n}{\log n}} = \log n - \log \log n = \Theta(\log n) | ||
\end{equation*} | ||
\[ | ||
\frac{\partial log(x)}{\partial x} = \frac{1}{x} | ||
\] | ||
In here, log is the natural logarithm. | ||
|
||
\end{document} |