1

我是 LateX 的新手,但我开始掌握它,但我遇到了一些问题。我想在标题中包含部分编号,但我不知道该怎么做。我正在使用精美的包并在文章类中写作。我已经看到一些解决方案可以在 Book 设置中完成这项工作,但我更喜欢 article 类。

\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage[danish]{babel}
\usepackage{graphicx}
\usepackage{graphics}
\setlength{\parindent}{0in}
\usepackage{subfigure}
\usepackage{a4wide}
\usepackage{pifont}
\usepackage{float}
\parindent=0pt
\usepackage{eso-pic,fix-cm,ae,aecompl,ifthen,color}
\usepackage{fancyhdr}
\pagestyle{fancy}
%
%
%
\begin{document}
%
\fancyhead[C]{ \thesection}
\fancyhead[L]{}
\fancyhead[R]{}
4

1 回答 1

0

以下是我使用的部分标题。希望,这很有帮助。

\documentclass[12pt,a4paper]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[danish]{babel}

\usepackage{scrpage2}


\begin{document}
\pagestyle{scrheadings}
\clearscrheadfoot                                   % clear default settings
\setheadsepline{1.5pt}                              % seperator line between heading and text

\newcommand{\headsection}{\thesection\ \leftmark}   % <number of section> <section name>
% \newcommand{\headsection}{Section \thesection}    % Section <number of section>

\renewcommand{\sectionmark}[1]{ \markboth{#1}{} }
\lohead{\headsection}                               % actual section 
\ohead[]{\pagemark}                                 % page number



\section{Introduction}
\newpage
\subsection{subsection 1}
\newpage

\section[Title of section in heading]{Main}
\newpage
\subsection{another subsection}
\newpage

\end{document}
于 2013-05-23T09:31:53.483 回答