Text Formatting ⇒ Text alignment
-
- Posts: 3
- Joined: Mon Jan 11, 2021 11:03 pm
Text alignment
I am new to latex.
My latex lines :
\begin{rubric}{References}
%{\large Available on Request\par}
1. Dr. ABC
\\ Associate Professor, Mechanical, Engineering Department \par
%\\ Head of EGE group, Mechanical, Industrial and Aerospace Engineering,\par
\\ ABC University, Montréal, Canada. \par
\\ \makefield{\faEnvelope[regular]}{\texttt{abc@univ.com}}
\end{rubric}
I am getting output like below RIGHT SIDE ALIGNMENT
......................................................... 1. Dr. ABC
Associate Professor, Mechanical, Engineering Department
............................ABC University, Montréal, Canada
...................................................abc@univ.com
I don't know why it s coming like this.
But I want LEFT SIDE alignment like below
1. Dr. ABC
Associate Professor, Mechanical, Engineering Department
ABC University, Montréal, Canada
abc@univ.com
Please guide me on how to make it left side alignment.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Text alignment

-
- Posts: 3
- Joined: Mon Jan 11, 2021 11:03 pm
Text alignment
\begin{rubric}{References}
%{\large Available on Request\par}
1. Dr. ABC
\\ Associate Professor, Mechanical, Engineering Department \par
%\\ Head of EGE group, Mechanical, Industrial and Aerospace Engineering,\par
\\ ABC University, Montréal, Canada. \par
\\ \makefield{\faEnvelope[regular]}{\texttt{abc@univ.com}}
\end{rubric}
CURRENT OUTPUT: RIGHT SIDE ALIGNMENT
......................................................... 1. Dr. ABC
Associate Professor, Mechanical, Engineering Department
............................ABC University, Montréal, Canada
...................................................abc@univ.com
REQUIRED OUTPUT: LEFT SIDE ALIGNMENT
like below
1. Dr. ABC
Associate Professor, Mechanical, Engineering Department
ABC University, Montréal, Canada
abc@univ.com
Please guide me on how to make it left side alignment.
Text alignment
Well, I don't know which class or package defines a rubric environment, but I'd try
\raggedright
just after beginning that rubric environment.KR
Rainer