我正在创建简历,并且希望简历的某个部分(如“出版物”)有一条长水平线一直延伸到右页边距的末尾。
我已经通过一些非常混乱的编码来实现这一点:
\textbf{Publications~}\noindent {\color{black} \rule{16cm}{0.3mm}}
但是调整 \rule 边距以适应每个部分确实很繁琐。为什么像这样的东西不能自动填充页面宽度的行?-
\textbf{Publications~}\noindent {\color{black} \rule{\hfill}{0.3mm}}
我查看了其他几个帮助文件,但什么也没找到。这是我第一次提问,感谢您的反馈。[其他信息:]
\documentclass[12pt]{article}
% Configure page margins with geometry
\usepackage[top = .8cm, left = 1.4cm, right = 1.4cm, bottom = 1.8cm]{geometry}
% Colors Used:
\usepackage{color}
\usepackage[dvipsnames]{xcolor}
\definecolor{gray}{HTML}{5D5D5D}
编辑:
谢谢@Bernard,解决方案很简单:
\textbf{Publications~}\noindent \hrulefill
答案1
使用 就足够了\hrulefill
。但是在这种情况下,我将使用 定义 (未编号) 的特殊格式\section
,titlesec
其中包含\titlerule
用于此的命令:
\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[dvipsnames, svgnames]{xcolor}
\usepackage[explicit]{titlesec}
\titleformat{\section}{\large\bfseries}{}{0pt}{\textcolor{SteelBlue!80}{#1}\enspace \color{LightSteelBlue!50}\titlerule[1ex]}[]
\begin{document}
\section{Publications}
\end{document}