lie-algebras-and-their-representations

Source code for my notes on representations of semisimple Lie algebras and Olivier Mathieu's classification of simple weight modules

cover.tex (2714B)

 1 % Taken from https://latexdraw.com/tikz-cover-pages-gallery/
 2 
 3 % Configure the PDF title and author
 4 \hypersetup{
 5   pdftitle={\thetitle},
 6   pdfauthor={\theauthor}
 7 }
 8 
 9 % The cover itself
10 \thispagestyle{empty}
11 \begin{tikzpicture}[remember picture,overlay]
12   %%%%%%%%%%%%%%%%%%%% Background %%%%%%%%%%%%%%%%%%%%%%%%
13   \fill[mosgreen] (current page.south west) rectangle (current page.north east);
14 
15 
16   \foreach \i in {2.5,...,22}
17   {
18     \node[rounded corners,mosgreen!60,draw,regular polygon,regular polygon sides=6, minimum size=\i cm,ultra thick] at ($(current page.west)+(2.5,-5)$) {} ;
19   }
20 
21   %%%%%%%%%%%%%%%%%%%% Background Polygon %%%%%%%%%%%%%%%%%%%%
22   \foreach \i in {0.5,...,22}
23   {
24     \node[rounded corners,mosgreen!60,draw,regular polygon,regular polygon sides=6, minimum size=\i cm,ultra thick] at ($(current page.north west)+(2.5,0)$) {} ;
25   }
26 
27   \foreach \i in {0.5,...,22}
28   {
29     \node[rounded corners,mosgreen!90,draw,regular polygon,regular polygon sides=6, minimum size=\i cm,ultra thick] at ($(current page.north east)+(0,-9.5)$) {} ;
30   }
31 
32 
33   \foreach \i in {21,...,6}
34   {
35     \node[mosgreen!85,rounded corners,draw,regular polygon,regular polygon sides=6, minimum size=\i cm,ultra thick] at ($(current page.south east)+(-0.2,-0.45)$) {} ;
36   }
37 
38 
39   %%%%%%%%%%%%%%%%%%%% Title of the Report %%%%%%%%%%%%%%%%%%%%
40   \node[left,mosgreen!5,minimum width=0.625*\paperwidth,minimum height=3cm, rounded corners, text width=0.52*\paperwidth] at ($(current page.north east)+(-.6,-9.5)$)
41   {
42     \begin{minipage}{\textwidth}
43     \begin{center}
44     \baselineskip=30pt
45     \fontsize{22}{27} \selectfont \bfseries
46     \expandafter\MakeUppercase\expandafter{\thetitle}
47     \par
48     \end{center}
49     \end{minipage}
50   };
51 
52   %%%%%%%%%%%%%%%%%%%% Author Name %%%%%%%%%%%%%%%%%%%%
53   \node[left,mosgreen!5,minimum width=0.625*\paperwidth,minimum height=2cm, rounded corners] at ($(current page.north east)+(-.6,-11)$)
54   {
55     {\Large \textsc{\theauthor}}
56   };
57 
58   %%%%%%%%%%%%%%%%%%%% Year %%%%%%%%%%%%%%%%%%%%
59   \node[rounded corners,fill=mosgreen!70,text=mosgreen!5,regular polygon,regular polygon sides=6, minimum size=2.5 cm,inner sep=0,ultra thick]
60     at ($(current page.west)+(2.5,-5)$) {\LARGE \bfseries \number \year};
61 \end{tikzpicture}
62 
63 % Back of the cover
64 \clearpage
65 \null
66 \thispagestyle{empty}
67 \clearpage
68 
69 % Title page
70 \clearpage
71 \null
72 \thispagestyle{empty}
73 \vspace*{\stretch{1}} % Some space at the top
74 \begin{center}        % Centralize text
75 \huge                 % Make the text larger
76 {\bfseries\thetitle}
77 \par
78 \LARGE                % Make the text not that large
79 \theauthor
80 \par
81 \par                  % End the paragraph
82 \end{center}
83 \vspace{\stretch{3}}  % Space at bottom is three times that at the top