섹션 및 섹션 요약 미리보기

섹션 및 섹션 요약 미리보기

다음 형식으로 섹션을 정의하는 패키지나 메서드가 있는지 궁금합니다.

\section{Title}{My brief content description}
Full text...

그런 다음 레이아웃이 각 섹션의 요약과 함께 문서의 섹션 레이아웃만 생성하는 "초안, 최종, (레이아웃)"과 같은 스위치를 사용합니다. 변수와 "if then" 루틴이 있는 솔루션을 찾았지만 그렇게 하면 필요한 것보다 더 많은 제어 기능으로 파일이 복잡해집니다.

현재 IEEEtran 클래스를 사용하고 있지만 클래스에 의존하지 않는다면 좋을 것입니다.

\documentclass[conference]{IEEEtran}

\IEEEoverridecommandlockouts 

\begin{document}

\section{Sec 1}
- Some Description

Full Text

\subsection*{SubSec 1}
- Some Description

Full Text

\subsection*{SubSec 2}

etc.

\end{document}

미리 감사드립니다.

크리스

답변1

나는 이것이 추가 패키지 없이 쉽고 질서정연하게 작동할 수 있다고 믿습니다.

\documentclass{article}
\begin{document}

\section{Intro}
Short description
%\input{intro.tex} % Done

\section{Stuff 1}
Short description
%\input{stuff1.tex} % Done

\section{Stuff 2}
Short description
\input{stuff2.tex} % Working on it

\end{document}

관련 정보