name: Stylish-issue author: Jonas Smedegaard version: 0.0.1 contributes: formats: pdf: indent: true # links-as-notes: true colorlinks: false pdf-engine: lualatex documentclass: scrartcl csquotes: true papersize: a4 # extract-media: img template-partials: - before-title.tex include-in-header: # support multiple tagged columns (class option twocolumn is not tagged) - text: | \usepackage[a4paper, margin=0.5in, bottom=1in]{geometry} \usepackage{multicol} \setlength{\multicolsep}{0pt} \setlength{\columnsep}{1.5em} \setlength{\columnseprule}{0.4pt} # avoid widow headline or definition description - text: | \usepackage{needspace} \let\oldsection\section \renewcommand{\section}[1]{% \needspace{7\baselineskip} \oldsection{#1}% } \let\olddesc\description \renewcommand{\description}[1][]{% \olddesc[#1]% \needspace{2\baselineskip} } # avoid widow or orphan lines - text: | \usepackage[defaultlines=3,all]{nowidow} # add newline between definition list description and items - text: | \usepackage{enumitem} \setlist[description]{style=nextline} # set page footer to danish page count "side X af Y" - text: | \usepackage{lastpage} \usepackage{scrlayer-scrpage} \cfoot*{side \thepage\ af \pageref{LastPage}} # suppress figure label - text: | \usepackage[labelformat=empty]{caption} # newspaper styling of title header - text: | \usepackage[useregional,showdow]{datetime2} \makeatletter \renewcommand{\maketitle}{ { \rightline{\@subtitle, \DTMdate{\@date}} \centerline{\resizebox{\linewidth+18pt}{!}{\textsc{\@title}}} } } \makeatother