blob: 7449c59615b8063c261b70b6aad417da8b2d4b3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
\documentclass[a4paper,twocolumn]{memoir}
\setlrmarginsandblock{2.5cm}*1
\checkandfixthelayout
\newoutputstream{showkeys}
\openoutputfile{\jobname.keys}{showkeys}
\addtostream{showkeys}{\protect\begin{description}}
\newcommand\felineMarkupDescription[5]{%
\addtostream{showkeys}{\protect\item[#1] #2 }%
}
\usepackage[loadsampleconfig]{dlfltxbmarkup}
%\usepackage{dlfltxbmarkup}
\usepackage{calc,enumitem}
\setdescription{style=nextline,font=\ttfamily}
\addtostream{showkeys}{\protect\end{description}}
\closeoutputstream{showkeys}
\pagestyle{plain}
\addtolength\columnsep{1cm}
\setlength\columnseprule{0.4pt}
\begin{document}
\raggedright
\twocolumn[\section*{Key descriptions for the current setting of the
\texttt{dlfltxbmarkup} package}]
\input{\jobname.keys}
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End:
|