Skip to content

Commit b11a7ef

Browse files
committed
Merge from upstream, fix merge commit in CNAME
2 parents 3865b8e + 36a6266 commit b11a7ef

19 files changed

Lines changed: 514 additions & 196 deletions

_data/translations.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ navigational-elements_help:
129129
navigational-elements_settings:
130130
de: "Settings"
131131
en: "Settings"
132-
es: "Settings"
132+
es: "Configuración"
133133
fr: "Paramètres"
134134
ja: "Settings"
135135
pt: "Configurações"
@@ -165,7 +165,7 @@ navigational-elements_licenses:
165165
navigational-elements_privacy:
166166
de: "Privacy"
167167
en: "Privacy"
168-
es: "Privacy"
168+
es: "Privacidad"
169169
fr: "Confidentialité"
170170
ja: "Privacy"
171171
pt: "Privacidade"
@@ -177,7 +177,7 @@ navigational-elements_privacy:
177177
navigational-elements_open-an-issue:
178178
de: "Problem melden"
179179
en: "Open an issue"
180-
es: "Abrir un problema"
180+
es: "Notificar un problema"
181181
fr: "Signaler un problème"
182182
ja: "問題を開く"
183183
pt: "Abra um problema"
@@ -249,7 +249,7 @@ navigational-elements_return:
249249
navigational-elements_toc:
250250
de: "Inhaltsverzeichnis"
251251
en: "Table of Contents"
252-
es: "Tabla de contenido"
252+
es: "Índice"
253253
fr: "Table des matières"
254254
ja: "目次"
255255
pt: "Índice"

_layouts/lesson.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@
8181
class="meta"
8282
>{{ site.data.translations['informational-elements_lesson'][page.lang] }}
8383
{% if page.lang == "mr" %}
84-
{% assign pageno = page.path | replace: '.md','' | replace: language ,'' | remove_first: '/' | replace: 'lesson-' ,'' | replace: 'more-' ,'' | replace: 'language-', '' | replace: 'extra-', '' | floor %}
84+
{% assign pageno = page.path | replace: '.md','' | remove_first: language | remove_first: '/' | replace: 'lesson-' ,'' | replace: 'more-' ,'' | replace: 'language-', '' | replace: 'extra-', '' | floor %}
8585
{{ mrdigits[pageno] }}
8686
{% else %}
87-
{{ page.path | replace: '.md','' | replace: language ,'' | remove_first: '/' | replace: 'lesson-' ,'' | replace: 'more-' ,'' | replace: 'language-', '' | replace: 'extra-', '' | round: 2 }}
87+
{{ page.path | replace: '.md','' | remove_first: language | remove_first: '/' | replace: 'lesson-' ,'' | replace: 'more-' ,'' | replace: 'language-', '' | replace: 'extra-', '' | round: 2 }}
8888
{% endif %}</span>
8989
<!-- meta lesson information end -->
9090

