How to remove date from my LaTex Title Page

  • Context: LaTeX 
  • Thread starter Thread starter snshusat161
  • Start date Start date
  • Tags Tags
    Latex
Click For Summary

Discussion Overview

The discussion revolves around how to remove the date from a LaTeX title page. Participants are sharing code snippets and troubleshooting suggestions related to formatting in LaTeX documents.

Discussion Character

  • Technical explanation, Conceptual clarification, Debate/contested

Main Points Raised

  • One participant shares their LaTeX code for a title page, including the use of the \today command to display the current date.
  • Another participant suggests removing the \today command from the title.tex file as a potential solution to the issue of displaying the date.
  • A third participant acknowledges having overlooked the suggestion to remove \today, indicating a moment of realization about the solution.
  • A later reply comments on the commonality of missing such details in coding.

Areas of Agreement / Disagreement

Participants appear to agree on the suggestion to remove the \today command, but the discussion does not reach a consensus on any additional solutions or methods for customizing the title page.

Contextual Notes

Limitations: The discussion does not explore other potential methods for removing the date or customizing the title page further, nor does it address any dependencies on specific LaTeX packages or document classes.

snshusat161
Messages
213
Reaction score
1
Here is my code from my tex file

Code:
\documentclass[12pt,a4paper]{article}
\usepackage[pdftex]{graphicx}
\usepackage{amsmath}
\usepackage[T1]{fontenc}
\usepackage{listings}
\lstset{language=C}
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}
\begin{document}
\input{./title.tex}

and here is the code for my 'title.tex' file


Code:
\begin{titlepage}
\begin{center}
% Upper part of the page
\textsc{}\\[1.8cm]
\textsc{\large Synopsis On}\\[0.5cm]
% Title
\HRule \\[0.4cm]
{ \huge \bfseries ********}\\[0.4cm]
\HRule \\[0.5cm]
\textsc{\large Done At}\\[0.8cm]
\includegraphics[width=0.25\textwidth]{./logo}\\[0.4cm]
\textsc{\small **************}\\[1.5cm]
% Author and supervisor
\begin{minipage}{0.4\textwidth}
\begin{flushleft} \large
\emph{Submitted By:}\\
\textsc{*********}
\end{flushleft}
\end{minipage}
\begin{minipage}{0.4\textwidth}
\begin{flushright} \large
\emph{Guided By:} \\
\textsc{***********}
\end{flushright}
\end{minipage}
\vfill
% Bottom of the page
{\large \today}
\end{center}
\end{titlepage}
 
Physics news on Phys.org
Have you tried removing the \today from title.tex?
 
yes, i have already seen that 5 hours ago. I was silly. i didn't see it on the first place.
 
Easy to miss stuff like that ;)
 

Similar threads

  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 1 ·
Replies
1
Views
8K
  • · Replies 2 ·
Replies
2
Views
4K