6

there are two empty page before title.I think there is a bug in cls file. thanks

online : https://cloud.sagemath.com/projects/28237dba-3851-4c63-8de3-fb49e5ecd8c0/files/template/

  • 1
    Welcome to TeX.SX. Rather than giving links please add a minimal working example that takes the form \documentclass{...}\usepackage{....}\begin{document}...\end{document}. If possible, it should compile and have the minimum amount of code needed to illustrate your problem. This makes it much easier for people to help you - and much more likely that they will! –  May 01 '15 at 11:15
  • 2
    My impression is that the class is buggy. If I remove the \onecolumn call at the end of it, your example ends up being one page only, but the example template has two blank pages at the beginning instead of just one. Since there doesn't appear the class provides for two column output, all the parts where it switches from two column to one column are of very dubious usefulness. – egreg May 01 '15 at 12:38
  • 1
    @egreg the problem is in line 88 file metu12.def and metu11.def \newcommand\@chapapp{CHAPTER}\vspace*{\fill} so you need to delete or uncomment \vspace*{\fill}. more than what egreg said the class is very non standard – touhami May 01 '15 at 12:45
  • @touhami Really! Make it an answer, please. – egreg May 01 '15 at 12:47
  • 1
    Can you please inform the maintainer of the template about this thread? – Johannes_B May 01 '15 at 15:31

1 Answers1

6

the problem is in line 88 file metu12.def and metu11.def

\newcommand\@chapapp{CHAPTER}\vspace*{\fill}

so you need to delete or uncomment \vspace*{\fill}.

touhami
  • 19,520