main.tex 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. %-----------------------------------------------------------------------------
  2. %
  3. % Template for sigplanconf LaTeX Class
  4. %
  5. % Name: sigplanconf-template.tex
  6. %
  7. % Purpose: A template for sigplanconf.cls, which is a LaTeX 2e class
  8. % file for SIGPLAN conference proceedings.
  9. %
  10. % Guide: Refer to "Author's Guide to the ACM SIGPLAN Class,"
  11. % sigplanconf-guide.pdf
  12. %
  13. % Author: Paul C. Anagnostopoulos
  14. % Windfall Software
  15. % 978 371-2316
  16. % paul@windfall.com
  17. %
  18. % Created: 15 February 2005
  19. %
  20. %-----------------------------------------------------------------------------
  21. \documentclass[preprint,10pt]{sigplanconf}
  22. % The following \documentclass options may be useful:
  23. % preprint Remove this option only once the paper is in final form.
  24. % 10pt To set in 10-point type instead of 9-point.
  25. % 11pt To set in 11-point type instead of 9-point.
  26. % numbers To obtain numeric citation style instead of author/year.
  27. \usepackage{amsmath}
  28. \usepackage{graphicx}
  29. \usepackage{subcaption}
  30. \usepackage{listings}
  31. \newcommand{\cL}{{\cal L}}
  32. \begin{document}
  33. \special{papersize=8.5in,11in}
  34. \setlength{\pdfpageheight}{\paperheight}
  35. \setlength{\pdfpagewidth}{\paperwidth}
  36. \conferenceinfo{SLE '16}{October 31--November 1, 2016, Amsterdam, the Netherlands}
  37. \copyrightyear{2016}
  38. \copyrightdata{978-1-nnnn-nnnn-n/yy/mm}
  39. \copyrightdoi{nnnnnnn.nnnnnnn}
  40. % Uncomment the publication rights you want to use.
  41. %\publicationrights{transferred}
  42. %\publicationrights{licensed} % this is the default
  43. %\publicationrights{author-pays}
  44. \titlebanner{banner above paper title} % These are ignored unless
  45. \preprintfooter{short description of paper} % 'preprint' option specified.
  46. \title{Breaking Free of the Implementation\\Through Explicit Type/Instance Relations}
  47. \subtitle{}
  48. \authorinfo{Yentl Van Tendeloo}
  49. {University of Antwerp}
  50. {Yentl.VanTendeloo@uantwerpen.be}
  51. \authorinfo{Hans Vangheluwe}
  52. {University of Antwerp and McGill University}
  53. {Hans.Vangheluwe@uantwerpen.be}
  54. \maketitle
  55. \begin{abstract}
  56. \input abstract.tex
  57. \end{abstract}
  58. \category{CR-number}{subcategory}{third-level}
  59. % general terms are not compulsory anymore,
  60. % you may leave them out
  61. \terms
  62. term1, term2
  63. \keywords
  64. keyword1, keyword2
  65. \input 1-introduction.tex
  66. \input 2-background.tex
  67. \input 3-conformance.tex
  68. \input 3.5-conformancebottom.tex
  69. \input 4-example.tex
  70. \input 5-relatedwork.tex
  71. \input 6-conclusion.tex
  72. \acks
  73. This work was partly funded by a PhD fellowship from the Research Foundation -
  74. Flanders (FWO). Partial support by the Flanders Make strategic research centre
  75. for the manufacturing industry is also gratefully acknowledged.
  76. % We recommend abbrvnat bibliography style.
  77. \bibliographystyle{abbrvnat}
  78. \bibliography{bibliography}
  79. \end{document}