이 질문은 하위 섹션을 중앙에 맞추지 않고 모든 섹션(챕터 포함)을 중앙에 맞추는 방법에 관한 것입니다.
여기에서 묻는 모든 관련 질문을 찾아봤지만 내 질문과 중복되는 사람을 찾지 못했습니다. 나는 모든 헤드라인을 중앙에 배치하는 제안된 솔루션을 시도했습니다. 그런데 헤드라인을 부분적으로 중앙에 맞추는 방법을 모르겠습니다.
내 코드에 도움이 필요합니다. 정말 감사합니다.
\documentclass[a4paper]{article}
\usepackage{mathtools}
\usepackage{colonequals}
\usepackage{mathrsfs}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{amsmath}`enter code here`
\usepackage{natbib}
\usepackage{bm}
\usepackage{mathdots}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{rotating, threeparttable, booktabs}
\usepackage{color}
\usepackage{dcolumn}
\usepackage{type1cm}
%\usepackage[margin=1.2in]{geometry}
%\usepackage{times}
\captionsetup{font=sf,font=small}
\setlength{\bibsep}{2pt}
\captionsetup{font=sf,font=small,labelfont=bf,textfont=bf}
\theoremstyle{plain}
\newtheorem{thm}{Theorem}[section]
\newtheorem{lem}[thm]{Lemma}
\newtheorem{cor}[thm]{Corollary}
\newtheorem{pro}[thm]{Proposition}
\newtheorem{assump}{Assumption}
\newtheorem{axiom}{Axiom}
\newtheorem{conj}{Conjecture}
\theoremstyle{definition}
\newtheorem{defi}[thm]{Definition}
\newtheorem{exam}[thm]{Example}
\newtheorem{exer}{Exercise}
\newtheorem*{rem}{Remark}
\newtheorem*{notation}{Notation}
%\renewcommand{\proofname}{\textbf{\textup{Proof}}}
\renewcommand*{\qedsymbol}{$\blacksquare$}
%\renewcommand{\baselinestretch}{2}
\renewcommand{\textfraction}{0.15}
\renewcommand{\topfraction}{0.85}
\renewcommand{\bottomfraction}{0.65}
\renewcommand{\floatpagefraction}{0.60}
%\renewcommand\familydefault{\sfdefault}
\newcommand\laref{\fontsize{12}{20pt}\selectfont \smallskip\noindent%
\hangindent=19pt}
\newcommand\xitem{\par\noindent\hangindent=8mm}
% To increase line space in footnote.
%
\let\oldfootnote\footnote
\renewcommand\footnote[1]{\oldfootnote{%
\renewcommand\baselinestretch{1.5}%
\large\scriptsize\ignorespaces#1}}
\addtolength{\footnotesep}{1pt}
%centering all titles
\usepackage{sectsty}
\sectionfont{\centering}
답변1
편도 sectsty
:
\documentclass{article}
\usepackage{sectsty}
\sectionfont{\centering}
\begin{document}
\section{Some section}
\subsection{A subsection}
\end{document}
sectsty
또한 모든 섹션에 적용되는 제안 \chapterfont
(그러나 article
수업 중에는 없음 chapter
) \subsectionfont
등도 제공됩니다.\allsectionsfont
와 함께 titlesec
:
\documentclass{article}
\usepackage{titlesec}
\titleformat*{\section}{\Large\bfseries\centering}
\begin{document}
\section{Some section}
\subsection{A subsection}
\end{document}