pandabier
28-12-2013, 23:23
hallo allerseits,
in meinem dokument werden mehrere artikel zusammengeführt und als einzelne kapitel erfasst. am ende eines jeden kapitels gibt es einen appendix, der durch 1.A und 1.B kenntlich gemacht wird.
1 One Chapter
1.1 Section
1.2 Section
1.2.1 Subsection
1.A Appendix A
1.B Appendix B
2 Another Chapter
3. Another Chapter
hierfür musste ich den code entsprechend anpassen (mit setcounter). das inhaltsverzeichnis wird korrekt erstellt, leider sind die pdf bookmarks aber nicht richtig: 2 Another Chapter wird 1.B untergeordnet. das problem verschwindet, wenn ich keine subsections drin habe. allerdings kann ich das problem nicht beheben. hat jmd einen tipp? würde mich sehr freuen!
\documentclass[10pt,a4paper]{scrreprt}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{classicthesis}
\begin{document}
\pagenumbering{roman}
\pagestyle{plain}
\renewcommand{\thefootnote}{\arabic{footnote}}
\cleardoublepage
\tableofcontents
%************************************************* ******
\pagenumbering{arabic}
\cleardoublepage
\chapter{One Chapter 1}
\section{Section 1.1}
\section{Section 1.2}
\subsection{Subsection 1.2.1}
\setcounter{section}{0} %Nummerierung der Appendix-Sections mit Buchstaben
\renewcommand{\thesection}{\arabic{chapter}.\Alph{ section}} %Nummerierung der Appendix-Sections mit Buchstaben
\section{Appendix 1.A}
\section{Appendix 1.B}
%************************************************* ******
\renewcommand{\thesection}{\arabic{chapter}.\arabi c{section}}
\cleardoublepage
\chapter{Another Chapter 2}
\chapter{Another Chapter 3}
\end{document}
in meinem dokument werden mehrere artikel zusammengeführt und als einzelne kapitel erfasst. am ende eines jeden kapitels gibt es einen appendix, der durch 1.A und 1.B kenntlich gemacht wird.
1 One Chapter
1.1 Section
1.2 Section
1.2.1 Subsection
1.A Appendix A
1.B Appendix B
2 Another Chapter
3. Another Chapter
hierfür musste ich den code entsprechend anpassen (mit setcounter). das inhaltsverzeichnis wird korrekt erstellt, leider sind die pdf bookmarks aber nicht richtig: 2 Another Chapter wird 1.B untergeordnet. das problem verschwindet, wenn ich keine subsections drin habe. allerdings kann ich das problem nicht beheben. hat jmd einen tipp? würde mich sehr freuen!
\documentclass[10pt,a4paper]{scrreprt}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{classicthesis}
\begin{document}
\pagenumbering{roman}
\pagestyle{plain}
\renewcommand{\thefootnote}{\arabic{footnote}}
\cleardoublepage
\tableofcontents
%************************************************* ******
\pagenumbering{arabic}
\cleardoublepage
\chapter{One Chapter 1}
\section{Section 1.1}
\section{Section 1.2}
\subsection{Subsection 1.2.1}
\setcounter{section}{0} %Nummerierung der Appendix-Sections mit Buchstaben
\renewcommand{\thesection}{\arabic{chapter}.\Alph{ section}} %Nummerierung der Appendix-Sections mit Buchstaben
\section{Appendix 1.A}
\section{Appendix 1.B}
%************************************************* ******
\renewcommand{\thesection}{\arabic{chapter}.\arabi c{section}}
\cleardoublepage
\chapter{Another Chapter 2}
\chapter{Another Chapter 3}
\end{document}