aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_notes/latex.md
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-10-23 08:52:32 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2022-10-23 08:52:41 +0200
commit797d1e627ff6a4b53445bf49daf38384cafdb970 (patch)
tree7c75052742444e8b7d806455f6487703b2e0b988 /_notes/latex.md
parentbash.css -> guides.css (diff)
downloadblog-797d1e627ff6a4b53445bf49daf38384cafdb970.tar.gz
blog-797d1e627ff6a4b53445bf49daf38384cafdb970.zip
notes/latex: hide the uglinessold_design
Diffstat (limited to '_notes/latex.md')
-rw-r--r--_notes/latex.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/_notes/latex.md b/_notes/latex.md
index 8f90244..35e4a7d 100644
--- a/_notes/latex.md
+++ b/_notes/latex.md
@@ -10,8 +10,8 @@ A more-or-less complete, but still very basic LaTeX document follows.
% Basic setup
\usepackage{cmap}
\usepackage[utf8]{inputenc}
-\usepackage[T2A]{fontenc}
-\usepackage[russian]{babel}
+\usepackage[T1]{fontenc} % Use T2A for non-ASCII scripts
+\usepackage[english]{babel}
% Completely arbitrary settings follow:
@@ -31,8 +31,8 @@ A more-or-less complete, but still very basic LaTeX document follows.
\begin{document}
-Привет, \LaTeX!
-Ссылка на репозиторий: \href{https://github.com/egor-tensin/blog}{https://github.com/egor-tensin/blog}.
+Hello, \LaTeX!
+Repository link: \href{https://github.com/egor-tensin/blog}{https://github.com/egor-tensin/blog}.
\end{document}
```