Guest User

Untitled

a guest
Jan 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. NeedsTeXFormat{LaTeX2e}
  2. ProvidesClass{myclass}
  3. RequirePackage{kvoptions}
  4.  
  5. DeclareBoolOption{foo}
  6.  
  7. ProcessKeyvalOptions*
  8.  
  9. ifmyclass@foo
  10. def@title{foo}
  11. else
  12. def@title{bar}
  13. fi
  14.  
  15. ProcessOptionsrelax
  16.  
  17. LoadClass{article}
  18.  
  19. documentclass[foo]{myclass}
  20.  
  21. begin{document}
  22.  
  23. maketitle
  24. end{document}
  25.  
  26. LaTeX Warning: Unused global option(s):
  27. [foo].
  28.  
  29. ifx@unusedoptionlist@emptyelse
  30. @latex@warning@no@line{Unused global option(s):^^J%
  31. @spaces[@unusedoptionlist]}%
  32. fi
  33.  
  34. NeedsTeXFormat{LaTeX2e}
  35. ProvidesClass{testkeyval}[2018/01/19 Test key-value options]
  36. RequirePackage{kvoptions}
  37. DeclareStringOption[?]{foo}
  38. DeclareDefaultOption{PassOptionsToClass{CurrentOptionKey}{article}}
  39. ProcessKeyvalOptions*
  40. newcommandthefoo{`testkeyval@foo'}
  41. LoadClass{article}
  42.  
  43. documentclass[foo=bar]{testkeyval}
  44. %documentclass[foo=bar,11pt]{testkeyval} % passes 11pt to article
  45. %documentclass[11pt]{testkeyval} % passes 11pt to article
  46. %documentclass{testkeyval} % default copyright and default fontsize for article
  47. %documentclass[foo]{testkeyval} % error
  48.  
  49. begin{document}
  50. % Number of 'x's on second line: 10pt 0, 11pt 3.
  51. noindent
  52. x x x x x x x x x x x x x x x x x x x x x x x x x x x x
  53. x x x x x x x x x x x x x x
  54.  
  55. foo is thefoo.
  56. end{document}
Add Comment
Please, Sign In to add comment