assets/css/style.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -986,7 +986,7 @@ hr {
986986
pre {
987987
box-shadow: inset 0 0.125rem 0.125rem 0 rgba(50, 50, 50, 0.5);
988988
overflow: auto;
989-
padding: 0 .4rem;
989+
padding:.4rem .4rem 0rem .4rem;
990990
background-color: #F5F5F5;
991991
code {
992992
font-family: var(--font_default-mono-regular);

assets/scripts/latexcmds.json

Lines changed: 84 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,92 @@
11

22
{
3-
"latex":[
4-
"documentclass",
3+
"latex": [
4+
"author",
55
"begin",
6-
"begin{document}",
7-
"begin{enumerate}",
8-
"begin{itemize}",
9-
"begin{figure}",
10-
"begin{table}",
11-
"begin{equation}",
12-
"begin{equation*}",
6+
"begin{document}",
7+
"begin{enumerate}",
8+
"begin{equation*}",
9+
"begin{equation}",
10+
"begin{figure}",
11+
"begin{itemize}",
12+
"begin{table}",
13+
"begin{tabular}",
14+
"bfseries",
15+
"documentclass",
1316
"end",
14-
"end{document}",
15-
"end{enumerate}",
16-
"end{itemize}",
17-
"end{figure}",
18-
"end{table}",
19-
"end{equation}",
20-
"end{equation*}",
21-
"frac",
22-
"item",
23-
"usepackage",
24-
"section",
25-
"subsection"
17+
"end{document}",
18+
"end{enumerate}",
19+
"end{equation*}",
20+
"end{equation}",
21+
"end{figure}",
22+
"end{itemize}",
23+
"end{table}",
24+
"end{tabular}",
25+
"footnote",
26+
"frac",
27+
"hline",
28+
"input",
29+
"item",
30+
"itshape",
31+
"label",
32+
"makeatletter",
33+
"makeatother",
34+
"multicolumn",
35+
"newcommand",
36+
"NewDocumentCommand",
37+
"NewDocumentEnvironment",
38+
"newenvironment",
39+
"parbox",
40+
"ref",
41+
"renewcommand",
42+
"RenewDocumentCommand",
43+
"RenewDocumentEnvironment",
44+
"renewenvironment",
45+
"section",
46+
"subsection",
47+
"textbf",
48+
"textit",
49+
"title",
50+
"usepackage"
2651
],
27-
"book":[
28-
"chapter"
52+
"book": [
53+
"chapter"
2954
],
3055
"amsmath": [
31-
"tfrac",
32-
"dfrac",
33-
"begin{align}",
34-
"begin{align*}",
35-
"begin{gather}",
36-
"begin{gather*}",
37-
"begin{aligned}",
38-
"end{align}",
39-
"end{align*}",
40-
"end{gather}",
41-
"end{gather*}",
42-
"end{aligned}"
43-
]
56+
"begin{align*}",
57+
"begin{aligned}",
58+
"begin{align}",
59+
"begin{cases}",
60+
"begin{flalign*}",
61+
"begin{flalign}",
62+
"begin{gather*}",
63+
"begin{gather}",
64+
"centering",
65+
"cite",
66+
"dfrac",
67+
"end{align*}",
68+
"end{aligned}",
69+
"end{align}",
70+
"end{cases}",
71+
"end{flalign*}",
72+
"end{flalign}",
73+
"end{gather*}",
74+
"end{gather}",
75+
"tfrac"
76+
],
77+
"graphicx": [
78+
"includegraphics",
79+
"rotatebox",
80+
"scalebox"
81+
],
82+
"xcolor": [
83+
"color",
84+
"colorbox",
85+
"textcolor"
86+
],
87+
"tikz": [
88+
"begin{tikzpicture}",
89+
"draw",
90+
"end{tikzpicture}"
91+
]
4492
}

assets/scripts/runlatex.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ function llexamples() {
164164
}
165165
}
166166
p[i].textContent=pretext.replace(/\s+$/,'');
167+
p[i].style.height="1em"; // force redisplay in Opera zoom
167168
ace.config.set('basePath', 'https://cdnjs.cloudflare.com/ajax/libs/ace/1.4.12') ;
168169
editor = ace.edit(p[i]);
169170
editor.setTheme(rlacetheme);

es/contact.md

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,28 @@
11
---
2+
layout: "page"
23
lang: "es"
3-
title: Contact
4+
title: Contacto
45
permalink: /es/contact
56
---
67

7-
# Contact (Spanish)
8+
# Contacto
9+
10+
## Ayuda personalizada
11+
12+
Desgraciadamente no disponemos de recursos para ofrecer una ayuda personalizada en problemas de LaTeX y por ello no podremos responder a este tipo de emails. Consulte [The LaTeX Projet's help page](https://www.latex-project.org/help/) para ver cómo obtener ayuda.
13+
14+
## El equipo del sitio web
15+
16+
El [código fuente de este sitio web](https://github.com/learnlatex/learnlatex.github.io/) se encuentra en [GitHub](https://github.com/learnlatex/), por favor consulte la sección [CONTRIBUIR](../CONTRIBUTING) y [LICENCIA](../LICENSE) para más información. Las últimas modificaciones las encontrará en el [Historial de modificaciones](../CHANGELOG).
17+
18+
Puede igualmente [notificar un problema o dar un consejo en GitHub](https://github.com/learnlatex/learnlatex.github.io/issues) o enviarnos un [correo electrónico](mailto:[email protected]) con sus sugerencias.
19+
20+
## Impressum - Editor del sitio web
21+
22+
<p>Joseph Wright<br>
23+
2, Dowthorpe End<br>
24+
Earls Barton<br>
25+
Northampton<br>
26+
NN6 0NH<br>
27+
United Kingdom<br>
28+

0 commit comments

Comments
 (0)