aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_notes/latex.md
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-05-07 01:48:11 +0000
committerEgor Tensin <Egor.Tensin@gmail.com>2020-05-07 01:48:11 +0000
commitadb9b3fe169a92ea2da7b8c804c8b91f966c21a4 (patch)
treefe340f4de0afa6763e220194d2e6bea3366b4c71 /_notes/latex.md
parentbind-mounts: rename the file (diff)
downloadjekyll-theme-adb9b3fe169a92ea2da7b8c804c8b91f966c21a4.tar.gz
jekyll-theme-adb9b3fe169a92ea2da7b8c804c8b91f966c21a4.zip
remove everything except Jekyll theme stuff
I tagged the previous commit to explain what's going on.
Diffstat (limited to '')
-rw-r--r--_notes/latex.md39
1 files changed, 0 insertions, 39 deletions
diff --git a/_notes/latex.md b/_notes/latex.md
deleted file mode 100644
index c131efe..0000000
--- a/_notes/latex.md
+++ /dev/null
@@ -1,39 +0,0 @@
----
-title: Basic LaTeX document
-custom_css:
- - syntax.css
----
-A more-or-less complete, but still very basic LaTeX document follows.
-
-```tex
-\documentclass[11pt]{article}
-
-% Basic setup
-\usepackage{cmap}
-\usepackage[utf8]{inputenc}
-\usepackage[T2A]{fontenc}
-\usepackage[russian]{babel}
-
-% Completely arbitrary settings follow:
-
-% Sans serif font by default
-\renewcommand\familydefault{\sfdefault}
-
-% Document margins
-\usepackage[margin=2.5cm]{geometry}
-
-% Paragraph indents
-\usepackage{parskip}
-\setlength\parindent{0cm}
-\setlength\parskip{0cm}
-
-% URLs
-\usepackage[colorlinks=true,urlcolor=blue]{hyperref}
-
-\begin{document}
-
-Привет, \LaTeX!
-Ссылка на репозиторий: \href{https://github.com/egor-tensin/notes}{https://github.com/egor-tensin/notes}.
-
-\end{document}
-```