Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.50 KB | None | 0 0
  1. \lstdefinelanguage{Maple}
  2. {
  3.     % list of keywords
  4.     morekeywords={
  5.        for, while, do,
  6.        end, return,
  7.        proc, local,
  8.        if, then, elif, else,
  9.    },
  10.     sensitive=true, % keywords are not case-sensitive
  11.     morecomment=[l]{\#}, % l is for line comment
  12.     morecomment=[s]{(*}{*)}, % s is for start and end delimiter
  13.     morestring=[b]", % defines that strings are enclosed in double quotes
  14.     escapeinside={[*}{*]},
  15.    emph={
  16.        mod,
  17.    },
  18.    emphstyle={\bf},
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement