Compare commits

..

No commits in common. "52cc2c3656439a8dfbea2a11b274fdfc6d2af863" and "08bb6d945edc355b760ed6a170a523c1464aff21" have entirely different histories.

4 changed files with 60 additions and 34 deletions

View File

@ -1,7 +1,10 @@
# Keeb-Plaque
A simple little tent to print off on a quarter of a Letter paper sheet for Mechanical Keyboard Meetups.
A simple little tent to print off on half of a Letter paper sheet (or whatever you want) for Mechanical Keyboard Meetups.
![example](example.png)
![an example with only placeholder text](example.png)
Some printing programs don't play nice and have to have all 4 pages to make it a quarter sheet sized thing. Just repeat the `\table` command as many times as needed to do that.
`hell` branch has an example if you want more
"hey this is kinda hard, I have to install this whole other program and stuff??"
yeah, well my purpose in life is to curse others with knowledge of typesetting. Do I have the skillz/hardware/time to make it some kind of decent, if not super nice, site? probably. But that's not as fun to me.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 159 KiB

BIN
main.pdf

Binary file not shown.

View File

@ -1,38 +1,61 @@
\documentclass{article}
\usepackage[fontsize=8pt]{fontsize} % will need adjusted if you change the paper size
\usepackage{lmodern,fontspec,lipsum,tabularray,qrcode,tikz,parskip,hyperref}
\usepackage[fontsize=6pt]{fontsize} % will need adjusted if you change the paper size
\usepackage{parskip} % fuck them paragraphs
\usepackage{tikz} % no good LaTeX abuse without TikZ, mein schmuzi-pusi
\usepackage{lmodern,fontspec,lipsum} % better font, change it if you want ¯\_(ツ)_
\usepackage{qrcode} % QR codes ezpz
\usepackage[%
papersize={4.25in,2.75in},
bottom=2mm
papersize={4.25in,2.75in}, % this is a quarter of letter paper, half was too big
left=23mm, right=23mm, % this is adjusted to right inside the QR codes, use the option "showframe" to show the bounding box
bottom=5mm
]{geometry}
\setlength{\headsep}{2em}
\pagestyle{empty}
\setlength{\headsep}{10mm}
% I tried using em and other relative measurements as much as possible so that size conversions are easy. Metric is objectively better (I will fight you in real life about most aspects of this, I'm actively working on recipe localization), but units are just a social construct.
\def\table{%
\begin{tblr}{%
column{1}={halign=r},
column{2}={halign=l,wd=15em}, % set the width of the writing line here
vline{2}={text=:},
hline{2-Z}={2}{dotted},
row{2}={abovesep=2em},
row{3-Z}={abovesep=1.5em}}
{\LARGE Title}&\\
{\small Owner}&\\
Model&\\
Layout&\\
Switches&\\
Keycaps&\\
PCB&\\
\end{tblr}\\{\tiny\href{https://daviddaily.dev/david/Keeb-Plaque}{daviddaily.dev}}
\newpage
\def\nl{\\\vspace{1em}} % just to give some extraspace between the things
\def\paste{\pagestyle{empty}{\fontfamily{lmss}\selectfont\begin{center} % making it a command so that we can easily make multiple pages, easily undone if you don't like it
% this is VERY SIMPLE, and on purpose. You don't want something? comment that biznatch out. Everything else should shuffle around just fine.
%\setmainfont{[Hellvetica.ttf]} % uncomment if you want a better font
{\Huge Title}\\
{\small subtitle} % you might need to mess with the spacing here to make it look even better
\nl{\large Model:} model
\nl{\large Layout:} layout
\nl{\large Switches:} switches
\nl{\large Keycaps:} keycaps
\nl{\large PCB:} PCB
\nl{\footnotesize\lipsum[1][1-7] This is just to show that it'll stay between the QR codes "automatically"}\\
\vfill % this one makes the event name all the way at the bottom
{\LARGE \#EVENT-NAME}
\end{center}
% This is the QR codes in the 4 corners, pay attention to the labels. This whole section doesn't conform to the margins and stuff, so check yourself
\vspace{-2em}\begin{tikzpicture}[remember picture, overlay]
\node [below right=0.6em](TL) at (current page.north west){\qrcode{https://daviddaily.dev}};
\node [below=.1em] at (TL.south){\footnotesize
Top Left%your label here
};
\node [below left=0.6em](TR) at (current page.north east){\qrcode{https://daviddaily.dev}};
\node [below=.1em] at (TR.south){\footnotesize
Top Right%your label here
};
\node [above right=0.6em](BL) at (current page.south west){\qrcode{https://daviddaily.dev}};
\node [above=.1em] at (BL.north){\footnotesize
Bottom Left%your label here
};
\node [above left=0.6em](BR) at (current page.south east){\qrcode{https://daviddaily.dev}};
\node [above=.1em] at (BR.north){\footnotesize
Bottom Right%your label here
};
\end{tikzpicture}}
}
\begin{document}
{\fontfamily{lmss}\selectfont\begin{center}
% \setmainfont{[Hellvetica.ttf]} % uncomment if you want a better font
\table
\table
\table
\table
\end{center}
}\end{document}
\paste
\pagebreak
\paste
\end{document}