-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathname.html
More file actions
60 lines (60 loc) · 2.42 KB
/
Copy pathname.html
File metadata and controls
60 lines (60 loc) · 2.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Artem Shinkarov - name</title>
<link rel="stylesheet" href="./css/notosans.css" />
<link rel="stylesheet" href="./css/merriweather.css" />
<link rel="stylesheet" href="./css/sakura.css" />
<link rel="stylesheet" href="./css/tema.css" />
</head>
<script>
function visibilityToggle(id) {
var x = document.getElementById(id);
//alert("display of " + id + " = " + x.style.display)
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
</script>
<body>
<header>
<div class="logo">
<a href="./">Artem Shinkarov</a>
</div>
<nav>
<a href="./">About</a>
<a href="./publications.html">Publications</a>
<a href="./archive.html">Posts</a>
<a href="./links.html">Links</a>
</nav>
</header>
<hr style="border:1px solid #e4e4e4;" />
<main role="main">
<p>I was born in Latvia, which at the time was a part of the USSR.
My birth certificates are in Russian, and my name in Cyrillic is
<em>Артем Шинкаров</em>. Its correct transliteration is <em>Artem Shinkarov</em>.</p>
<p>Unfortunately, in my passport, my name is transliterated as
<em>Artjoms Šinkarovs</em>. Mind extra <em>s</em>-es at the end, <em>jo</em> in the
middle and <em>Š</em> instead of <em>Sh</em>. This is something I cannot change
due to crazy Latvian rules.</p>
<p>In the UK, my name got transliterated again, simply
by throwing away the diacritical symbols; so I ended up with
<em>Artjoms Sinkarovs</em>.</p>
<p>While Latvia recognises that the transliteration mismatch is a
problem, no proper solution has ever been implemented. It is
possible to put the correct spelling of your name in
the passport, which I surely did:</p>
<figure>
<img src="./images/passport.png" alt="The second page of my passport" />
<figcaption aria-hidden="true">The second page of my passport</figcaption>
</figure>
<p>However, turning this spelling into the official one, in all
the documents, is a total nightmare.</p>
</main>
</body>
</html>