如何在文本之间画两条线,如图所示。这是我的代码
\documentclass{article}
\thispagestyle{empty}
\usepackage{lipsum}
\begin{document}
\noindent\rule[0.5ex]{\linewidth}{1pt}
Algorithm Use iteration to find general solution
\noindent\rule[0.5ex]{\linewidth}{1pt}
fator $a$,$b$
$y=a+bx$
\noindent\rule[0.5ex]{\linewidth}{1pt}
\end{document}
答案1
我可以建议一个替代方案吗?使用algorithmic
包,您可以在此处找到更多信息算法。生成了两个图像:一个来自您的代码,另一个是基于 OP 图像的示例。
\documentclass[10pt,a4paper]{article}
\usepackage{algorithmic}
\usepackage{algorithm}
\begin{document}
% Your code
\noindent\rule[0.5ex]{\linewidth}{1pt}
Algorithm Use iteration to find general solution
\noindent\rule[0.5ex]{\linewidth}{1pt}
factor $a$,$b$
$y=a+bx$
\noindent\rule[0.5ex]{\linewidth}{1pt}
% alternative
\begin{algorithm}
\caption{Use iteration to find the general solution of the ODE in Example 1.4}\label{abc}
\begin{algorithmic}[1]
\STATE factor \textbf{a,b};
\STATE {\textbf {y:=a+b*x}};
\FOR {\textbf{n:=1:4 do write}}
\STATE {\textbf{y:=a+b*x-int(int(y,x),x)}}
\ENDFOR
\end{algorithmic}
\end{algorithm}
\end{document}