Wie ändere ich die Beschriftungseinstellungen für den Anhang?

Wie ändere ich die Beschriftungseinstellungen für den Anhang?

Ich schreibe eine Arbeit mit Anhang (für eine Masterarbeit) und möchte, dass die Überschriften für die Arbeit linksbündig ausgerichtet sind. Für den Anhang sollen die Überschriften jedoch zentriert sein. Für die Arbeit habe ich in der Einleitung folgendes Setup verwendet:

\captionsetup{format=plain, labelfont={bf,it},textfont=it,skip=6pt,font=small, singlelinecheck=off}

Für den Anhang möchte ich jedoch, dass die Beschriftungen zentriert sind. Ich habe versucht, den Befehl zum Einrichten der Beschriftungen wie folgt zu erneuern:

\renewcommand\captionsetup{format=plain, labelfont={bf,it},textfont=it,skip=6pt,font=small, singlelinecheck=on}

Also schalte ich Singlelinecheck auf „Ein“. Aber es funktioniert nicht.

Wie funktioniert das? Ich bin ziemlich neu bei LaTeX, also verstehe ich vielleicht einfach den Renew-Befehl nicht?

Vielen Dank im Voraus!

Ich habe meinen Bericht in eine Hauptdatei aufgeteilt und in diese Datei alle Kapitel eingefügt, die separate Dateien sind. Vielleicht ist das nicht möglich, wenn ich es so mache? Dies ist (eine Zusammenfassung) der Hauptdatei:

\documentclass[10pt, mathptmx,a4paper,twoside]{article}
\usepackage{Packages}
\setlength\columnsep{20pt}
\author{Anne Derks\,}
\title{Master Thesis Sandwich Panels}
\input{Input_titlepage}
\captionsetup{format=plain, labelfont={bf,it},textfont=it,skip=6pt,font=small, singlelinecheck=off}

\begin{document}
\include{Titlepage}
\setcounter{page}{0}
\pagenumbering{roman}
\newpage
\begin{flushleft}
\large\textbf{PREFACE}\\
\addcontentsline{toc}{section}{PREFACE}
\normalsize
\lipsum[1]
\end{flushleft}

\newpage
\renewcommand{\contentsname}{CONTENTS}
\tableofcontents

\newpage
\setcounter{page}{0}
\pagenumbering{arabic}  
\end{flushleft}
 
\vspace{60pt}

\begin{flushleft}
\textbf{ABSTRACT:} 
\hfill 
\\
\vspace{12pt}

\textbf{KEYWORDS:} \hspace{1mm} Sandwich Panels, Geometric Non-Linear Buckling, Connection Failure.
\end{flushleft}
 \vspace{24pt}

\begin{multicols}{2}
\section{INTRODUCTION}\label{section:Introduction}
\input{Chapters/Chapter1_Introduction}  

\section{THEORETICAL BACKGROUND}\label{section:Literature}
\input{Chapters/Chapter2_Literature}            

\section{ANALYTICAL MODEL}\label{section:Analytical_model}
\input{Chapters/Chapter3_AnalyticalModel}   

\renewcommand\refname{REFERENCES}
\bibliographystyle{unsrt}
\bibliography{references}
\addcontentsline{toc}{section}{REFERENCES}
\end{multicols}

\newpage
\appendix
\addcontentsline{toc}{section}{APPENDIX}
\counterwithin{figure}{section}
\counterwithin{table}{section}

\captionsetup{format=plain, labelfont={bf,it},textfont=it,skip=6pt,font=small, singlelinecheck=on}

\newpage
\section{Drawings Cembrit Cetris Basis tests}
\label{Appendix:Cembrit}
\input{Appendices/AppendixH_Cembrit_drawings}

\captionsetup{format=plain, labelfont={bf,it},textfont=it,skip=6pt,font=small, singlelinecheck=off}

\newpage
\section{Results sandwich panel test}
\input{Appendices/AppendixL_Panel_results}

\end{document}

Antwort1

\renewcommandwird zum Erneuern von Befehlen verwendet. In Ihrem Fall möchten Sie den Befehl nicht erneuern, sondern anwenden. Daher \renewcommandsollte das Löschen kein Problem sein.

Eine mehrfache Verwendung in Ihrem Dokument ist möglich \captionsetup, wie Sie im folgenden MWE sehen können:

\documentclass{article}
\usepackage{graphicx,subcaption}
\captionsetup{format=plain, labelfont={bf,it},textfont=it,skip=6pt,font=small,singlelinecheck=off}% Setup for main part
\begin{document}
\begin{figure}% figure in main part
    \centering \includegraphics[width=2cm]{example-image-duck} \caption{First caption.}
\end{figure}
% adapt setup for appendix:
\captionsetup{format=plain, labelfont={bf,it},textfont=it,skip=6pt,font=small,singlelinecheck=on}
\begin{figure}% figure in appendix
    \centering \includegraphics[width=2cm]{example-image-duck} \caption{Second caption.}
\end{figure}
% adapt setup for second part of appendix:
\captionsetup{format=plain, labelfont={bf,it},textfont=it,skip=6pt,font=small,singlelinecheck=off}
\begin{figure}% figure in second part of appendix
    \centering \includegraphics[width=2cm]{example-image-duck} \caption{Third caption.}
\end{figure}
\end{document}

Ergebnis

Nach Kommentar bearbeiten

Tut mir leid, es ist ziemlich schwierig, aus Ihrem Code etwas Sinnvolles herauszuholen, da ich nicht alle Ihre Dateien habe. Selbst wenn ich versuche, Ihren Code auf ein MWE zu reduzieren, funktioniert er immer noch.

\documentclass[10pt, mathptmx,a4paper,twoside]{article}
\usepackage{subcaption,lipsum,multicol,graphicx}

\captionsetup{format=plain, labelfont={bf,it},textfont=it,skip=6pt,font=small, singlelinecheck=off}

\begin{document}
 
\begin{figure} %%%%%%%%%%%%%%%%%%%%% HERE %%%%%%%%%%%%%%%%%%%%%
    \centering
    \includegraphics[height=2cm]{example-image-a}
    \caption{First image}
\end{figure}
\begin{multicols}{2}
\section{INTRODUCTION}\label{section:Introduction}
\lipsum[1]

\section{THEORETICAL BACKGROUND}\label{section:Literature}
\lipsum[1]         

\section{ANALYTICAL MODEL}\label{section:Analytical_model}
\lipsum[1]

\end{multicols}

\newpage
\appendix
\addcontentsline{toc}{section}{APPENDIX}
\counterwithin{figure}{section}
\counterwithin{table}{section}

\captionsetup{format=plain, labelfont={bf,it},textfont=it,skip=6pt,font=small, singlelinecheck=on}


\newpage
\section{Drawings Cembrit Cetris Basis tests}
\label{Appendix:Cembrit}
\lipsum[1]
\begin{figure} %%%%%%%%%%%%%%%%%%%%% HERE %%%%%%%%%%%%%%%%%%%%%
    \centering
    \includegraphics{example-image-a}
    \caption{First image}
\end{figure}

\captionsetup{format=plain, labelfont={bf,it},textfont=it,skip=6pt,font=small, singlelinecheck=off}
\begin{figure} %%%%%%%%%%%%%%%%%%%%% HERE %%%%%%%%%%%%%%%%%%%%%
    \centering
    \includegraphics{example-image-a}
    \caption{First image}
\end{figure}
\newpage
\section{Results sandwich panel test}
\lipsum[1]

\end{document}

Ergebnis

verwandte Informationen