File: test2.cls

package info (click to toggle)
vim-vimtex 2.17-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,844 kB
  • sloc: makefile: 360; python: 103
file content (37 lines) | stat: -rw-r--r-- 742 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
% Package info
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{custom}[2020/01/01 v1.0 Custom class]

% Class dependencies
\LoadClass[12pt, a4paper]{report}
\RequirePackage[hyperref]{xcolor}
\RequirePackage[pdfusetitle]{hyperref}

% Graphics
\RequirePackage{graphicx}

% Language
\RequirePackage{polyglossia}
\RequirePackage{csquotes}
\setmainlanguage{english}

% Layout
\RequirePackage[nomarginpar]{geometry}

% Mathematics
\RequirePackage{amssymb, amsmath, amsthm}
\RequirePackage[cmintegrals]{newtxmath}
\newcommand{\true}{\mkern1mu\top\mkern1mu}

\newenvironment{test2Simple}{a}{b}

\newenvironment{test2Boxed}
{\begin{center}
    \begin{tabular}{|p{0.9\textwidth}|}
      \hline\\
    }
    {
      \\\\\hline
    \end{tabular}
  \end{center}
}