Logo 我的知识库

Style demo

格式样式展示测试#

 

```mermaid
graph TD;
   A-->B;
   A-->C;
   B-->D;
   C-->D;
```

graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;

 

 

latex代码#

latex笔记较多,代码高亮 省我们kkkslkd dkdddssDddd源赔深圳以来可是我们再也


%%%编译用Texlive2019,不能用Ctex,会出错%%%
%%%用xelatex编译2次,有中文时不能用pdflatex%%%
\documentclass[dvipsnames]{book}
\usepackage{tikz,newtxtext}
\usepackage{hyperref}
\definecolor{lightblue}{rgb}{0.75,0.8,0.9}%%%%%定义新颜色
\definecolor{darkblue}{rgb}{0.1,0.5,1}%%%%%定义新颜色
\begin{document}

  \begin{tikzpicture}[remember picture, overlay]
  \fill[lightblue](current page.south east)rectangle (current page.north west);
  \coordinate (A) at (current page.south west);
  \coordinate (B) at (current page.north west);
  \fill[orange] (A) -- ++(4.5,0)--([xshift=4.5cm]B)--(B)--cycle;%%The left orange bar
   \fill[darkblue] (0,5) -- (0.2,5)-- (0.2,-30)-- (0,-30)--cycle;%%The left blue bar
  \node [left,scale=1.5,color=blue] at (0,4){\fontencoding{T1}\fontfamily{ptm}\bfseries\selectfont Mathematical };%%%侧栏
   \node [left,scale=1.5,color=blue] at (0,3.5){\fontencoding{T1}\fontfamily{ptm}\bfseries\selectfont Surveys };%%%侧栏
    \node [left,scale=1.5,color=blue] at (0,3){\fontencoding{T1}\fontfamily{ptm}\bfseries\selectfont and };%%%侧栏
     \node [left,scale=1.5,color=blue] at (0,2.5){\fontencoding{T1}\fontfamily{ptm}\bfseries\selectfont Monographs };%%%侧栏
      \node [left,scale=1.5,color=blue] at (0,1.5){\fontencoding{T1}\fontfamily{ptm}\bfseries\selectfont Volume 247 };%%%侧栏
      
\coordinate (E) at current page.west+(0,-2);
\coordinate (F) at current page.west+(0,-7);
\coordinate (G) at current page.west+(0,-8);
\node[right,scale=4,color=blue] at (E) {Hopf Algebras };
\node[right,scale=4,color=blue] at ([yshift=-2cm]E) { and Root Systems};
 \node[right,scale=3,color=blue] at (F){Istv{\'{a}}n Heckenberger};
 \node[right,scale=3,color=blue] at (G){Hans-J\"urgen Schneider};
 \node[right,scale=2,color=blue] at ([yshift=3cm]current page.south){AMERICAN};
\node[right,scale=2,color=blue] at ([yshift=2cm]current page.south){MATHEMATICAL};
 \node[right,scale=2,color=blue] at ([yshift=1cm]current page.south){SOCIETY};
 \node[right,scale=6,color=blue] at ([yshift=2cm,xshift=-5.5cm]current page.south){AMS};
\end{tikzpicture}

\end{document}