Как сделать, чтобы номер формулы (окружение
equation) располагался справа? Он почему-то вылазит слева в моем документе. Хотя здесь справа:
не знаю почему. Какая оптия за это отвечает?
Еще надо, чтобы номер секции (
section) было полужирным шрифтом. Само название секции делается полужирным так:
Код:
\section{\bf Секция}
но на номер это не влияет. Надо это сделать с минимальными усилиями, чтобы все остальные настройки не слетели. В инете есть примеры использования дополнительных пакетов, но они дают совсем не то, что надо, а разобраться что за что отвечает не в состоянии.
Сам файл
Код:
%\documentclass[12pt,a4paper]{article}
\documentclass[a4paper,14pt]{amsart}
\topmargin=0mm
\oddsidemargin=2mm
\evensidemargin=2mm
\headheight=0mm
\headsep=0mm
\footskip=11mm
\textwidth=156mm
\textheight=231mm
\parindent=5mm
\renewcommand{\baselinestretch}{1.1}
\usepackage[russian]{babel}
\usepackage[all]{xy}
%\usepackage[all]{xy}
\usepackage{latexsym}
\usepackage{amssymb}
%\usepackage{amsfont}
\usepackage{amsmath}
%\usepackage{showkeys}
\usepackage{pifont}
\usepackage{fancyhdr}
\parindent=1cm
\newtheoremstyle{break}% name
{9pt}% Space above, empty = `usual value'
{9pt}% Space below
{\itshape}% Body font
{\parindent}% Indent amount (empty = no indent, \parindent = para indent)
{\bfseries}% Thm head font
{.}% Punctuation after thm head
{.5em}% Space after thm head: \newline = linebreak
{}% Thm head spec
\theoremstyle{break}
\renewenvironment{proof}{\par\textit{Доказательство.}}{\hfill $\qed$}
\newenvironment{solve}{\par\textbf{Решение.}}{\hfill $\qed$}
\renewenvironment{proof}{{\bfseries Proof}}{*something*}
\renewcommand{\emph}{\textbf}
\renewcommand{\baselinestretch}{1.2}
\newenvironment{comment}{}{}
%\usepackage{titlesec}
%\titleformat{\section}
% {\normalfont\fontsize{12}{15}\bfseries}{\thesection}{1em}{}
\newcommand{\ssec}[1]{\refstepcounter{subsection}\vspace{3pt}\par
\begin{center}
\textbf{\S\,\thesubsection. #1}
\end{center}
\par
\vspace{-0.4\baselineskip}}
%\usepackage{titlesec}
%\titleformat*{\section}{\LARGE\bfseries}
%\usepackage{sectsty}
%\sectionfont{\LARGE}
%\renewcommand{\thesubsection}{(\roman{subsection})}
\begin{document}
\footskip=30pt
\date{}
\thispagestyle{empty}
\pagestyle{empty} %очищаем стиль страницы
\pagestyle{fancy} %включаем пользовательский стиль
\fancyhf{}
\fancyfoot[C]{\fontsize{13}{15}\selectfont \thepage} %размер шрифта
%\fancyfoot[C]{\thepage}
%\fancyheadoffset{0mm}
%\fancyfootoffset{0mm}
\setlength{\headheight}{17pt}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\fancypagestyle{plain}{
\fancyhf{}
\rhead{\thepage}
}
\larger[1]
\section{\bf Секция}
\begin{equation}\label{eqvbn}
x= h(x,y)f_1(x,y),\qquad y= h(x,y)f_2(x,y)
\end{equation}
\end{document}