我想知道如何调整\rule
行上方的垂直间距以匹配行下方的垂直间距。我尝试使用针对类似问题提供的解决方案来解决这个问题hrulefill 垂直间距和parskip 小节标题间距,但它们似乎对我的问题不起作用。下面我提供了一段输出和可重现的代码,类似于我的文档中使用的代码。
以下是一些与我的类似的输出:
下面是我用来生成上述输出的代码:
\documentclass[letterpaper,11pt,oneside, notitlepage]{article}
\usepackage{relsize}
\begin{document} %starts document
\raggedright%prevents hyphenation, kick words that make line over full to next line
\par\noindent\rule{\textwidth}{0.4pt}
\textit{Technical Guidance Bulletin No. 18 – April 2019}
\vspace{.5ex}
\noindent
\relsize{2}{\textbf{Efficacy of Commercial-Scale Propagation of Native Baitfish in Arizona}}
\noindent\rule{\textwidth}{0.4pt}
\end{document}
任何帮助都将受到赞赏。
答案1
\Shortstack
它!
\documentclass[letterpaper,11pt,oneside, notitlepage]{article}
\usepackage{relsize,stackengine}
\begin{document} %starts document
\noindent
\setstackgap{S}{1.5ex}%
\setstackEOL{\\}%
\Shortstack[l]{
\rule{\textwidth}{0.4pt}\\
\textit{Technical Guidance Bulletin No. 18 – April 2019}\\
\parbox{\textwidth}{\relsize{2}\bfseries\raggedright
Efficacy of Commercial-Scale Propagation of Native Baitfish in Arizona}\\
\rule{\textwidth}{0.4pt}\\
}
\end{document}