I'm quite new to LaTeX, and I'm a new member of this community, so I hope this is the right place to post my problem.
I'm working on a document, based on the Information Mapping-rules. With i-mapping, you have to write a keyword at the left side of the document, and the explenation of that word at the right side. You can see an exemple of my document right here: http://plan.hetinstituut.be/businessplan.pdf.
I've wrote a new LaTeX-command, called 'imap'. This is my code:
Code: Select all
\newcommand{\imap}[2]{\begin{minipage}{0.2\textwidth}\begin{flushleft}\textbf{#1}\end{flushleft}\end{minipage}
\begin{minipage}{0.8\textwidth}\hline\#2\end{minipage}}
Can anyone help me to resolve this problem? Is there a better way to do this, instead of using minipages?
Thanks in advance!