有没有办法将标题中的彩色框对齐,并且标题和框之间没有白线,文本居中?我尝试了一些方法mdframed
,但框太高了。
\documentclass[9pt]{extarticle}
\usepackage[T1]{fontenc}
\usepackage{xcolor}
\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead{}
\chead{}
\rhead{\colorbox{black}
{\footnotesize\bfseries{\makebox[4.5em]
{\color{white}Article}}}
}
\renewcommand{\headrulewidth}{1pt}
\begin{document}
text
\end{document}
答案1
使用\fcolorbox
(from )并在该命令末尾xcolor
添加:%
\documentclass[9pt]{extarticle}
\usepackage[T1]{fontenc}
\usepackage{xcolor}
\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead{}
\chead{}
\rhead{\fcolorbox{black}{black}
{\footnotesize\bfseries{\makebox[4.5em]
{\color{white}Article}}}%
}
\renewcommand{\headrulewidth}{1pt}
\begin{document}
text
\end{document}