附录编号格式:附录(字母)编号后使用破折号代替点

附录编号格式:附录(字母)编号后使用破折号代替点

我怎样才能将附录编号后的点(A.)改为破折号(A-)?

平均能量损失

\documentclass[a4paper,12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{standalone}

\usepackage{wallpaper}
\usepackage{color}
\definecolor{darkblue}{RGB}{6,0,111}
\definecolor{red}{RGB}{255,0,0}
\definecolor{green}{RGB}{0,125,0}

\usepackage{indentfirst}
\setlength\parindent{1.25cm}

\usepackage{graphicx}
%\DeclareGraphicsExtensions{.jpg,.png}

\renewcommand*\contentsname{\centering ÍNDICE}
\usepackage{titletoc}

\setcounter{secnumdepth}{6}
\setcounter{tocdepth}{6}

\titlecontents{section}[0em]{\medskip\bfseries}
{\thecontentslabel.\enspace} %numbered
{} %numberless
{\titlerule*[1.5mm]{.}\contentspage}

\titlecontents{subsection}[0em]{\smallskip}
{\thecontentslabel.\enspace} %numbered
{} %numberless
{\normalfont\titlerule*[1.5mm]{.}\contentspage}

\titlecontents{subsubsection}[0em]{\smallskip\bfseries}
{\thecontentslabel.\enspace} %numbered
{} %numberless
{\normalfont\titlerule*[1.5mm]{.}\contentspage}

\titlecontents{paragraph}[0em]{\smallskip}
{\thecontentslabel.\enspace} %numbered
{} %numberless
{\normalfont\titlerule*[1.5mm]{.}\contentspage}

\titlecontents{subparagraph}[0em]{\smallskip\itshape}
{\thecontentslabel.\enspace} %numbered
{} %numberless
{\normalfont\titlerule*[1.5mm]{.}\contentspage}

\usepackage{enumitem}
\usepackage{multirow}
\usepackage{booktabs}

\usepackage{setspace}
\singlespacing

\usepackage{units}

\usepackage{nicefrac}

\usepackage[fleqn]{amsmath}
\makeatletter
\g@addto@macro\normalsize{%
    \setlength\abovedisplayskip{0mm}
    \setlength\belowdisplayskip{5mm}
    \setlength\abovedisplayshortskip{0mm}
    \setlength\belowdisplayshortskip{0mm}
}
\makeatother

\usepackage{txfonts}

\pagestyle{myheadings}
\makeatletter
\def\@oddhead{{\slshape\rightmark}\hfil\footnotesize\thepage}%
\makeatother

\usepackage[bottom=2cm,top=3cm,left=3cm,right=2cm]{geometry}
\usepackage{titling}
\usepackage{titlesec}
\titlelabel{\thetitle.\quad}
%\titlelabel{\theparagraph.\quad}
\titleformat*{\section}{\normalsize\bfseries\uppercase}
\titleformat*{\subsection}{\normalsize\uppercase}
\titleformat*{\subsubsection}{\normalsize\bfseries}
\titleformat{\paragraph}[hang]{\normalsize}{\theparagraph.}{1em}{}
\titleformat{\subparagraph}[hang]{\normalsize\itshape}{\thesubparagraph.}{1em}{}
\begin{document}
    \appendix
    \section{INTRODUCTION TO DYNAMICS}

    blah blah blah blah blah blah blah

\end{document}

提前致谢!

答案1

您可以插入指令

\titlelabel{\thetitle\ - }

之后立马\appendix

如果你想要一个短破折号而不是简单的破折号,说明应该是

\titlelabel{\thetitle\ -- }

相关内容