diff options
author | Karl Berry <karl@freefriends.org> | 2016-09-29 20:35:34 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2016-09-29 20:35:34 +0000 |
commit | 21c0c509de4227b3d53505aaad21af1e593a0ad0 (patch) | |
tree | faab91eca400e9619e5b29009b232e75b6b686c5 /Master/texmf-dist | |
parent | 6786e1175d7ca2cad33e03d7bdf74cfb5cc87e13 (diff) |
quicktype (29sep16)
git-svn-id: svn://tug.org/texlive/trunk@42183 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist')
-rw-r--r-- | Master/texmf-dist/doc/latex/quicktype/QT.png | bin | 0 -> 13334 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/quicktype/Quicktype.pdf | bin | 0 -> 121926 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/quicktype/QuicktypeSample.pdf | bin | 0 -> 48326 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/quicktype/README.txt | 16 | ||||
-rw-r--r-- | Master/texmf-dist/tex/latex/quicktype/quicktype.sty | 108 |
5 files changed, 124 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/quicktype/QT.png b/Master/texmf-dist/doc/latex/quicktype/QT.png Binary files differnew file mode 100644 index 00000000000..e79e0943317 --- /dev/null +++ b/Master/texmf-dist/doc/latex/quicktype/QT.png diff --git a/Master/texmf-dist/doc/latex/quicktype/Quicktype.pdf b/Master/texmf-dist/doc/latex/quicktype/Quicktype.pdf Binary files differnew file mode 100644 index 00000000000..b38e6a700da --- /dev/null +++ b/Master/texmf-dist/doc/latex/quicktype/Quicktype.pdf diff --git a/Master/texmf-dist/doc/latex/quicktype/QuicktypeSample.pdf b/Master/texmf-dist/doc/latex/quicktype/QuicktypeSample.pdf Binary files differnew file mode 100644 index 00000000000..100d7cdaf5e --- /dev/null +++ b/Master/texmf-dist/doc/latex/quicktype/QuicktypeSample.pdf diff --git a/Master/texmf-dist/doc/latex/quicktype/README.txt b/Master/texmf-dist/doc/latex/quicktype/README.txt new file mode 100644 index 00000000000..add7edd95bb --- /dev/null +++ b/Master/texmf-dist/doc/latex/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/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 |