How can I renew the section command to include some additional arguments and start a multicolum section?
something like:
\section{title}{toc-title}{picture}{second picture}{subtitle}{author}
I just succeeded with a new environment, but now I have to add the TOC entries manually (and sections are not displayed in TexmakerX)
here a sample:
\documentclass[9pt,twoside]{article}
\usepackage[papersize={ 32cm , 47cm }]{geometry}
\usepackage[latin]{babel}
\usepackage{ulem}
\usepackage{calc}
\usepackage{graphicx}
\usepackage{lipsum}
\usepackage{palatino,times}
\usepackage{microtype}
\usepackage{float}
\usepackage{multicol}
\usepackage{fixltx2e}
\usepackage{calc}
\newenvironment{mysection}[5]{
%before
\noindent
\begin{minipage}[l]{0.6\linewidth}
\centering
% \includegraphics[height=40pt]{picts/pic-#3.jpg}
\framebox{first picture}
\par
\textbf{#2}\par
\rule{\linewidth-50pt}{3pt}
\section*{#5}
\rule{\linewidth-50pt}{3pt}
\end{minipage}
\hfill
\begin{minipage}[l]{0.4\linewidth}
% \includegraphics[width=\linewidth]{picts/pic-#4.jpg}
\noindent\framebox(280,200){this is the main an big picture}
\end{minipage}
\begin{multicols}{4}
By\textbf{ #1}
\bigskip
}
{ %after
\end{multicols}
}
\begin{document}
\begin{mysection}{authorname}{subtitle}{pict}{anotherpict}{this is the section title}
\lipsum[1-4]
\end{mysection}
\end{document}
\documentclassand the appropriate packages so that those trying to help don't have to recreate it. – Peter Grill Aug 6 '12 at 16:22graphicxmulticolandlipsum. – Guido Aug 6 '12 at 20:30