%\NeedsTeXFormat{LaTeX2e} %\ProvidesPackage{cibbulletin-author}[2003/2/9 IEEE Computational Intelligence Bulletin] \RequirePackage{epsfig} \usepackage{multicol,fancyhdr} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% %% INTRODUCTION %% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % This is a slim version of the LaTeX package for the Bulletin of % the Technical Committee on Computational Intelligence. % It is heavily modified from the file debulletin.sty used by TC on Data % Engineering and is mainly used for preparing the sections on % "Profile", "Research Outlook" and "Book Review". % % An example of how to use it for preparing a book review % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % \documentclass[10pt,journal,onecolumn,letterpaper,twoside]{IEEEtran} % \usepackage{cibbulletin-author} % \begin{document} % % \begin{specialsection}{Book Review} % \begin{special1}{Book Review}{Blondie24, Playing at the Edge of AI}{Eric Harley} % \begin{multicols}{3} % [\vspace{0.1cm}\hspace{2cm} {By David B. % Fogel, Morgan Kaufmann Publishers, 2002, ISBN 1-55860-783-8}] % { % \input{yourtext.tex} % } % \end{multicols} % \end{special1} % % \end{specialsection} % % \end{document} % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Special Sections % % This environment is used for the sections "Profile", "Research Outlook" % and "Book Review". It is used by enclosing the section between % % \begin{specialsection}{NAME} % ... % \end{specialsection}, % % and enclosing each article within the section between % % \begin{special1}{NAME}{TITLE}{AUTHOR} % ... % \end{special1}. % % {NAME}: Please put {Profile}, {Research Outlook}, or {Book Review}. % {TITLE}: Please put the article title. % {AUTHOR}: Please put the author name. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \newenvironment{specialsection}[1]% {\clearpage }% {\clearpage} \newenvironment{special1}[3] {\clearpage \newcommand{\sectionname}{#1} \newcommand{\specialtitle}{#2} \newcommand{\specialauthor}{#3} \pageheading{\sectionname: \specialauthor}{\sectionname: \specialtitle} \heading{~\\~\\~\\ {\Huge\bf \specialtitle}\\} }% {\clearpage} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % For floating tables and figures in multicols environment % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \makeatletter \newenvironment{tableh} {\def\@captype{table}} {} \newenvironment{figureh} {\def\@captype{figure}} {} \makeatother %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% %% Headings %% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % A heading in the bulletin is like a section in an article. % The commands \heading, \subheading, and \subsubheading generate headings % for the sections. % \newcommand{\heading}{\section*} \newcommand{\subheading}{\subsection*} \newcommand{\subsubheading}{\subsubsection*} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% %% Pageheadings %% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % The running pageheadings and pagefooters printed at the top and % bottom of every page consists of some string as well as page number % printed on every page. The command % \pageheading{LEFTHEADING}{RIGHTHEADING} causes the heading of the % current and following pages to be set to LEFTHEADING on the left % hand pages and RIGHTHEADING on the right hand pages. % \newcommand{\pageheading}[2]{ \pagestyle{fancy} \fancyhf{} \fancyhead[LE,RO]{\thepage} \fancyhead[LO]{#1} \fancyhead[RE]{#2} \fancyfoot[LO,RE]{IEEE Intelligent Informatics Bulletin} \fancyfoot[LE,RO]{Month Year~~ Vol.99 No.99 } \renewcommand{\headrulewidth}{0.1pt}% default 0.4pt \renewcommand{\footrulewidth}{0.1pt}% default 0.0pt } \endinput