Latex course for IAS IEEE branch
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.1 KiB

  1. % Clase para reportes a nivel ingeniería
  2. % desarrollado por Gerardo Marx:
  3. \NeedsTeXFormat{LaTeX2e}
  4. \ProvidesClass{techreports}[2020/11/05 Technical Reports Class]
  5. %packages:
  6. \RequirePackage{graphicx}
  7. %options
  8. \DeclareOption*{\PassOptionsToClass{\CurrentOption}{article}}
  9. \ProcessOptions\relax
  10. \LoadClass[onecolumn]{article}
  11. %%%%%%%%%%%%%
  12. %\ifx \title \undefined
  13. % \def\title#1{\def\@title{put title}}
  14. %\else
  15. % \def\title#1{\def\@title{#1}}
  16. %\fi
  17. %%%%%%%%%%%%%%
  18. \def\idnumber#1{\def\@idnumber{#1}}
  19. %commands
  20. \renewcommand{\maketitle}{
  21. \begin{titlepage}
  22. %Headings
  23. \center
  24. \textsc{\LARGE \bfseries Instituto Tecnológico de Morelia}\\[0.5cm]
  25. \includegraphics[width=5cm]{logo}\\[1cm]
  26. \textsc{\Large División de Estudios Profesionales}\\[1cm]
  27. \textsc{\Large Departamento de Ingeniería Electrónica}\\[0.5cm]
  28. %Title
  29. \rule{\linewidth}{0.5mm}\\[0.4cm]
  30. {\Large \@title}
  31. \rule{\linewidth}{0.5mm}\\[1.2cm]
  32. %author
  33. \begin{flushleft}
  34. \emph{Alumno:}\\
  35. \textsc{\@author}
  36. \emph{Número de Control:}\\
  37. {\bfseries \@idnumber}
  38. \end{flushleft}
  39. {\large \today}
  40. \vfill % fill the rest of page with blank space
  41. \end{titlepage}
  42. }