How to add a Signature line and Space in Latex
If you need to add a signature space and line, just create a table of one column. You can do it without creating a table too, however, it helps if you need additional customization in the left or right side.
In the following code, \vspace{25mm}
is used to have a space for the signature. You can customize the number according to your need.
Later, \hrulefill
is used to fill up the size of the column with a horizontal line. Here, I used $2.5$ inches. Customize it based on your need.
\vspace{25mm}
\begin{tabular}{@{}p{2.5in}@{}}
\hrulefill \\
Shanto Roy \\
University of Houston
\end{tabular}
If you want to add a date in thr right side, just add two extra columns in the table: the first one to have extra space in the middle, and the last column includes the date.
\vspace{25mm}
\begin{tabular}{@{}p{2.5in}p{2in}p{2in}@{}}
\hrulefill && Date: 17 February, 2022\\
Shanto Roy &&\\
University of Houston
\end{tabular}
That’s all, cheers!
Latex-related Posts
You can find a comprehensive list of Latex resources in the following post:
If you are a new Latex user, check out this post: 20 Most Common Mistakes Made by New Latex Users
You can find all Latex
oriented posts of mine in: https://shantoroy.com/categories/#latex
- How to write an algorithm in Latex
- How to add subfigure in Latex
- Add Copyright Notice and Conference Name in IEEE Conference Template
- Preparing Tables for Publication and Documentation in Latex
- How to Write Matrix with Row/Column Labels in Latex
- How to Collaboratively Write a Paper using Overleaf Latex Platform
- Itemize, Enumerate, and To-do-list in Latex
- Latex Table for Survey in IEEE two-column format
- Line Plotting using Latex PGFPlots
- How to Create Bar Charts using Latex PGFPlots
- How to add Codes in Latex:
listings
package for code documentation - Bibliography management with Bibtex in Latex
- Creating Multiple Line plots from CSV file using Latex Tikz and PGFPlot
- How to Draw a Literature Survey Taxonomy Tree in Latex
- How to Convert Python Matplotlib Plots to Latex Plots (Easiest Way) for Academic Papers
Leave a comment