期刊作者部分的格式

期刊作者部分的格式

我正在根据我的研究制作日记。我的大学使用了经过改编的 IEEETransaction 日记模板,其中包含作者部分如下所示(此截图由 Microsoft Word 生成) 样本预期输出

目前,我的大学只给我提供了这个模板:

\documentclass[journal]{IEEEtran}
\IEEEoverridecommandlockouts

% The preceding line is only needed to identify funding in the first footnote. If that is unneeded, please comment it out.
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{caption}
\usepackage[labelsep=period]{caption}
\usepackage{textcomp}
\usepackage{xcolor}
\usepackage{multicol}
\usepackage{multirow}
\usepackage{graphicx}
\usepackage{xltabular}

\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
    T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}

\begin{document}
    \renewcommand{\figurename}{Gambar}
    \renewcommand{\tablename}{Tabel}
    
    \title{Penerapan \textit{Convolutional Neural Network} untuk Melakukan Estimasi \textit{Pitch} pada Rekaman Suara Penyanyi\\}
        
    \author{\IEEEauthorblockN{1\textsuperscript{st} Dionisius Pratama}
    \IEEEauthorblockA{\textit{Faculty of Informatics} \\
    \textit{Institut Teknologi Harapan Bangsa}\\
    Bandung, Indonesia \\
    [email protected]}

    \and
    
    \IEEEauthorblockN{2\textsuperscript{nd} Dr. HH, M.Kom.}
    \IEEEauthorblockA{\textit{Lecturer of Informatics} \\
    \textit{Institut Teknologi Harapan Bangsa}\\
    Bandung, Indonesia \\
    [email protected]}

    \and
    
    \IEEEauthorblockN{3\textsuperscript{rd} HC, M.T.}
    \IEEEauthorblockA{\textit{Lecturer of Informatics} \\
    \textit{Institut Teknologi Harapan Bangsa}\\
    Bandung, Indonesia \\
    [email protected]}
    }
    
    \maketitle
\end{document} 

输出为:
当前 LaTeX 输出

有什么方法可以让作者部分符合我的大学的期望吗?我想知道是否有一些特殊的语法可以做到这一点。

答案1

好吧,你实际上可以将输入调整为所需的输出。可能是这样的:

\documentclass[journal]{IEEEtran}

\begin{document}
    \title{Penerapan \textit{Convolutional Neural Network} untuk Melakukan Estimasi \textit{Pitch} pada Rekaman Suara Penyanyi}
    
    \author{
        \IEEEauthorblockN{Dionisius Pratama\textsuperscript{\#{},1}, HH M. Kom\textsuperscript{\#{},2}, HC, M.T.\textsuperscript{\#{},3}}\\
        \IEEEauthorblockA{\textit{Program Studi ...}}\\
        \texttt{
           \textsuperscript{1}[email protected]\\
           \textsuperscript{2}[email protected]\\
           \textsuperscript{3}[email protected]\\
        }
    }
    
    \maketitle
\end{document} 

相关内容