您能否告诉我如何更改该代码此链接 将章节标题放在徽标对面?我是 LaTeX 新手,非常感谢您提供建议。
例如:
- 第一页:
logo...............section
- 第二页:
section............logo
答案1
我通过以下方式解决了它:
'% section layout:
\setcounter{secnumdepth}{0}
\newcommand\sectionrule{%
\makebox[0pt][l]{\rule[-.25ex]{\linewidth}{1pt}}}
\newcommand\sectionformat[1]{
\sffamily\huge\color{darkred}
\sectionrule
\ifthenelse{\isodd{\thepage}}
{\MakeUppercase{#1}}
{\hfill\MakeUppercase{#1}}
}
\setkomafont{section}{\sectionformat}'