Desligue a chave \appendices e retome os rótulos normais da seção

Desligue a chave \appendices e retome os rótulos normais da seção

Fundo:

Estou anexando vários artigos no estilo IEEE usando a soluçãoaqui.

A maioria dos artigos inclui apêndices usando a \appendicesopção para redefinir \thesectionpara criar os Apêndices A, B, C, etc. O problema que tenho é que a seção nunca é redefinida quando um novo artigo é introduzido no documento e, portanto, o que deve ser rotulado como Seção 1 agora é o Apêndice A.

Pergunta:

Como redefinir \thesection para retomar as marcações de seção normais no estilo ieeetran?

Responder1

Eu me permiti roubar descaradamente a solução em Incluir \maketitle no índice para compilar o "livro" de artigos do IEEEdaquele cara estranho que forneceu (;-))

IEEEtrané bastante restritivo no sentido de que não permite sectionsapós um comando \appendixou \appendices. Dessa forma, ele define a macro

\def\@IEEEdestroythesectionargument#1

para emitir um aviso/erro. É possível remediar isso inserindo a macro da seção salva \let\LaTeXStandardSectionem vez do aviso. (Pequena advertência: no entanto, não funcionará para a seção com argumento opcional -> melhor maneira: corrigir o comando de \appendixetc.

As \thesectionmacros de formato de contador etc. devem ser restauradas no final de \maketitle!

Método rápido e sujoRedefinir \appendicesetc. de modo que nada mais faça do que redefinir o formato do contador para os contadores de nível de estruturação.

\documentclass[journal]{IEEEtran}

\usepackage{etoolbox}%
\usepackage{xpatch}
\usepackage{blindtext}
\usepackage{tocloft}%

\newlength{\articlesectionshift}%
\setlength{\articlesectionshift}{10pt}%
\addtolength{\cftsecindent}{\articlesectionshift}%

\let\LaTeXStandardSection\section
\let\LaTeXStandardTheSection\thesection
\let\LaTeXStandardTheSubSection\thesubsection
\let\LaTeXStandardTheSubSubSection\thesubsubsection
\let\LaTeXStandardTheParagraph\theparagraph


\makeatletter
\newcounter{titlecounter}

\xpretocmd{\maketitle}{\ifnumgreater{\value{titlecounter}}{1}}{\clearpage}{}{} % Well, this is lazy at the end ;-)
\xpatchcmd{\maketitle}{\let\maketitle\relax\let\@maketitle\relax}{\refstepcounter{titlecounter}\begingroup
  \addtocontents{toc}{\begingroup\addtolength{\cftsecindent}{-\articlesectionshift}}%
  \addcontentsline{toc}{section}{\protect{\numberline{\thetitlecounter}{\@title~ \@author}}}%
  \addtocontents{toc}{\endgroup}
}{%
  \typeout{Patching was successful}
}{%
  \typeout{patching failed}
}%

\def\@IEEEdestroythesectionargument#1{\LaTeXStandardSection{#1}}%


\xapptocmd{\maketitle}{%
\renewcommand{\thesection}{\LaTeXStandardTheSection}%
\renewcommand{\thesubsection}{\LaTeXStandardTheSubSection}%
\renewcommand{\thesubsubsection}{\LaTeXStandardTheSubSubSection}%
\renewcommand{\theparagraph}{\LaTeXStandardTheParagraph}%
}{}{}%


\@addtoreset{section}{titlecounter}

\makeatother
\begin{document}
\onecolumn
\tableofcontents
\twocolumn        



% Title and Author information  Paper 1
\title{Title 1}
\author{Author 1}
% Make the title area
\maketitle

\section{First}
\subsection{First subsection of 1st section}%
\subsection{2nd subsection of 1st section}%
\subsection{3rd subsection of 1st section}%
\subsection{4th subsection of 1st section}%

\blindtext[10]
\section{Two}
\subsection{First subsection of 2nd section}%
\appendix
\section{First of Appendix}

% Title and Author information  Paper 2
\title{Title 2}
\author{Author 2}
% Make the title area
\maketitle
\section{First from second paper}
\subsection{First subsection of 2nd section of 2nd article}%

\blindtext[20]

%$ Paper Content

\end{document}

insira a descrição da imagem aqui

informação relacionada