I'm trying to edit a block of text to look like this:
But then I get the following output,
It gets a weird indentation. I tried to use command \setlength{\parindent}{0pt} at the beginning of the document and changing justification position from rl for another options like cc or ll, but got the same output. Also tried to use the \large command outside the brackets insted of outside, but still no difference. :/
Is there anything else I can do? And why does this happens?
Thanks in advance.
Edit: Here is the an example code with the issue:
\documentclass{article}
\setlength{\parindent}{0pt}
\usepackage[margin=1.25in]{geometry}
\usepackage{amsmath,amssymb}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage[utf8]{inputenc}
\begin{document}
\textbf{\large Web access:}\href{}{}\\[\baselineskip]
\begin{tabular}{rl}
\textbf{\large Key Words:} & Nonlinear Dynamics \\
& Isogeometric Analysis\\
& Porosity-dependent properties\\
& Functionally graded materials\\
& Non-classical continuum elasticity\\
\end{tabular}\\[\baselineskip]
\textbf{\large General subject:}\\[\baselineskip]
\end{document}



\noindentbefore\begin{tabular}to avoid the paragraph indent. – Steven B. Segletes Jun 14 '21 at 14:34