iccsa-19-vessel

Vessel: Efficient Plain Text File Format for Ship Hull Geometry
git clone https://git.igankevich.com/iccsa-19-vessel.git
Log | Files | Refs

preamble.tex (724B)


      1 \usepackage{listings}
      2 
      3 % colors
      4 \definecolor{deepblue}{HTML}{0E3F5D}
      5 \definecolor{darkgreen}{HTML}{217E5C}
      6 \definecolor{lightgray}{HTML}{C4D6DB}
      7 
      8 % options
      9 \lstset{
     10   basicstyle=\ttfamily,
     11   tabsize=4,
     12   inputencoding=utf8,
     13   texcl=true,
     14   showstringspaces=false,
     15   morestring=[b]{'},
     16   morestring=*[d]{"},
     17   keywordstyle=\color{deepblue}\bfseries\ttfamily,
     18   ndkeywordstyle=\color{deepblue}\bfseries\ttfamily,
     19   stringstyle=\color{darkgreen},
     20   commentstyle=\color{black!60}\ttfamily,
     21   morecomment=[l][\color{black!60}]{//},
     22 }
     23 
     24 
     25 \lstdefinelanguage{vsl}{
     26 	stringstyle=\color{black!60},
     27 	showstringspaces=false,
     28 	texcl=true,
     29 	escapeinside={LATEX}{END},
     30 	morekeywords={},
     31 	keywordstyle=\color{deepblue},
     32 	otherkeywords={}
     33 }
     34