example 2. lowdim LP slides

This commit is contained in:
2024-10-05 10:07:16 +08:00
parent d507c8ba55
commit 14b79c2624
11 changed files with 245 additions and 0 deletions

BIN
images/1234.pdf Normal file

Binary file not shown.

BIN
images/2dlp_1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

BIN
images/2dlp_2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

BIN
images/2dlp_3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

BIN
images/4l1234.pdf Normal file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

BIN
images/table.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 261 KiB

26
images/tikz.tex Normal file
View File

@@ -0,0 +1,26 @@
\documentclass[tikz, border=10pt]{standalone}
\begin{document}
\begin{tikzpicture}
% Draw the two thick lines l1 and l2
\draw[] (-3,0) -- (3,0) ; % Horizontal line l1 (very thick)
\draw[] (0,-3) -- (0,3) ; % Vertical line l2 (very thick)
% Draw the diagonal lines
\draw[thick] (-3,-1) -- (3,1); % Diagonal line
\draw[thick] (-3,1) -- (3,-1); % Diagonal line
% Add labels
\node at (2.5,0.5) {$l_1$}; % label for l1
\node at (2.5,-0.5) {$l_2$}; % label for l2
\node at (3.3,0) {$l_{x_2}$};
\node at (0,3.3) {$l_{x_1}$};
% Quadrant numbers
\node at (1,1.5) {1};
\node at (-1,1.5) {2};
\node at (-1,-1.5) {3};
\node at (1,-1.5) {4};
\end{tikzpicture}
\end{document}