Compare commits
11 Commits
Author | SHA1 | Date | |
---|---|---|---|
744b22dc89 | |||
0d94c6e032 | |||
2a227a340e | |||
08bb6d945e | |||
48461bb653 | |||
27bfeced23 | |||
9974587697 | |||
e4e2950ae6 | |||
d07513c7b1 | |||
e8e3ae4510 | |||
66fef9e5ae |
11
README.md
11
README.md
@ -1,3 +1,12 @@
|
||||
# Keeb-Plaque
|
||||
|
||||
A simple little tent to print off on half of a Letter paper sheet (or whatever you want) 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.
|
||||
|
||||
![an example with only placeholder text](example.png)
|
||||
|
||||
also available in a blank form, check the branch: ![blank-mode](https://daviddaily.dev/david/Keeb-Plaque/src/branch/blank-mode)
|
||||
|
||||
`hell` branch has mine as 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.
|
BIN
example.png
Normal file
BIN
example.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 159 KiB |
53
main.tex
53
main.tex
@ -1,34 +1,30 @@
|
||||
\documentclass{article}
|
||||
\usepackage[fontsize=1.5em]{fontsize} % "wait doesn't em depend on font size?" don't ask me how this works
|
||||
\usepackage{parskip} % fuck them paragraphs
|
||||
\usepackage{tikz} % no good LaTeX abuse without TikZ, mein schmuzi-pusi
|
||||
\usepackage{lmodern,fontspec} % better font, change it if you want ¯\_(ツ)_/¯
|
||||
\usepackage{qrcode} % QR codes ezpz
|
||||
\usepackage[fontsize=9pt]{fontsize} % will need adjusted if you change the paper size
|
||||
\usepackage{parskip,tikz,lmodern,fontspec,lipsum,qrcode,hyperref}
|
||||
\usepackage[%
|
||||
papersize={8.5in,5.5in}, % this is half of letter paper, replace whole line with just "a5paper," to switch to A5 (would look like `a5paper,`, no "papersize=" or anything)
|
||||
margin=15mm
|
||||
papersize={5.5in,4.25in}, % this is a quarter of letter paper, half was too big
|
||||
left=25mm, right=25mm, % static since the codes are a constant size. this is adjusted to right inside the QR codes, use the option "showframe" to show the bounding box
|
||||
bottom=12mm
|
||||
]{geometry}
|
||||
|
||||
% 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.
|
||||
|
||||
\setlength{\headsep}{10mm}
|
||||
\pagestyle{empty}
|
||||
\def\nl{\\\vspace{1em}} % just to give some extraspace between the things
|
||||
|
||||
\pagestyle{empty}
|
||||
\begin{document}{\fontfamily{lmss}\selectfont\begin{center}
|
||||
\def\paste{% 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
|
||||
{\LARGE Title}\\
|
||||
{\small subtitle}\nl % you might need to mess with the spacing here to make it look even better
|
||||
{\large Model:} model\nl
|
||||
{\large Layout:} layout\nl
|
||||
{\large Keycaps:} keycaps\nl
|
||||
{\large PCB:} PCB\nl
|
||||
{\large Notes:} notes\\
|
||||
\vfill
|
||||
{\LARGE \#EVENT-NAME}
|
||||
\end{center}
|
||||
% 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
|
||||
\begin{tikzpicture}[remember picture, overlay]
|
||||
{\Huge Title}\\
|
||||
{\small Owner}
|
||||
\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-6]\\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}\\{\tiny\href{https://daviddaily.dev/david/Keeb-Plaque}{daviddaily.dev}}
|
||||
% 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
|
||||
@ -48,5 +44,10 @@
|
||||
\node [above=.1em] at (BR.north){\footnotesize
|
||||
Bottom Right%your label here
|
||||
};
|
||||
\end{tikzpicture}
|
||||
}\end{document}
|
||||
\end{tikzpicture}\newpage}
|
||||
|
||||
\begin{document}{\fontfamily{lmss}\selectfont\begin{center}
|
||||
%\setmainfont{[Hellvetica.ttf]} % uncomment if you want a better font
|
||||
\paste
|
||||
\paste
|
||||
\end{center}}\end{document}
|
Loading…
Reference in New Issue
Block a user