I'm using flacards package for making printable flashcards. At the moment, the cards are divided by grid and the columns are immediately adjacent to each other. I'm wondering how to add space between the cards, like so: 
- 21
1 Answers
Updated upon a follow up question: one side printing.
Be aware that adding space (vertical and/or horizontal) will change the size of the cards, as they are printed on a grid.
\setlength{\cardwidthspace}{15pt} will add 15pt to the right of the card.
\cardheightspace}{20pt} will add 20pt of upper vertical space.
Normally the cards are printed with the two-sided option, which means that the odd page and the even page must be printed on a single sheet, using the front and back of the sheet to align their edges.
By placing two pages side by side (book view), it can seen that the two smaller outer margins are equal and in the card #10 the word "Rain" will be printed on the back of "Regen".
For cards with text on only one side, it could be more convenient to use a one side option for easier cutting.
Use \setlength{\cardmargin}{\cardwidthspace} to set this up.
\documentclass[frontgrid,backgrid]{flacards}
\newlength{\cardwidthspace}
\newlength{\cardheightspace}
\newlength{\cardmargin}
\setlength{\cardmargin}{0pt}% default => two side printing <<<<<<<<<<<<<<<
\setlength{\cardwidthspace}{15pt} % add right horizontal space
\setlength{\cardheightspace}{20pt}% add upper vertical space
\setlength{\cardmargin}{\cardwidthspace} % use for one side printing <<<<<<<<<<<<<<<
\usepackage{etoolbox} % for the patch
\patchcmd{\card}
{\front\noindent\begin{picture}(0,0)}
{\front\noindent\begin{picture}(0,0)\advance\cardwidth by -\cardwidthspace\relax\advance\cardheight by -\cardheightspace\relax}
{}{}
\patchcmd{\card}
{\back\noindent\begin{picture}(0,0)}
{\back\noindent\begin{picture}(0,0)%
\advance\cardwidth by -\cardwidthspace\relax%
\advance\cardheight by -\cardheightspace\relax%
\advance@tempdimb by \cardmargin\relax%
}
{}{}
\pagesetup{3}{4}
\begin{document}
\card{gehen\\schlafen}{to go/to walk\\to sleep}
\card{hell, klar}{bright}
\card{mit\\ohne}{with\\without}
\card{Lernkarte}{flashcard}
\card{Wasser}{water}
\card{Saft}{juice}
\card{Fenster}{window}
\card{Linie}{line}
\card{und\\oder}{and\\or}
\card{Regen}{rain}
\end{document}
- 39,141


\documentclassand ending in\end{document}– Steven B. Segletes Sep 14 '21 at 17:21