Ich möchte die Spaltennummer der ersten Spalte (Deckblatt) ausblenden.
Ich habe den folgenden Code verwendet von: Stack Exchange-Antwort
\documentclass[paper=A3, landscape]{scrartcl}
\usepackage{multicol}
\usepackage{blindtext}
\usepackage{everypage}
\newcounter{column}
\AddEverypageHook{\ifdim\columnwidth<\textwidth
\ifodd\value{page}\rlap{\hspace{\oddsidemargin}%
\raisebox{\dimexpr-\topmargin-\headheight-\headsep-\textheight- 0.5\footskip}[0pt][0pt]%
{\makebox[\columnwidth]{\stepcounter{column}\thecolumn}\hspace{\columnsep}%
\makebox[\columnwidth]{\stepcounter{column}\thecolumn}\hspace{\columnsep}%
\makebox[\columnwidth]{\stepcounter{column}\thecolumn}\hspace{\columnsep}%
\makebox[\columnwidth]{\stepcounter{column}\thecolumn}}}%
\else\rlap{\hspace{\evensidemargin}%
\raisebox{\dimexpr-\topmargin-\headheight-\headsep-\textheight-0.5\footskip}[0pt][0pt]%
{\makebox[\columnwidth]{\stepcounter{column}\thecolumn}\hspace{\columnsep}%
\makebox[\columnwidth]{\stepcounter{column}\thecolumn}\hspace{\columnsep}%
\makebox[\columnwidth]{\stepcounter{column}\thecolumn}\hspace{\columnsep}%
\makebox[\columnwidth]{\stepcounter{column}\thecolumn}}}%
\fi%
\fi}
\begin{document}
\begin{multicols}{4}
\blinddocument{} \blindtext
\end{multicols}
\end{document}
Ich habe es versucht mit
\thispagestyle{empty}
aber es hat nicht funktioniert.
Antwort1
Anstelle von \thecolumn
können Sie einen Befehl verwenden, der nur dann ein Ergebnis erzeugt, wenn der column
Zähler ungleich 1 ist. Hier habe ich ihn \tehcolumn
aufgrund eines häufigen Rechtschreibfehlers (ja, das ist ein Witz) genannt:
\documentclass[paper=A3, landscape]{scrartcl}
\usepackage{multicol}
\usepackage{blindtext}
\usepackage{everypage}
\newcounter{column}
\newcommand\tehcolumn{\ifnum\value{column}=1 \else\thecolumn\fi}
\AddEverypageHook{\ifdim\columnwidth<\textwidth
\ifodd\value{page}\rlap{\hspace{\oddsidemargin}%
\raisebox{\dimexpr-\topmargin-\headheight-\headsep-\textheight- 0.5\footskip}[0pt][0pt]%
{\makebox[\columnwidth]{\stepcounter{column}\tehcolumn}\hspace{\columnsep}%
\makebox[\columnwidth]{\stepcounter{column}\tehcolumn}\hspace{\columnsep}%
\makebox[\columnwidth]{\stepcounter{column}\tehcolumn}\hspace{\columnsep}%
\makebox[\columnwidth]{\stepcounter{column}\tehcolumn}}}%
\else\rlap{\hspace{\evensidemargin}%
\raisebox{\dimexpr-\topmargin-\headheight-\headsep-\textheight-0.5\footskip}[0pt][0pt]%
{\makebox[\columnwidth]{\stepcounter{column}\tehcolumn}\hspace{\columnsep}%
\makebox[\columnwidth]{\stepcounter{column}\tehcolumn}\hspace{\columnsep}%
\makebox[\columnwidth]{\stepcounter{column}\tehcolumn}\hspace{\columnsep}%
\makebox[\columnwidth]{\stepcounter{column}\tehcolumn}}}%
\fi%
\fi}
\begin{document}
\begin{multicols}{4}
\blinddocument{} \blindtext
\end{multicols}
\end{document}