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