Answers for "display vertical line latex"

1

latex matrix vertical line

left[
	begin{array}{cccc|c}
		1 & 0 & 3 & -1 & 0 \
		0 & 1 & 1 & -1 & 0 \
		0 & 0 & 0 & 0 & 0 \
	end{array}
right]
Posted by: Guest on March-19-2021
0

how to put vertical line in the middle of the page latex

documentclass[a4paper]{report}

begin{document}

    begin{minipage}{0.3textwidth}
        Large{textbf{Information}}
    end{minipage}
    rule[-400pt]{1.5pt}{600pt}
    hspace*{0.05textwidth} % Whitespace between the vertical line and title page text
    begin{minipage}{0.5textwidth}
        textbf{Author :} \
        Name \
        [3cm]
        textbf{Subject :} \
        Title of the subject
    end{minipage}

   pagestyle{empty} % Removes page numbers

end{document}
Posted by: Guest on April-06-2021

Browse Popular Code Answers by Language