有没有办法让我的摘要标题居中(水平)?我正在使用
\altchapter{\centering Abstract}
但它不起作用。
\documentclass[12pt]{ucalgthes1}% similar to github.com/markwgirard/ucalgarythesis
\usepackage[letterpaper,top=1in, bottom= 1in, left= 1in, right= 1in]{geometry}
% to make chapter titles left aligned
\usepackage{titlesec}
\newcommand*{\justifyheading}{\raggedright}
\titleformat{\chapter}[display]
{\normalfont\large\bfseries\justifyheading}{\chaptertitlename\ \thechapter} {20pt}{\large}
\begin{document}
\altchapter{\bf {Abstract}}
\end{document}
答案1
使用您定义的开关切换方向。以下示例使用注释中提到的类。
如果你不需要使用此模板,请不要使用它。请参阅https://en.wikibooks.org/wiki/LaTeX/Scientific_Reports
\documentclass[12pt]{ucalgarythesis}
% to make chapter titles left aligned
\usepackage{titlesec}
\newcommand*{\justifyheading}{\raggedright}
\titleformat{\chapter}[display]
{\normalfont\large\bfseries\justifyheading}{\chaptertitlename\ \thechapter} {20pt}{\large}
\begin{document}
\renewcommand*{\justifyheading}{\centering}
\chapter{Abstract}
\renewcommand*{\justifyheading}{\raggedright}
\chapter{Alpaca}
\end{document}