IEEEtran.cls 的自定义页眉和页脚

IEEEtran.cls 的自定义页眉和页脚

我正在尝试.tex使用 的衍生物制作模板IEEEtran.cls(如果需要的话,直接修改是可以的IEEEtran.cls)。

我的问题是我无法在第一个(标题)页面以及下一页(除第一个标题页之外的所有内容)中实现自定义页眉和页脚。我需要将其实现为如下所示:下载(这是 docx 格式)。

这是我的代码:

\documentclass[transmag]{IEEEtran}

% correct bad hyphenation here
\hyphenation{op-tical net-works semi-conduc-tor}

\begin{document}
\title{Judul Makalah Jurnal dalam Bahasa Indonesia\\ (\textit{Journal Paper Title in English})}

% IEEE does not allow footnote automatic numbering, use custrom authorcounter
\newcounter{authorcounter}
\author{% <- needed to escape space
    \setcounter{authorcounter}{0}% <- needed to escape space
    Nama Penulis Pertama% <- needed to escape space
    \IEEEauthorrefmark{\stepcounter{authorcounter}\arabic{authorcounter}},
    Penulis Kedua% <- needed to escape space
    \IEEEauthorrefmark{\stepcounter{authorcounter}\arabic{authorcounter}},
    Penulis Ketiga% <- needed to escape space
    \IEEEauthorrefmark{\stepcounter{authorcounter}\arabic{authorcounter}}
}

% The paper headers
\markboth{%
    J\MakeLowercase{urnal}
    N\MakeLowercase{asional}
    T\MakeLowercase{eknik}
    E\MakeLowercase{lektro dan}
    T\MakeLowercase{eknologi}
    I\MakeLowercase{nformasi}
    $\vert$
    V\MakeLowercase{ol. nn, }
    N\MakeLowercase{o. nn, }
    F\MakeLowercase{ebruari 20nn}}%
    {}

% make the title area
\maketitle

% footnote
\addtocounter{footnote}{1}
\footnotetext{Nama Institusi dari Penulis Pertama, Alamat beserta kota KODEPOS NEGARA (tlp: 0274-555 225; fax: 0274-4321982; email:[email protected])}
\addtocounter{footnote}{1}
\footnotetext{Nama Institusi dari Penulis Pertama, Alamat beserta kota KODEPOS NEGARA (tlp: 0274-555 225; fax: 0274-4321982; email:[email protected])}
\addtocounter{footnote}{1}
\footnotetext{Nama Institusi dari Penulis Pertama, Alamat beserta kota KODEPOS NEGARA (tlp: 0274-555 225; fax: 0274-4321982; email:[email protected])}

\end{document}

IEEEtran.cls 似乎非常严格,我不知道该如何操作它。如果您有关于手册的任何文档,请随时分享。

相关内容