Files
businesscard-qrcode/businesscard-qrcode.cls
T

840 lines
28 KiB
OpenEdge ABL
Raw Normal View History

2018-08-15 23:21:17 +02:00
% Author: Marc Wäckerlin
% License: LGPL
2018-08-12 00:59:57 +02:00
\NeedsTeXFormat{LaTeX2e}
2018-08-15 23:21:17 +02:00
\ProvidesClass{businesscard-qrcode}[2018/08/15 version 1.2 ready for ctan]
2018-08-12 00:59:57 +02:00
2018-08-13 15:24:59 +02:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% option evaluation
2018-08-12 00:59:57 +02:00
\RequirePackage{kvoptions}
\SetupKeyvalOptions{
2025-11-11 15:11:28 +01:00
family=BCQ,
prefix=BCQ@
2018-08-12 00:59:57 +02:00
}
\DeclareStringOption[89mm]{paperwidth}
\DeclareStringOption[59mm]{paperheight}
\DeclareStringOption[85mm]{contentwidth}
\DeclareStringOption[55mm]{contentheight}
\DeclareStringOption[8pt]{fontsize}
\DeclareStringOption[2mm]{padding}
\DeclareStringOption[2]{cutdist}
\DeclareStringOption[1]{cutlen}
2018-08-13 01:08:21 +02:00
\DeclareStringOption[0.50]{textwidth}
2018-08-12 00:59:57 +02:00
\DeclareStringOption[0.40]{qrwidth}
2025-11-09 17:24:30 +01:00
\DeclareStringOption[H]{qreclevel} % QR code error correction level (L,M,Q,H)
2025-11-09 11:17:49 +01:00
\DeclareStringOption[0.25]{qrlogoscale} % logo size in QR code as fraction of QR width (1.0 = 100%), default 0.25
\DeclareStringOption[0.02]{qrlogoborder} % white padding around logo in QR as fraction of QR width (1.0 = 100%), default 0.02
2025-11-09 12:08:18 +01:00
\DeclareStringOption{logoheight} % logo height next to name (with unit, e.g., 4em), default: 4em if company set, 2em otherwise
\DeclareStringOption[1.0]{bgscale} % background image scale (1.0 = 100% card height), default 1.0
\DeclareStringOption[1.0]{bgopacity} % background image opacity (1.0 = 100% visible, 0.0 = invisible), default 1.0
\DeclareStringOption[1.0]{qrbgopacity} % QR code background opacity (1.0 = white solid, 0.0 = transparent), default 1.0
2018-08-12 00:59:57 +02:00
\DeclareStringOption[de]{lang}
2025-11-11 15:41:36 +01:00
\DeclareStringOption[black]{color}
2025-11-11 17:09:12 +01:00
\DeclareStringOption[black]{qrcolor}
2025-11-11 15:11:28 +01:00
\DeclareBoolOption[true]{crlf} % use CRLF line endings in vCard (iOS compatibility)
\DeclareComplementaryOption{nocrlf}{crlf}\DeclareBoolOption[true]{address}
2018-08-13 01:08:21 +02:00
\DeclareComplementaryOption{noaddress}{address}
2018-08-12 00:59:57 +02:00
\DeclareBoolOption[true]{hint}
\DeclareComplementaryOption{nohint}{hint}
2018-08-13 01:08:21 +02:00
\DeclareBoolOption[true]{icon}
\DeclareComplementaryOption{noicon}{icon}
\DeclareBoolOption[true]{rightalign}
\DeclareComplementaryOption{leftalign}{rightalign}
\DeclareBoolOption[true]{iconleft}
\DeclareComplementaryOption{iconright}{iconleft}
\DeclareBoolOption[true]{fill}
\DeclareComplementaryOption{nofill}{fill}
\DeclareBoolOption[true]{qrfirst}
\DeclareComplementaryOption{textfirst}{qrfirst}
\DeclareBoolOption[true]{https}
\DeclareComplementaryOption{www}{https}
2025-11-08 19:11:43 +01:00
\DeclareStringOption[auto]{countryformat} % auto: <4 chars inline with mdash, >=4 separate line; inline: always inline; below: always separate line
2018-08-12 00:59:57 +02:00
\DeclareDefaultOption{\@unknownoptionerror}
\ProcessKeyvalOptions*
2018-08-13 15:24:59 +02:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% definitions from the options
2018-08-12 00:59:57 +02:00
\def\content{paperwidth=\BCQ@contentwidth,paperheight=\BCQ@contentheight}
\def\papersize{width=\BCQ@paperwidth,height=\BCQ@paperheight}
\def\padding{\BCQ@padding} % padding around the content
\def\border{\BCQ@cutdist} % distance between start of cutmark and content in mm
\def\cutlen{\BCQ@cutlen} % length of ct marks in mm
\def\textpercents{\BCQ@textwidth} % size of text part 0..1
\def\imagepercents{\BCQ@qrwidth} % size of qrcode image part 0..1
\def\lang{\BCQ@lang}
2018-08-13 01:08:21 +02:00
\def\protdisplay{\ifBCQ@https https://\else www.\fi}
\def\protprefix{\ifBCQ@https https://\fi}
\ifBCQ@address\def\printaddress{}\fi
2018-08-12 00:59:57 +02:00
2018-08-13 15:24:59 +02:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% global dependencies and settings
\LoadClass[\BCQ@fontsize]{extarticle}
\RequirePackage{marvosym}
\RequirePackage{fontawesome}
\RequirePackage[final]{qrcode}
2025-11-11 15:41:36 +01:00
\RequirePackage{xcolor}
2018-08-13 15:24:59 +02:00
\RequirePackage{etoolbox}
2025-11-08 19:11:43 +01:00
\RequirePackage{xstring} % for string length checking
2018-08-13 15:24:59 +02:00
\RequirePackage{DejaVuSans}
\RequirePackage[T1]{fontenc}
\RequirePackage{wrapfig}
2025-11-09 11:17:49 +01:00
\RequirePackage{graphicx} % needed for optional logo
2025-11-08 17:09:38 +01:00
\RequirePackage{tikz} % needed for logo overlay in QR code
\RequirePackage{eso-pic} % needed for background images without layout impact
2025-11-09 11:03:42 +01:00
% Fix XeLaTeX opacity issue: ensure TikZ/PGF is loaded before eso-pic uses opacity
\DeclareHookRule{shipout/background}{pgfrcs}{>}{eso-pic}
2018-08-13 15:24:59 +02:00
\RequirePackage[\content,top=\padding,left=\padding,right=\padding,bottom=\padding]{geometry}
%\RequirePackage{pbox}
\RequirePackage{varwidth}
\RequirePackage{calc}
\pagestyle{empty}
\setlength{\parindent}{0pt}
\renewcommand*\familydefault{\sfdefault}
\setlength{\fboxsep}{0pt}
2025-11-11 15:41:36 +01:00
\color{\BCQ@color}
2018-08-13 15:24:59 +02:00
2018-08-14 16:38:43 +02:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% data registration
2025-11-11 10:53:12 +01:00
\newcommand\BCQ@datareset{%
2025-11-11 15:11:28 +01:00
\def\BCQ@data@hide{}%
\def\BCQ@data@logo{}%
\def\BCQ@data@height{}%
2025-11-11 10:53:12 +01:00
}
\define@key{BCQ@data}{hide}[true]{%
2025-11-11 15:11:28 +01:00
\edef\BCQ@data@hide{#1}%
2025-11-11 10:53:12 +01:00
}
\define@key{BCQ@data}{logo}{%
2025-11-11 15:11:28 +01:00
\def\BCQ@data@logo{#1}%
2025-11-11 10:53:12 +01:00
}
\define@key{BCQ@data}{height}{%
2025-11-11 15:11:28 +01:00
\def\BCQ@data@height{#1}%
2025-11-11 10:53:12 +01:00
}
\newlength{\BCQ@companybrandingheight}
\setlength{\BCQ@companybrandingheight}{2em}
\newcommand\BCQ@applycompanyoptions{%
2025-11-11 15:11:28 +01:00
\csundef{Xcompanylogo}%
\csundef{Xcompanylogoheight}%
\setlength{\BCQ@companybrandingheight}{2em}%
\ifx\BCQ@data@logo\@empty\else
\let\Xcompanylogo\BCQ@data@logo
\ifx\BCQ@data@height\@empty
\def\Xcompanylogoheight{1.5em}%
\else
\edef\Xcompanylogoheight{\BCQ@data@height}%
\fi
\setlength{\BCQ@companybrandingheight}{\Xcompanylogoheight}%
\fi
2025-11-11 10:53:12 +01:00
}
\newcommand\registerData[1]{%
2025-11-11 15:11:28 +01:00
\expandafter\newcommand\csname #1\endcsname[2][]{%
\BCQ@datareset
\edef\BCQ@data@options{##1}%
\ifx\BCQ@data@options\@empty\else
\setkeys{BCQ@data}{##1}%
\fi
\csundef{X#1@hide}%
\ifx\BCQ@data@hide\@empty\else
\edef\BCQ@data@hidetmp{\BCQ@data@hide}%
\ifdefstring{\BCQ@data@hidetmp}{false}{}{%
\expandafter\def\csname X#1@hide\endcsname{true}%
}%
\fi
\expandafter\def\csname X#1\endcsname{##2}%
\ifstrequal{#1}{company}{\BCQ@applycompanyoptions}{}%
}%
2018-08-14 16:38:43 +02:00
}
\registerData{type}
\registerData{givennames}
\registerData{familynames}
\registerData{honoricprefix}
\registerData{honoricsuffix}
\registerData{company}
2025-11-10 13:07:52 +01:00
\registerData{additionalnames}
2018-08-14 16:38:43 +02:00
\registerData{pobox}
2025-11-10 13:07:52 +01:00
\registerData{role}
2018-08-14 16:38:43 +02:00
\registerData{extaddr}
\registerData{street}
\registerData{city}
\registerData{region}
\registerData{zip}
\registerData{country}
\registerData{phone}
\registerData{email}
\registerData{jabber}
\registerData{matrixorg}
\registerData{cloud}
\registerData{homepage}
\registerData{wordpress}
\registerData{drupal}
\registerData{joomla}
\registerData{wikipedia}
\registerData{link}
\registerData{world}
\registerData{git}
\registerData{gitea}
\registerData{github}
\registerData{facebook}
\registerData{twitter}
\registerData{youtube}
\registerData{google}
\registerData{pgpurl}
\registerData{pgpfingerprint}
2025-11-09 17:24:30 +01:00
2025-11-10 13:07:52 +01:00
% Override document \title to capture card title (original available via \carddocumenttitle)
\let\BCQ@documenttitle\title
\renewcommand\title[1]{%
2025-11-11 15:11:28 +01:00
\def\Xtitle{#1}%
2025-11-10 13:07:52 +01:00
}
\newcommand\carddocumenttitle[1]{%
2025-11-11 15:11:28 +01:00
\BCQ@documenttitle{#1}%
2025-11-10 13:07:52 +01:00
}
2025-11-09 17:24:30 +01:00
% Special commands with optional parameters
% \logo[height=...]{file} - logo next to name, overrides logoheight option
\define@key{BCQ@logo}{height}{\def\BCQ@logoheight@local{#1}}
\newcommand\logo[2][]{
2025-11-11 15:11:28 +01:00
\def\Xlogo{#2}
\def\BCQ@logo@tmp{#1}%
\ifx\BCQ@logo@tmp\@empty\else
\setkeys{BCQ@logo}{#1}
\fi
2025-11-09 17:24:30 +01:00
}
% \qrlogo[scale=...,opacity=...]{file} - logo in QR code center (scale is unitless fraction like 0.3)
\define@key{BCQ@qrlogo}{scale}{\def\BCQ@qrlogoscale@local{#1}}
\define@key{BCQ@qrlogo}{opacity}{\def\BCQ@qrbgopacity@local{#1}}
\newcommand\qrlogo[2][]{
2025-11-11 15:11:28 +01:00
\def\Xqrlogo{#2}
\def\BCQ@qrlogo@tmp{#1}%
\ifx\BCQ@qrlogo@tmp\@empty\else
\setkeys{BCQ@qrlogo}{#1}
\fi
2025-11-09 17:24:30 +01:00
}
% \background[scale=...,opacity=...]{file/color} - background image or color
\define@key{BCQ@background}{scale}{\def\BCQ@bgscale@local{#1}}
\define@key{BCQ@background}{opacity}{\def\BCQ@bgopacity@local{#1}}
\newcommand\background[2][]{
2025-11-11 15:11:28 +01:00
\def\Xbackground{#2}
\def\BCQ@background@tmp{#1}%
\ifx\BCQ@background@tmp\@empty\else
\setkeys{BCQ@background}{#1}
\fi
2025-11-09 17:24:30 +01:00
}
\registerData{companylogo} % content (image/object) to display instead of company text (company still in vCard)
2018-08-14 16:38:43 +02:00
2025-11-11 10:53:12 +01:00
\define@key{BCQ@companylogo}{height}{%
2025-11-11 15:11:28 +01:00
\def\BCQ@companylogo@height{#1}%
2025-11-11 10:53:12 +01:00
}
\renewcommand\companylogo[2][]{%
2025-11-11 15:11:28 +01:00
\def\BCQ@companylogo@height{}%
\edef\BCQ@companylogo@options{#1}%
\ifx\BCQ@companylogo@options\@empty\else
\setkeys{BCQ@companylogo}{#1}%
\fi
\def\Xcompanylogo{#2}%
\ifx\BCQ@companylogo@height\@empty
\def\Xcompanylogoheight{1.5em}%
\else
\edef\Xcompanylogoheight{\BCQ@companylogo@height}%
\fi
\setlength{\BCQ@companybrandingheight}{\Xcompanylogoheight}%
2025-11-11 10:53:12 +01:00
}
\newcommand\ifvisible[3]{%
2025-11-11 15:11:28 +01:00
\ifcsdef{#1}{%
\ifcsdef{#1@hide}{#3}{#2}%
}{#3}%
2025-11-11 10:53:12 +01:00
}
\newcommand\conddisplay[1]{%
2025-11-11 15:11:28 +01:00
\ifvisible{#1}{\exec{#1}}{}%
2025-11-11 10:53:12 +01:00
}
2018-08-14 16:38:43 +02:00
2018-08-13 15:24:59 +02:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% auxiliary commands
\newcommand\enforceright{\leftskip0pt plus 1fill\rightskip0pt}
2018-08-12 00:59:57 +02:00
\newcommand\exec[1]{\csname #1\endcsname}
2025-11-11 10:53:12 +01:00
\newcommand\insa[3][]{\ifvisible{#2}{
2018-08-13 01:08:21 +02:00
2025-11-11 15:11:28 +01:00
\ifBCQ@iconleft
\ifBCQ@icon\parbox{1em}{\centering\exec{#3}}\ \fi\ifBCQ@hint{\tiny#1}\fi\ifBCQ@fill\hfill\fi\exec{#2}
\else
\ifBCQ@hint{\tiny#1\ }\fi\exec{#2}\ifBCQ@fill\hfill\fi\ifBCQ@icon\ \parbox{1em}{\centering\exec{#3}}\fi
\fi
2018-08-13 01:08:21 +02:00
}{}}
2018-08-12 00:59:57 +02:00
\newcommand\ifexists[2]{\ifcsdef{#1}{#2}{}}
2018-08-13 01:08:21 +02:00
\newcommand\ifboth[3]{\ifcsdef{#1}{\ifcsdef{#2}{#3}{}}{}}
\newcommand\ifany[3]{\ifcsdef{#1}{#3}{\ifcsdef{#2}{#3}{}}}
\newcommand\cond[1]{\ifcsdef{#1}{\exec{#1}}{}}
2025-11-11 18:19:29 +01:00
\newcommand\BCQ@graphiccontent[2]{%
\begingroup
\edef\BCQ@graphicscan{\expandafter\detokenize\expandafter{#1}}%
\IfSubStr{\BCQ@graphicscan}{\string\\}{%
\endgroup #1%
}{%
\xdef\BCQ@graphicspath{\BCQ@graphicscan}%
\endgroup
\IfFileExists{\BCQ@graphicspath}{%
\includegraphics[#2]{\BCQ@graphicspath}%
}{%
#1%
}%
}%
}
% internal boxes and lengths for measuring
\newsavebox{\BCQ@namebox}
\newsavebox{\BCQ@logobox}
2025-11-11 15:11:28 +01:00
\newsavebox{\BCQ@companytitlebox}
\newsavebox{\BCQ@companyrightbox}
\newlength{\BCQ@logoheightdimen}
\setlength{\BCQ@logoheightdimen}{0pt}% initialize to prevent errors
2025-11-11 11:50:36 +01:00
\newlength{\BCQ@bgimagedimen}
\setlength{\BCQ@bgimagedimen}{0pt}
2025-11-11 15:11:28 +01:00
\newdimen\BCQ@companytitlewidth
\newdimen\BCQ@companyrightwidth
\newdimen\BCQ@companylineavailable
\newdimen\BCQ@companylinesum
\newif\ifBCQ@companylineneeded
\newif\ifBCQ@companytitleexists
\newif\ifBCQ@companyrightexists
\newlength{\BCQ@reservedheight}
\newlength{\BCQ@heightscale}
\newlength{\BCQ@namewidth}
2025-11-11 15:11:28 +01:00
\newlength{\BCQ@namecolumnwidth}
\newlength{\BCQ@logosep}
\newlength{\BCQ@logosepused}
\setlength{\BCQ@logosep}{1em}
2025-11-10 13:07:52 +01:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% name - assemble full name from the parts, such as Xgivennames and Xfamilynames
2025-11-11 10:53:12 +01:00
\newcommand\personalnamevcard{%
2025-11-11 15:11:28 +01:00
\ifexists{Xhonoricprefix}{\Xhonoricprefix\ }%
\ifexists{Xgivennames}{\Xgivennames\ }%
\ifexists{Xadditionalnames}{\Xadditionalnames\ }%
\ifexists{Xfamilynames}{\Xfamilynames}%
\ifexists{Xhonoricsuffix}{\ \Xhonoricsuffix}%
2025-11-10 13:07:52 +01:00
}
2025-11-11 10:53:12 +01:00
\newcommand\personalname{%
2025-11-11 15:11:28 +01:00
\ifvisible{Xhonoricprefix}{\Xhonoricprefix\ }{}%
\ifvisible{Xgivennames}{\Xgivennames\ }{}%
\ifvisible{Xadditionalnames}{\Xadditionalnames\ }{}%
\ifvisible{Xfamilynames}{\Xfamilynames}{}%
\ifvisible{Xhonoricsuffix}{\ \Xhonoricsuffix}{}%
2025-11-11 10:53:12 +01:00
}
\newcommand\ifhaspersonalname[2]{%
2025-11-11 15:11:28 +01:00
\ifvisible{Xhonoricprefix}{#1}{%
\ifvisible{Xgivennames}{#1}{%
\ifvisible{Xadditionalnames}{#1}{%
\ifvisible{Xfamilynames}{#1}{%
\ifvisible{Xhonoricsuffix}{#1}{#2}%
}%
}%
}%
}%
}
2025-11-11 10:53:12 +01:00
\newcommand\ifhaspositiontext[2]{%
2025-11-11 15:11:28 +01:00
\ifvisible{Xcompany}{#1}{%
\ifvisible{Xtitle}{#1}{%
\ifvisible{Xrole}{#1}{#2}%
}%
}%
}
2025-11-11 10:53:12 +01:00
\newcommand\ifhaspositionblock[2]{%
2025-11-11 15:11:28 +01:00
\ifhaspositiontext{#1}{%
\ifcsdef{Xcompanylogo}{#1}{#2}%
}%
2025-11-11 10:53:12 +01:00
}
\newcommand\ifhaspersonalnamevcard[2]{%
2025-11-11 15:11:28 +01:00
\ifcsname Xhonoricprefix\endcsname
#1%
\else\ifcsname Xgivennames\endcsname
#1%
\else\ifcsname Xadditionalnames\endcsname
#1%
\else\ifcsname Xfamilynames\endcsname
#1%
\else\ifcsname Xhonoricsuffix\endcsname
#1%
\else
#2%
\fi\fi\fi\fi\fi
2025-11-11 10:53:12 +01:00
}
2025-11-10 13:07:52 +01:00
% heightscale - calculate available height for text/QR
% Uses actual logo height if logo is taller than default reserved space
% This is computed as a length and stored, not a macro
\newcommand\computeheightscale{%
2025-11-11 15:11:28 +01:00
\setlength{\BCQ@reservedheight}{\dimexpr\ifhaspersonalname{2em}{0em}+\ifhaspositionblock{\BCQ@companybrandingheight}{0pt}\relax}%
\ifdim\BCQ@logoheightdimen>\BCQ@reservedheight
\setlength{\BCQ@heightscale}{\dimexpr\textheight-\BCQ@logoheightdimen-\ifcsdef{Xpgpfingerprint}{2em}{0em}\relax}%
\else
\setlength{\BCQ@heightscale}{\dimexpr\textheight-\BCQ@reservedheight-\ifcsdef{Xpgpfingerprint}{2em}{0em}\relax}%
\fi
}
\newcommand\heightscale{\BCQ@heightscale}
2018-08-13 15:24:59 +02:00
2025-11-11 15:11:28 +01:00
\newcommand\companytitleblock{%
\ifvisible{Xtitle}{\Xtitle}{}%
\ifvisible{Xrole}{%
\ifvisible{Xtitle}{,\ }{}%
\Xrole
}{}%
}
\newcommand\companyrightblock{%
\ifcsdef{Xcompanylogo}{\companylogocontent}{}%
\ifvisible{Xcompany}{%
\Xcompany
\ifcsdef{Xcompanylogo}{\hspace{0.5em}}{}%
}{}%
2025-11-10 13:07:52 +01:00
}
2025-11-11 10:53:12 +01:00
\newcommand\companybrandingline{%
2025-11-11 15:11:28 +01:00
\begingroup
\BCQ@companytitleexistsfalse
\ifvisible{Xtitle}{\BCQ@companytitleexiststrue}{}%
\ifvisible{Xrole}{\BCQ@companytitleexiststrue}{}%
\BCQ@companyrightexistsfalse
\ifvisible{Xcompany}{\BCQ@companyrightexiststrue}{}%
\ifcsdef{Xcompanylogo}{\BCQ@companyrightexiststrue}{}%
\ifBCQ@companytitleexists
\companytitleblock
\fi
\ifBCQ@companytitleexists
\ifBCQ@companyrightexists
\space
\fi
\fi
\ifBCQ@companyrightexists
\companyrightblock
\fi
\endgroup
2025-11-10 13:07:52 +01:00
}
2025-11-11 10:53:12 +01:00
\newcommand\companyrolestringvcard{%
2025-11-11 15:11:28 +01:00
\ifcsname Xtitle\endcsname
\Xtitle
\fi
\ifcsname Xrole\endcsname
\ifcsname Xtitle\endcsname ,\ \fi
\Xrole
\fi
\ifcsname Xcompany\endcsname
\ifcsname Xtitle\endcsname
\ \Xcompany
\else
\ifcsname Xrole\endcsname
\ \Xcompany
\else
\Xcompany
\fi
\fi
\fi
2025-11-11 10:53:12 +01:00
}
\newcommand\displayname{%
2025-11-11 15:11:28 +01:00
\ifhaspersonalname{\personalname}{\companybrandingline}%
2025-11-11 10:53:12 +01:00
}
\newcommand\BCQ@appendvcardposition{%
2025-11-11 15:11:28 +01:00
\ifhaspersonalnamevcard{%
\ (\companyrolestringvcard)%
}{%
\companyrolestringvcard
}%
2025-11-11 10:53:12 +01:00
}
\newcommand\BCQ@buildname{%
2025-11-11 15:11:28 +01:00
\ifhaspersonalnamevcard{%
\personalnamevcard
\ifcsname Xtitle\endcsname
\BCQ@appendvcardposition
\else
\ifcsname Xrole\endcsname
\BCQ@appendvcardposition
\else
\ifcsname Xcompany\endcsname
\BCQ@appendvcardposition
\fi
\fi
\fi
}{%
\companyrolestringvcard
}%
2025-11-11 10:53:12 +01:00
}
\let\BCQ@cachedname\@empty
\newcommand\BCQ@setnamecache{%
2025-11-11 15:11:28 +01:00
\begingroup
\edef\BCQ@tmp{\BCQ@buildname}%
\global\let\BCQ@cachedname\BCQ@tmp
\endgroup
2025-11-11 10:53:12 +01:00
}
\newcommand\name{%
2025-11-11 15:11:28 +01:00
\ifx\BCQ@cachedname\@empty
\BCQ@buildname
\else
\BCQ@cachedname
\fi
2025-11-11 10:53:12 +01:00
}
2018-08-12 00:59:57 +02:00
2018-08-13 15:24:59 +02:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% vcard - the content of the vcard
2025-11-11 15:11:28 +01:00
% newline selection: default LF (robust for qrcode). Optional CRLF if crlf option set.
{\catcode`\^^M=12\gdef\BCQ@carriagereturn{^^M}}% literal CR (catcode 12)
{\catcode`\^^J=12\gdef\BCQ@linefeed{^^J}}% literal LF (catcode 12)
\ifBCQ@crlf
\def\BCQ@nl{\BCQ@carriagereturn\BCQ@linefeed}% CRLF
2025-11-08 17:09:38 +01:00
\else
2025-11-11 15:11:28 +01:00
\def\BCQ@nl{\BCQ@linefeed}% LF only
2025-11-08 17:09:38 +01:00
\fi
% vcard assembly (version 4.0 retained). CRLF improves iOS import robustness.
\newcommand\vcard{BEGIN:VCARD\BCQ@nl
VERSION:4.0\BCQ@nl
2025-11-10 13:07:52 +01:00
N:\cond{Xfamilynames};\cond{Xgivennames};\cond{Xadditionalnames};\cond{Xhonoricprefix};\cond{Xhonoricsuffix}\BCQ@nl
FN:\name\BCQ@nl
\ifexists{Xcompany}{ORG:\Xcompany\BCQ@nl}
\ifexists{Xtitle}{TITLE:\Xtitle\BCQ@nl}
\ifexists{Xrole}{ROLE:\Xrole\BCQ@nl}
2025-11-08 17:09:38 +01:00
\ifexists{printaddress}{ADR\ifexists{Xtype}{;TYPE=\Xtype}:\cond{Xpobox};\cond{Xextaddr};\cond{Xstreet};\cond{Xcity};\cond{Xregion};\cond{Xzip};\cond{Xcountry}\BCQ@nl}
\ifexists{Xphone}{TEL;VALUE=uri;TYPE=\ifexists{Xtype}{\Xtype,}voice,text:tel:\Xphone\BCQ@nl}
\ifexists{Xemail}{EMAIL\ifexists{Xtype}{;TYPE=\Xtype}:\Xemail\BCQ@nl}
\ifexists{Xjabber}{IMPP;TYPE=XMPP:\Xjabber\BCQ@nl}
\ifexists{Xmatrixorg}{IMPP;TYPE=MATRIX:\Xmatrixorg\BCQ@nl}
\ifexists{Xcloud}{URL:https://nextcloud.com/federation/\#\Xcloud\BCQ@nl}
\ifexists{Xhomepage}{URL:https://\Xhomepage\BCQ@nl}
\ifexists{Xwordpress}{URL:https://\Xwordpress\BCQ@nl}
\ifexists{Xdrupal}{URL:https://\Xdrupal\BCQ@nl}
\ifexists{Xjoomla}{URL:https://\Xjoomla\BCQ@nl}
\ifexists{Xwikipedia}{URL:https://\lang.wikipedia.org/wiki/\Xwikipedia\BCQ@nl}
\ifexists{Xlink}{URL:https://\Xlink\BCQ@nl}
\ifexists{Xworld}{URL:https://\Xworld\BCQ@nl}
\ifexists{Xgit}{URL:https://\Xgit\BCQ@nl}
\ifexists{Xgitea}{URL:https://\Xgitea\BCQ@nl}
\ifexists{Xgithub}{URL:https://github.com/\Xgithub\BCQ@nl}
\ifexists{Xfacebook}{URL:https://facebook.com/\Xfacebook\BCQ@nl}
\ifexists{Xtwitter}{URL:https://twitter.com/\Xtwitter\BCQ@nl}
\ifexists{Xyoutube}{URL:https://youtube.com/user/\Xyoutube\BCQ@nl}
\ifexists{Xgoogle}{URL:https://plus.google.com/+\Xgoogle\BCQ@nl}
\ifexists{Xpgpurl}{KEY;MEDIATYPE=application/pgp-keys:\Xpgpurl\BCQ@nl}
\ifexists{Xpgpfingerprint}{KEY:data:application/x-pgp-fingerprint,\Xpgpfingerprint\BCQ@nl}
END:VCARD\BCQ@nl}
2018-08-12 00:59:57 +02:00
2025-11-08 19:11:43 +01:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% formatcountry - format country based on length and options
\newcommand\formatcountry{%
2025-11-11 15:11:28 +01:00
\ifcsdef{Xcountry}{%
\ifvisible{Xcountry}{%
\def\BCQ@shouldinline{false}%
\def\BCQ@haszipcity{false}%
\ifvisible{Xcity}{\def\BCQ@haszipcity{true}}{}%
\ifvisible{Xzip}{\def\BCQ@haszipcity{true}}{}%
% Check countryformat option
\ifdefstring{\BCQ@countryformat}{inline}{%
\def\BCQ@shouldinline{true}%
}{%
\ifdefstring{\BCQ@countryformat}{below}{%
\def\BCQ@shouldinline{false}%
}{%
% auto mode: check length
\StrLen{\Xcountry}[\BCQ@countrylen]%
\ifnum\BCQ@countrylen<4\relax%
% Short country code AND city/zip exists inline
\ifdefstring{\BCQ@haszipcity}{true}{%
\def\BCQ@shouldinline{true}%
}{}%
\fi%
}%
}%
% Output country
\ifdefstring{\BCQ@shouldinline}{true}{%
\Xcountry\ \textemdash\ \conddisplay{Xzip} \conddisplay{Xcity}%
}{%
\conddisplay{Xzip} \conddisplay{Xcity}
\Xcountry
}%
}{%
\conddisplay{Xzip} \conddisplay{Xcity}%
}%
}{
\conddisplay{Xzip} \conddisplay{Xcity}%
}%
2025-11-08 19:11:43 +01:00
}
2018-08-13 15:24:59 +02:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% address - the address as shown in the textbox
2018-08-12 00:59:57 +02:00
\newcommand\address{
2025-11-11 15:11:28 +01:00
\conddisplay{Xpobox}
2018-08-13 01:08:21 +02:00
2025-11-11 15:11:28 +01:00
\conddisplay{Xextaddr}
\conddisplay{Xstreet}
\formatcountry
\conddisplay{Xregion}
2018-08-13 01:08:21 +02:00
}
2018-08-13 15:24:59 +02:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% inserttext - assemble the textbox
\newcommand\inserttext{
2025-11-11 15:11:28 +01:00
%\frame
{
\begin{minipage}[c][\heightscale][c]{\textpercents\textwidth}
\ifBCQ@rightalign\begin{flushright}\fi
\ifexists{printaddress}{
\ifBCQ@iconleft
\ifBCQ@icon\parbox[c]{1em}{\faMapMarker}\ \ifBCQ@fill\hfill\fi\fi
%\frame{
%\pbox[t]{\dimexpr\textwidth-2em\relax}{
\begin{varwidth}{\dimexpr\textwidth-2em\relax}
\ifBCQ@rightalign\enforceright\fi\address
\end{varwidth}
%}
%}
\else
%\pbox[t]{\dimexpr\textwidth-2em\relax}{
\begin{varwidth}{\dimexpr\textwidth-2em\relax}
\ifBCQ@rightalign\enforceright\fi\address
\end{varwidth}
%}
\ifBCQ@icon\ifBCQ@fill\hfill\fi\ \parbox[c]{1em}{\faMapMarker}\fi
\fi
\vspace{1em}
}
\insa[tel:]{Xphone}{faMobile}\insa[mailto:]{Xemail}{Email}\insa[xmpp]{Xjabber}{faCommentsO}\insa[matrix.org]{Xmatrixorg}{faCommentsO}\insa[nextcloud-id]{Xcloud}{faCloud}\insa[\protdisplay]{Xhomepage}{faHome}\insa[\protdisplay]{Xwordpress}{faWordpress}\insa[\protdisplay]{Xdrupal}{faDrupal}\insa[\protdisplay]{Xjoomla}{faJoomla}\insa[{\protprefix}\lang.wikipedia.org/wiki/]{Xwikipedia}{faWikipediaW}\insa[\protdisplay]{Xlink}{faLink}\insa[\protdisplay]{Xworld}{faGlobe}\insa[\protdisplay]{Xgit}{faGit}\insa[\protdisplay]{Xgitea}{faGithubAlt}\insa[{\protprefix}github.com/]{Xgithub}{faGithub}\insa[{\protprefix}facebook.com/]{Xfacebook}{faFacebook}\insa[{\protprefix}twitter.com/]{Xtwitter}{faTwitter}\insa[{\protprefix}youtube.com/user/]{Xyoutube}{faYoutube}\insa[{\protprefix}plus.google.com/+]{Xgoogle}{faGooglePlus}
\ifBCQ@rightalign\end{flushright}\fi
\end{minipage}
2018-08-13 15:24:59 +02:00
}
}
2018-08-12 00:59:57 +02:00
2018-08-13 15:24:59 +02:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% insertqrcode - insert the qr-code with optional white background
2018-08-13 01:08:21 +02:00
\newcommand\insertqrcode{
2025-11-11 15:11:28 +01:00
% Use local overrides if specified, otherwise use global options
\ifcsdef{BCQ@qrbgopacity@local}{%
\edef\BCQ@qrbgopacity@used{\BCQ@qrbgopacity@local}%
}{%
\edef\BCQ@qrbgopacity@used{\BCQ@qrbgopacity}%
}%
\ifcsdef{BCQ@qrlogoscale@local}{%
\edef\BCQ@qrlogoscale@used{\BCQ@qrlogoscale@local}%
}{%
\edef\BCQ@qrlogoscale@used{\BCQ@qrlogoscale}%
}%
%\frame
{
\begin{minipage}[c][\heightscale][c]{\imagepercents\textwidth}
\begin{tikzpicture}
% White background behind QR code (for readability over background images)
\node[fill=white, opacity=\BCQ@qrbgopacity@used, inner sep=0pt, outer sep=2mm, minimum size=\textwidth] (bg) at (0,0) {};
% QR code on top
\node[inner sep=0pt, outer sep=0pt] (qr) at (0,0) {%
% QR code with optional qrlogo overlay in center
\ifcsdef{Xqrlogo}{%
\begin{tikzpicture}
2025-11-11 17:09:12 +01:00
\node[inner sep=0pt] (qr2) {{\color{\BCQ@qrcolor}\qrcode[level=\BCQ@qreclevel,version=0,height=\textwidth]{\vcard}}};
2025-11-11 15:11:28 +01:00
% Logo with transparent background preserved (no fill), padding still applied
% qrlogoscale/scale is unitless fraction (0.25 = 25% of QR width)
\node[inner sep=\BCQ@qrlogoborder\textwidth] at (qr2.center) {%
2025-11-11 18:19:29 +01:00
\BCQ@graphiccontent{\Xqrlogo}{width=\BCQ@qrlogoscale@used\textwidth}%
2025-11-11 15:11:28 +01:00
};
\end{tikzpicture}%
}{%
% No qrlogo defined, just show QR code
2025-11-11 17:09:12 +01:00
{\color{\BCQ@qrcolor}\qrcode[level=\BCQ@qreclevel,version=0,height=\textwidth]{\vcard}}%
2025-11-11 15:11:28 +01:00
}%
};
\end{tikzpicture}
\end{minipage}
2018-08-13 01:08:21 +02:00
}
}
2018-08-13 15:24:59 +02:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% insertname - insert the name on the top
\newcommand\insertname{
2025-11-11 15:11:28 +01:00
% typeset name into box for measurement
\sbox{\BCQ@namebox}{\bfseries\cond{displayname}}%
% Set default logoheight if not specified: 4em with company, 2em without
\ifx\BCQ@logoheight\@empty
\ifcsdef{Xcompany}{\def\BCQ@logoheight{4em}}{\def\BCQ@logoheight{2em}}%
\fi
% Use local height override if specified, otherwise use global logoheight
\ifcsdef{BCQ@logoheight@local}{%
\edef\BCQ@logoheight@used{\BCQ@logoheight@local}%
}{%
\edef\BCQ@logoheight@used{\BCQ@logoheight}%
}%
% Store logo height as dimension for heightscale calculation
\ifcsdef{Xlogo}{%
2025-11-11 18:19:29 +01:00
\sbox{\BCQ@logobox}{\BCQ@graphiccontent{\Xlogo}{height=\BCQ@logoheight@used}}%
2025-11-11 15:11:28 +01:00
\setlength{\BCQ@logoheightdimen}{\BCQ@logoheight@used}%
\setlength{\BCQ@namecolumnwidth}{\dimexpr\textwidth-\wd\BCQ@logobox-\BCQ@logosep\relax}%
}{%
\setlength{\BCQ@logoheightdimen}{0pt}%
\setlength{\BCQ@namecolumnwidth}{\textwidth}%
}%
% Compute heightscale after logo height is known
\computeheightscale
\ifcsdef{Xlogo}{% logo defined
% Logo next to name: dynamic columns (logo natural width, name uses remaining space)
\setlength{\BCQ@logosepused}{\BCQ@logosep}%
\setlength{\BCQ@namewidth}{\dimexpr\textwidth-\wd\BCQ@logobox-\BCQ@logosepused\relax}%
\ifdim\BCQ@namewidth<0pt
\setlength{\BCQ@logosepused}{0pt}%
\setlength{\BCQ@namewidth}{\dimexpr\textwidth-\wd\BCQ@logobox\relax}%
\ifdim\BCQ@namewidth<0pt\setlength{\BCQ@namewidth}{0pt}\fi
\fi
\setlength{\BCQ@namecolumnwidth}{\BCQ@namewidth}%
\begin{minipage}{\textwidth}
\begin{minipage}[c]{\wd\BCQ@logobox}% logo column
\usebox{\BCQ@logobox}%
\end{minipage}
\hspace{\BCQ@logosepused}
\begin{minipage}[c]{\BCQ@namewidth}% name column
\ifBCQ@rightalign\raggedleft\fi% apply alignment
{\bfseries\cond{displayname}}%
\ifhaspersonalname{%
\ifhaspositionblock{\\\companybrandingline}{}%
}{}%
\end{minipage}
\end{minipage}
}{% no logo: just name
{\bfseries\cond{displayname}}%
\ifhaspersonalname{%
\ifhaspositionblock{\\\companybrandingline}{}%
}{}%
}
2018-08-13 15:24:59 +02:00
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% drawcardcontent - assemble all blocks (name, text, qr, pgp)
\newcommand\drawcardcontent{
2025-11-11 15:11:28 +01:00
\BCQ@setnamecache
\ifBCQ@rightalign\begin{flushright}\fi
\insertname
\noindent\makebox[\linewidth]{\rule{\paperwidth}{0.4pt}} % horizontal line
\vfill
\ifBCQ@qrfirst
\insertqrcode
\hfill
\inserttext
\else
\inserttext
\hfill
\insertqrcode
\fi
\ifexists{Xpgpfingerprint}{
\vfill
\ifBCQ@iconleft
\faLock\ifBCQ@hint{\tiny\ pgp}\fi\hfill{\small\Xpgpfingerprint}
\else
{\small\Xpgpfingerprint}\hfill\ifBCQ@hint{\tiny{pgp\ }}\fi\faLock
\fi
}
\ifBCQ@rightalign\end{flushright}\fi
2018-08-13 01:08:21 +02:00
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% drawcard - main card with optional background
\newcommand\drawcard{
2025-11-11 15:11:28 +01:00
% Use local overrides if specified, otherwise use global options
\ifcsdef{BCQ@bgscale@local}{%
\edef\BCQ@bgscale@used{\BCQ@bgscale@local}%
}{%
\edef\BCQ@bgscale@used{\BCQ@bgscale}%
}%
\ifcsdef{BCQ@bgopacity@local}{%
\edef\BCQ@bgopacity@used{\BCQ@bgopacity@local}%
}{%
\edef\BCQ@bgopacity@used{\BCQ@bgopacity}%
}%
% Handle background
\ifcsdef{Xbackground}{%
\IfFileExists{\Xbackground}{%
% It's an image file: add to background using eso-pic (no layout impact)
\AddToShipoutPictureBG*{%
\AtPageCenter{%
\begin{tikzpicture}[overlay]
\node[inner sep=0pt, opacity=\BCQ@bgopacity@used] at (0,0) {%
\setlength{\BCQ@bgimagedimen}{\dimexpr\BCQ@bgscale@used\paperheight\relax}%
\includegraphics[height=\BCQ@bgimagedimen]{\Xbackground}%
};
\end{tikzpicture}%
}%
}%
}{%
% Not a file: treat as color
\pagecolor{\Xbackground}%
}%
}{}%
% Draw card content
\drawcardcontent
}
2018-08-13 15:24:59 +02:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% cut / crop marks
2018-08-12 00:59:57 +02:00
\RequirePackage[\papersize,noinfo,center,pdftex]{crop}
\newcommand\tl{
2025-11-11 15:11:28 +01:00
\begin{picture}(0,0)
2025-11-11 17:09:12 +01:00
\color{\BCQ@color}
2025-11-11 15:11:28 +01:00
\thinlines\unitlength1mm
\put(-\border,0){\line(1,0){\cutlen}}
\put(0,\border){\line(0,-1){\cutlen}}
\end{picture}
2018-08-12 00:59:57 +02:00
}
\newcommand\tr{
2025-11-11 15:11:28 +01:00
\begin{picture}(0,0)
2025-11-11 17:09:12 +01:00
\color{\BCQ@color}
2025-11-11 15:11:28 +01:00
\thinlines\unitlength1mm
\put(\border,0){\line(-1,0){\cutlen}}
\put(0,\border){\line(0,-1){\cutlen}}
\end{picture}
2018-08-12 00:59:57 +02:00
}
\newcommand\bl{
2025-11-11 15:11:28 +01:00
\begin{picture}(0,0)
2025-11-11 17:09:12 +01:00
\color{\BCQ@color}
2025-11-11 15:11:28 +01:00
\thinlines\unitlength1mm
\put(-\border,0){\line(1,0){\cutlen}}
\put(0,-\border){\line(0,1){\cutlen}}
\end{picture}
2018-08-12 00:59:57 +02:00
}
\newcommand\br{
2025-11-11 15:11:28 +01:00
\begin{picture}(0,0)
2025-11-11 17:09:12 +01:00
\color{\BCQ@color}
2025-11-11 15:11:28 +01:00
\thinlines\unitlength1mm
\put(\border,0){\line(-1,0){\cutlen}}
\put(0,-\border){\line(0,1){\cutlen}}
\end{picture}
2018-08-12 00:59:57 +02:00
}
\cropdef[]\tl\tr\bl\br{cut}
\crop[cut]
2025-11-10 17:00:14 +01:00
\newcommand\companylogocontent{%
2025-11-11 15:11:28 +01:00
\begingroup
\edef\BCQ@companylogoscan{\expandafter\detokenize\expandafter{\Xcompanylogo}}%
\IfSubStr{\BCQ@companylogoscan}{\string\\}{%
\endgroup
\Xcompanylogo
}{%
\xdef\BCQ@companylogopath{\BCQ@companylogoscan}%
\endgroup
\IfFileExists{\BCQ@companylogopath}{%
\edef\BCQ@companylogoheightused{1.5em}%
\ifcsdef{Xcompanylogoheight}{%
\edef\BCQ@companylogoheightused{\Xcompanylogoheight}%
}{}%
\includegraphics[height=\BCQ@companylogoheightused]{\BCQ@companylogopath}%
}{%
\Xcompanylogo
}%
}%
2025-11-10 17:00:14 +01:00
}