IEEE Access 저널 투고 전문 스킬. 논문 작성, LaTeX 포맷팅, 참고문헌 관리, 피어리뷰 시뮬레이션, Pre-submission 체크리스트를 수행합니다. IEEE Access Author Guidelines 2026 기준.
IEEE Access (ISSN 2169-3536) 저널에 논문을 준비하고 투고하는 전 과정을 안내합니다. Open Access 저널, Impact Factor 3.4 (2024), Multidisciplinary.
ieeeaccess.cls\documentclass{ieeeaccess}
% 필수 패키지
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{xcolor}
\usepackage{booktabs}
\usepackage{hyperref} % 반드시 마지막에 로드
\begin{document}
\history{Date of publication xxxx 00, 0000,
date of current version xxxx 00, 0000.}
\doi{10.1109/ACCESS.2026.XXXXXXX}
\title{논문 제목}
\author{
\uppercase{First Author}\authorrefmark{1},
\uppercase{Second Author}\authorrefmark{2}
\address[1]{Department, University, City, Country}
\address[2]{Department, University, City, Country}
\tfootnote{Corresponding author: First Author ([email protected]).}
}
\markboth{Author et al.: Short Title}
{Author et al.: Short Title}
\begin{abstract}
250단어 이내. 배경-목적-방법-결과-의의 구조.
\end{abstract}
\begin{keywords}
Index Terms—keyword1, keyword2, keyword3 (IEEE Thesaurus 기반)
\end{keywords}
\maketitle
\section{Introduction}
\section{Related Work}
\section{Proposed Method / System Architecture}
\section{Experimental Setup}
\section{Results and Analysis}
\section{Discussion}
\section{Conclusion}
\section*{Acknowledgments}
\section*{Conflict of Interest}
% The authors declare no conflict of interest.
\bibliographystyle{IEEEtran}
\bibliography{references}
\begin{IEEEbiography}[{\includegraphics[width=1in]{photo.jpg}}]{Author Name}
Short bio (100 words max).
\end{IEEEbiography}
\end{document}
| 항목 | 규격 |
|---|---|
| 형식 | PDF, EPS (벡터 권장), PNG/TIFF (래스터) |
| 해상도 | 최소 300 DPI (래스터), 600 DPI 권장 |
| 단일 컬럼 | 3.5 inches (8.89 cm) |
| 더블 컬럼 | 7.16 inches (18.19 cm) |
| 캡션 형식 | Fig. 1. (마침표 포함, 굵게 아님) |
| 색상 | 컬러 무료 (Open Access) |
| 접근성 | 색맹 친화 팔레트 권장 |
| 항목 | 규격 |
|---|---|
| 캡션 형식 | TABLE I (대문자 로마 숫자, 테이블 위에 배치) |
| 패키지 | booktabs 사용 권장 (\toprule, \midrule, \bottomrule) |
| 정렬 | 숫자는 소수점 정렬, 텍스트는 좌측 정렬 |
| 볼드 | 최고 성능값에 \textbf{} 적용 |
| 주석 | 테이블 하단에 \footnotesize 로 표기 |
% 저널
@article{key,
author = {Last1, First1 and Last2, First2},
title = {Article Title},
journal = {IEEE Access},
volume = {12},
pages = {12345--12356},
year = {2024},
doi = {10.1109/ACCESS.2024.XXXXXXX}
}
% 학회
@inproceedings{key,
author = {Last1, First1},
title = {Paper Title},
booktitle = {Proc. IEEE/CVF Conf. Comput. Vis. Pattern Recognit. (CVPR)},
pages = {1234--1245},
year = {2024}
}
% arXiv (미출판)
@article{key,
author = {Last1, First1},
title = {Paper Title},
journal = {arXiv preprint arXiv:2401.12345},
year = {2024}
}
% 번호 있는 수식
\begin{equation}
\mathcal{L} = -\sum_{c=1}^{C} w_c \cdot y_c \cdot \log(\hat{y}_c)
\label{eq:loss}
\end{equation}
% 인라인 수식
The learning rate $\alpha = 3 \times 10^{-4}$ is used.
% 다중 줄 수식
\begin{align}
R &= R_{\text{time}} + R_{\text{approach}} + R_{\text{grasp}} \\
&\quad + R_{\text{move}} + R_{\text{place}}
\label{eq:reward}
\end{align}
\usepackage[ruled,vlined,linesnumbered]{algorithm2e}
\begin{algorithm}[t]
\caption{PPO Training with Dense Reward}
\label{alg:ppo}
\KwIn{Environment $\mathcal{E}$, policy $\pi_\theta$}
\KwOut{Trained policy $\pi_\theta^*$}
Initialize $\pi_\theta$ with random weights\;
\For{$k = 1$ \KwTo $K$}{
Collect trajectories $\mathcal{D}_k$ using $\pi_\theta$\;
Compute advantages $\hat{A}_t$\;
Update $\theta$ by maximizing PPO objective\;
}
\Return{$\pi_\theta^*$}
\end{algorithm}
--- Reviewer Comment #1 ---
[리뷰어 원문 인용]
--- Response ---
We thank the reviewer for this insightful comment.
[구체적 대응 + 수정 사항 명시]
[수정된 논문 위치: Section X, Page Y, Line Z]
ieeeaccess.cls 템플릿 사용Fig. 1. 형식TABLE I 형식 (테이블 위)IEEEtran.bst)투고 전 PDF 호환성 검증 도구:
\usepackage{siunitx}
\SI{305}{fps} % 305 fps
\SI{0.870}{} % 0.870
\SI{3e-4}{} % 3×10⁻⁴
\SI{640x480}{pixels} % 640×480 pixels
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=blue,
citecolor=blue,
urlcolor=blue
}
\usepackage{listings}
\lstset{
language=Python,
basicstyle=\footnotesize\ttfamily,
frame=single,
breaklines=true,
numbers=left,
numberstyle=\tiny
}