summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/quicktype
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /macros/latex/contrib/quicktype
Initial commit
Diffstat (limited to 'macros/latex/contrib/quicktype')
-rw-r--r--macros/latex/contrib/quicktype/QT.pngbin0 -> 13334 bytes
-rw-r--r--macros/latex/contrib/quicktype/Quicktype.pdfbin0 -> 121926 bytes
-rw-r--r--macros/latex/contrib/quicktype/QuicktypeSample.pdfbin0 -> 48326 bytes
-rw-r--r--macros/latex/contrib/quicktype/README.txt16
-rw-r--r--macros/latex/contrib/quicktype/quicktype.sty108
5 files changed, 124 insertions, 0 deletions
diff --git a/macros/latex/contrib/quicktype/QT.png b/macros/latex/contrib/quicktype/QT.png
new file mode 100644
index 0000000000..e79e094331
--- /dev/null
+++ b/macros/latex/contrib/quicktype/QT.png
Binary files differ
diff --git a/macros/latex/contrib/quicktype/Quicktype.pdf b/macros/latex/contrib/quicktype/Quicktype.pdf
new file mode 100644
index 0000000000..b38e6a700d
--- /dev/null
+++ b/macros/latex/contrib/quicktype/Quicktype.pdf
Binary files differ
diff --git a/macros/latex/contrib/quicktype/QuicktypeSample.pdf b/macros/latex/contrib/quicktype/QuicktypeSample.pdf
new file mode 100644
index 0000000000..100d7cdaf5
--- /dev/null
+++ b/macros/latex/contrib/quicktype/QuicktypeSample.pdf
Binary files differ
diff --git a/macros/latex/contrib/quicktype/README.txt b/macros/latex/contrib/quicktype/README.txt
new file mode 100644
index 0000000000..add7edd95b
--- /dev/null
+++ b/macros/latex/contrib/quicktype/README.txt
@@ -0,0 +1,16 @@
+quicktype
+
+v.0.1 (28th September 2016)
+
+License: lppl1.3
+
+Package Author: Xandru Mifsud
+
+Intended for the quick typesetting of basic documents using LaTeX using shortcuts to existing commands and specific commands for quick formatting.
+
+In order to use the package, \usepackage{quicktype} is required in the preamble, and quicktype.sty must be present in the necessary directory.
+
+For further information, see Quicktype.pdf
+
+Regards,
+Xandru \ No newline at end of file
diff --git a/macros/latex/contrib/quicktype/quicktype.sty b/macros/latex/contrib/quicktype/quicktype.sty
new file mode 100644
index 0000000000..989801569c
--- /dev/null
+++ b/macros/latex/contrib/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