-
Notifications
You must be signed in to change notification settings - Fork 6
Convert PNG diagram to LaTeX/TikZ #35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 9 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
15cf0e8
convert .png to .tex with using TikZ
cyber-baka-cmyk 6113635
fixing grammar errors
cyber-baka-cmyk 40d91ee
Merge branch 'main' into solution
idzm c366457
fixing grammar errors, added new image, compare with old one
cyber-baka-cmyk a248dfb
Merge branch 'solution' of https://github.com/cyber-baka-cmyk/Neuro-s…
cyber-baka-cmyk 2d24afc
remove compare.md file
cyber-baka-cmyk 225a287
change fonts to bold
cyber-baka-cmyk 25211a7
fixing misspeled
cyber-baka-cmyk 7cb5af3
deleted unnecessary images
cyber-baka-cmyk 93ecbc0
Merge branch 'main' into solution
idzm f3bccb3
Replace classification image with tikz diagram
idzm edc9a98
[review] Fixes code
idzm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
46 changes: 46 additions & 0 deletions
46
Classification_of_neural_network_methods_for_solving_control_problems.tex
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| \documentclass{standalone} | ||
| \usepackage{tikz} | ||
| \usepackage[utf8]{inputenc} | ||
| \usepackage[T2A]{fontenc} | ||
| \usepackage[russian]{babel} | ||
|
cyber-baka-cmyk marked this conversation as resolved.
Outdated
|
||
| \usetikzlibrary{calc} | ||
| \usetikzlibrary{patterns,arrows.meta} | ||
|
|
||
| \begin{document} | ||
| \begin{tikzpicture}[font=\small, | ||
| arrow/.style={thick} | ||
|
cyber-baka-cmyk marked this conversation as resolved.
Outdated
|
||
| ] | ||
|
|
||
| \coordinate (Center) at (0,0); | ||
| \coordinate (RightCenterLabel) at (3.5, -1.0); | ||
| \coordinate (LeftCenter) at (-1.5,-1.0); | ||
| \coordinate (CenterLabel) at (0.0,-1.0); | ||
| \coordinate (RightCenter) at (1.5,-1.0); | ||
| \coordinate (LeftLabel) at (-3.5,-1.0); | ||
|
|
||
| \draw[fill=black!30, pattern color=black!60,thick] (Center) ellipse (3.0 and 0.8); | ||
| \draw[pattern=vertical lines,pattern color=black!60,thick] (LeftCenter) ellipse (3.0 and 0.8); | ||
| \draw[pattern=horizontal lines,pattern color=black!60,thick] (RightCenter) ellipse (3.0 and 0.8); | ||
|
|
||
| \node at (Center) {\textbf{Традиционные системы управления}}; | ||
| \node at (CenterLabel) {\textbf{Адаптация}}; | ||
| \node at (LeftLabel) {\textbf{Аппроксимация}}; | ||
| \node at (RightCenterLabel) {\textbf{Оптимизация}}; | ||
|
|
||
| \fill ($(Center)+(-0.5,-1.2)$) circle (2pt); | ||
| \draw[arrow] ($(Center)+(-0.5,-1.2)$) -- ++(-1.2,-1.6) -- ++(-1.5,0) node[above, align=left]{Параллельная\\схема управления}; | ||
|
|
||
| \fill ($(Center)+(0.5,-1.5)$) circle (2pt); | ||
| \draw[arrow] ($(Center)+(0.5,-1.5)$) -- ++(-1.2,-3.0) -- ++(-1.5,0) node[above, align=left]{Схема управления с\\эмулятором и\\контроллером}; | ||
|
|
||
| \fill ($(Center)+(0.2,-0.6)$) circle (2pt); | ||
| \draw[arrow] ($(Center)+(0.2,-0.6)$) -- ++(1.2,-3.0) -- ++(1.5,0) node[above, align=left]{Схема управления\\с самонастройкой}; | ||
|
|
||
| \fill ($(Center)+(2.0,-1.2)$) circle (2pt); | ||
| \draw[arrow] ($(Center)+(2.0,-1.2)$) -- ++(1.2,-1.0) -- ++(2.5,0) node[above, align=left]{Адаптивно-\\критическая схема}; | ||
|
|
||
| \fill ($(Center)+(-3.0,-0.6)$) circle (2pt); | ||
| \draw[arrow] ($(Center)+(-3.0,-0.6)$) -- ++(-1.0,0.5) -- ++(-2.5,0) node[above, align=left]{Последовательная схема\\управления}; | ||
|
|
||
| \end{tikzpicture} | ||
| \end{document} | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.