好的,现在我有两个问题:首先是 MWE
\documentclass[12pt,reqno]{amsart}
%
\usepackage{graphicx}
%for Abc format title and author list
\makeatletter
\g@addto@macro{\endabstract}{\@setabstract}
\newcommand{\authorfootnotes}{\renewcommand\thefootnote{\@fnsymbol\c@footnote}}%
\makeatother
%for multi-line footnote format
\makeatletter
\renewcommand\@makefntext[1]{\leftskip=2em\hskip-2em\@makefnmark#1}
\makeatother
%for left flushed section titles
\makeatletter
\def\specialsection{\@startsection{section}{3}%
\z@{\linespacing\@plus\linespacing}{.5\linespacing}%
% {\normalfont\centering}}% DELETED
{\normalfont}}% NEW
\def\section{\@startsection{section}{1}%
\z@{.7\linespacing\@plus\linespacing}{.5\linespacing}%
% {\normalfont\scshape\centering}}% DELETED
{\normalfont\scshape}}% NEW
\makeatother
%for formating subsection titles
\usepackage[parfill]{parskip}
\makeatletter
\def\subsubsection{\@startsection{subsubsection}{3}%
\z@{.5\linespacing\@plus.7\linespacing}{.1\linespacing}%
{\normalfont\itshape}}
\makeatother
\begin{document}
\section{Maya Devi Temple, Lumbini}\label{k}
\begin{figure}
\begin{tabular}{cc}
\includegraphics[width=.4\textwidth]{1} &
\includegraphics[width=.4\textwidth]{2}\\
\includegraphics[width=.4\textwidth]{3} &
\includegraphics[width=.4\textwidth]{4}
\end{tabular}
\caption{Maya Devi Temple is an ancient Buddhist temple situated at the UNESCO World Heritage Site of Lumbini, Nepal. It is the main temple at Lumbini, a site traditionally considered the birthplace of Gautama Buddha. The temple stands adjacent to a sacred pool (known as Puskarni) and a sacred garden. The archaeological remains at the site were previously dated to the third-century BCE brick buildings constructed by Ashoka the Great.[1] A sixth-century BCE timber shrine was discovered in 2013.[2]}
\end{figure}
\end{document}
现在第一个问题是附录标题位于图表下方,看起来很愚蠢。另外
章节标题是大写的(全部),我希望它采用 Abc 形式,即不是 MAYA DEVI TEMPLE 而是“Maya devi temple”
救命!!!:s
我尝试了以下方法但没有帮助:
\makeatletter
\def\specialsection{\@startsection{section}{3}%
\z@{\linespacing\@plus\linespacing}{.5\linespacing}%
% {\normalfont\centering}}% DELETED
{\normalfont}}% NEW
\def\section{\@startsection{section}{1}%
\z@{.7\linespacing\@plus\linespacing}{.5\linespacing}%
% {\normalfont\scshape\centering}}% DELETED
{\normalfont\scshape}}% NEW
\makeatother
答案1
中的章节标题amsart
采用小写字母,而不是大写字母。可以使用以下解决方法覆盖此问题:
\section{\textnormal{Maya Devi Temple, Lumbini}}\label{k}
提到的其他问题已被报告解决。