| Blokların Cevapları | +$21$ | +$13$ | +$50$ | +$32$ | +||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Dizideki Elemanlar | +$3$ | +$6$ | +$2$ | +$10$ | +$3$ | +$1$ | +$4$ | +$5$ | +$2$ | +$7$ | +$37$ | +$4$ | +$11$ | +$6$ | +$8$ | +$7$ | +
| Elemanların İndeksleri | +$1$ | +$2$ | +$3$ | +$4$ | +$5$ | +$6$ | +$7$ | +$8$ | +$9$ | +$10$ | +$11$ | +$12$ | +$13$ | +$14$ | +$15$ | +$16$ | +
| Blokların Cevapları | +$21$ | +$13$ | +$50$ | +$32$ | +||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Dizideki Elemanlar | +$3$ | +$6$ | +$2$ | +$10$ | +$3$ | +$1$ | +$4$ | +$5$ | +$2$ | +$7$ | +$37$ | +$4$ | +$11$ | +$6$ | +$8$ | +$7$ | +
| Elemanların İndeksleri | +$1$ | +$2$ | +$3$ | +$4$ | +$5$ | +$6$ | +$7$ | +$8$ | +$9$ | +$10$ | +$11$ | +$12$ | +$13$ | +$14$ | +$15$ | +$16$ | +
Editors: {{page.meta.editors|join(", ")}}
+ {% endif %} + {% if page.meta.reviewers|length %} +Reviewers: {{page.meta.reviewers|join(", ")}}
+ {% endif %} +{% endif %} \ No newline at end of file diff --git a/docs/static/img/favicon.png b/docs/static/img/favicon.png new file mode 100644 index 0000000..15c2cae Binary files /dev/null and b/docs/static/img/favicon.png differ diff --git a/docs/static/img/logo.png b/docs/static/img/logo.png new file mode 100644 index 0000000..c2928d2 Binary files /dev/null and b/docs/static/img/logo.png differ diff --git a/docs/static/javascripts/katex.js b/docs/static/javascripts/katex.js new file mode 100644 index 0000000..a9417bf --- /dev/null +++ b/docs/static/javascripts/katex.js @@ -0,0 +1,10 @@ +document$.subscribe(({ body }) => { + renderMathInElement(body, { + delimiters: [ + { left: "$$", right: "$$", display: true }, + { left: "$", right: "$", display: false }, + { left: "\\(", right: "\\)", display: false }, + { left: "\\[", right: "\\]", display: true } + ], + }) +}) \ No newline at end of file diff --git a/docs/static/stylesheets/main.css b/docs/static/stylesheets/main.css new file mode 100644 index 0000000..029fe9f --- /dev/null +++ b/docs/static/stylesheets/main.css @@ -0,0 +1,4 @@ +.md-sidebar--primary { + display: none; + visibility: hidden; +} diff --git a/guidelines/latex/template/README.md b/guidelines/latex/template/README.md index d692364..e8b158f 100644 --- a/guidelines/latex/template/README.md +++ b/guidelines/latex/template/README.md @@ -1,3 +1,9 @@ # Algorithm-Competition-Programme LaTeX Template -You should download and install **Pygments** in order to work on this template. For any problem or question, you can send a mail to contact@inzva.com \ No newline at end of file +## Quickstart + +To quickly start using the LaTeX template for either creating new bundle or editing the existing ones, you can create a new project in [Overleaf](https://overleaf.com) and import the LaTeX files there. + +Instead of using an online environment, if you want to compile the template locally, you should download and install **Pygments** in order to work on this template. + +For any problem or question, you can send a mail to contact@inzva.com \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 0000000..c40f875 --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,90 @@ +site_name: Algorithm Program +site_url: https://inzva.github.io/Algorithm-Program/ +nav: + - Home: index.md + - Introduction: introduction/index.md + - Data Structures: data-structures/index.md + - Algorithms: algorithms/index.md + - Graph: graph/index.md + - Dynamic Programming: dynamic-programming/index.md +theme: + name: material + custom_dir: docs/overrides + favicon: static/img/favicon.png + logo: static/img/logo.png + features: + - toc.follow + - navigation.tabs + - search.suggest + - search.highlight + - content.tabs.link + - content.code.annotation + - content.code.copy + language: en + palette: + - scheme: default + toggle: + icon: material/weather-night + name: Switch to dark mode + primary: black + accent: grey + - scheme: slate + toggle: + icon: material/weather-sunny + name: Switch to light mode + primary: black + accent: white + +extra: + social: + - icon: fontawesome/brands/github-alt + link: https://github.com/inzva + - icon: fontawesome/brands/twitter + link: https://twitter.com/inzvaspace + - icon: fontawesome/brands/instagram + link: https://instagram.com/inzva.space/ + - icon: fontawesome/brands/linkedin + link: https://linkedin.com/company/inzva/ + +extra_javascript: + - static/javascripts/katex.js + - https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.js + - https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/contrib/auto-render.min.js + +extra_css: + - static/stylesheets/main.css + - https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.css + +markdown_extensions: + - pymdownx.highlight: + linenums: true + anchor_linenums: true + - pymdownx.inlinehilite + - pymdownx.snippets + - admonition + - pymdownx.arithmatex: + generic: true + block_tag: "p" + - footnotes + - pymdownx.details + - pymdownx.superfences: + custom_fences: + - name: mermaid + class: mermaid + format: !!python/name:pymdownx.superfences.fence_code_format + - pymdownx.mark + - attr_list + - pymdownx.emoji: + emoji_index: !!python/name:material.extensions.emoji.twemoji + emoji_generator: !!python/name:material.extensions.emoji.to_svg + - toc: + permalink: true + - md_in_html + - tables + +plugins: + - search + - tags + +copyright: | + © 2024 inzva