summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/quicktype
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2016-09-29 20:35:34 +0000
committerKarl Berry <karl@freefriends.org>2016-09-29 20:35:34 +0000
commit21c0c509de4227b3d53505aaad21af1e593a0ad0 (patch)
treefaab91eca400e9619e5b29009b232e75b6b686c5 /Master/texmf-dist/tex/latex/quicktype
parent6786e1175d7ca2cad33e03d7bdf74cfb5cc87e13 (diff)
quicktype (29sep16)
git-svn-id: svn://tug.org/texlive/trunk@42183 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/quicktype')
-rw-r--r--Master/texmf-dist/tex/latex/quicktype/quicktype.sty108
1 files changed, 108 insertions, 0 deletions
diff --git a/Master/texmf-dist/tex/latex/quicktype/quicktype.sty b/Master/texmf-dist/tex/latex/quicktype/quicktype.sty
new file mode 100644
index 00000000000..989801569c7
--- /dev/null
+++ b/Master/texmf-dist/tex/latex/quicktype/quicktype.sty
@@ -0,0 +1,108 @@
+\NeedsTeXFormat{LaTeX2e}[1994/06/01]
+\ProvidesPackage{quicktype}[2016/09/26]
+
+\RequirePackage{graphicx}
+
+\newcommand{\Doc}{\begin{document}}
+\newcommand{\eDoc}{\end{document}}
+
+\newcommand{\QT}{\textbf{$Q^{t}$}\ }
+
+\newcommand{\B}[1]{\textbf{#1}}
+\newcommand{\I}[1]{\textit{#1}}
+\newcommand{\IB}[1]{\textit{\textbf{#1}}}
+
+\newcommand{\Fig}[1]{begin{figure}[#1]}
+\newcommand{\eFig}{\end{figure}}
+
+\newcommand{\Table[1]}{\begin{table}[#1]}
+\newcommand{\eTable}{\end{table}}
+
+\newcommand{\Itemz}{\begin{itemize}}
+\newcommand{\eItemz}{\end{itemize}}
+
+\newcommand{\Minipg}[1]{\begin{minipage}{#1}}
+\newcommand{\eMinipg}{\end{minipage}}
+
+\newcommand{\Tabular}[1]{\begin{tabular}{#1}}
+\newcommand{\eTabular}{\end{tabular}}
+
+\newcommand{\subtitle}[1]{%
+ \posttitle{%
+ \par\end{center}
+ \begin{center}\large#1\end{center}
+ \vskip1em}%
+}
+
+\newcommand{\TitlePage}[4]{
+
+ \topskip0pt
+ \vspace*{\fill}
+
+ \begin{center}
+
+ #1\\
+ \vspace{3mm}
+
+ #2\\
+ \vspace{1cm}
+ #3\\
+ \vspace{1cm}
+ #4
+
+ \end{center}
+
+ \vspace*{\fill}
+
+ \newpage
+
+}
+
+\newcommand{\TitlePageGraphic}[6]{
+
+ \topskip0pt
+ \vspace*{\fill}
+
+ \begin{center}
+
+ \includegraphics[#6]{#5}
+ \\\vspace{1cm}
+
+ \end{center}
+
+ \begin{center}
+
+ \Large
+
+ #1\\
+ \vspace{3mm}
+ \large
+ #2\\
+ \vspace{1cm}
+ #3\\
+ \vspace{1cm}
+ #4
+
+ \end{center}
+
+ \vspace*{\fill}
+
+ \newpage
+}
+
+\newcommand{\QuickTable}[3]{
+
+ \begin{table}[#2]
+ \caption{#1}
+ \centering
+ \begin{tabular}{#3}
+ \hline\hline
+}
+
+\newcommand{\eQuickTable}{
+
+ \end{tabular}
+ \end{table}
+}
+
+\endinput \ No newline at end of file