答案1
如果希望整套章节号+章节标题右对齐,请使用专用命令,\filleft
在第二个强制参数中:\titleformat
\documentclass{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{titlesec, blindtext, color}
\definecolor{gray75}{gray}{0.75}
\newcommand{\hsp}{\hspace{20pt}}
\titleformat{\chapter}[hang]{\filleft\Huge\bfseries}{\thechapter\hsp\textcolor{gray75}{|}\hsp}{0pt}{\Huge\bfseries}
\begin{document}
\chapter{Introdução}
\section{As Doenças Cerebrovasculares}
\blindtext
\end{document}
答案2
以下可能会产生您想要的结果:
\documentclass[]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{titlesec, blindtext, color, pbox}
\definecolor{gray75}{gray}{0.75}
\newcommand*{\hsp}{\hspace{20pt}}
\newcommand{\titlepbox}[1]{\pbox[t]{0.7\textwidth}{#1}}
\titleformat{\chapter}[block]{\Huge\bfseries}{\hfill\thechapter\hsp\textcolor{gray75}{|}\hsp}{0pt}{\Huge\bfseries\titlepbox}
\begin{document}
\chapter{Foo}
\blinddocument
\end{document}
您可以调整命令(例如在 前面\titlepbox
插入\raggedleft
或)以获得更多选项。\raggedright
#1
0.7\textwidth
还可以更改标题(不包括数字和垂直线)的最大宽度(当前为)。
控件[t]
的垂直放置——[b]
将使数字底部与标题对齐。