Created
February 1, 2018 16:35
-
-
Save mxsrc/0f5ab8c32a96d88c83ceede010f9c354 to your computer and use it in GitHub Desktop.
WLAN QR Code page generator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[paper=a6]{scrartcl} | |
\usepackage[margin=.5cm]{geometry} | |
\usepackage{pst-barcode} | |
\usepackage{auto-pst-pdf} | |
\title{WLAN Access} | |
\date{} | |
\begin{document} | |
\begin{titlepage} | |
\maketitle | |
\thispagestyle{empty} | |
\centering | |
\begin{pspicture} | |
\psbarcode{WIFI:T:TYPE;S:SSID;P:PASSWORD;;}{height=2.5 width=2.5}{qrcode} | |
\end{pspicture} \\ | |
\vspace{2em} | |
\begin{tabular}{rl} | |
\large \bf `SSID':& SSID \\ | |
\large \bf Password:& PASSWORD | |
\end{tabular} | |
\end{titlepage} | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment