0% found this document useful (0 votes)
7 views1 page

Lipsum LaTeX Document Example

The document outlines a script for creating a LaTeX article that includes a title, author, date, and an abstract section. It utilizes the 'lipsum' package to generate placeholder text for the abstract. The script provides a structured format for producing a sample document with essential components.

Uploaded by

Ranjitha S R
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views1 page

Lipsum LaTeX Document Example

The document outlines a script for creating a LaTeX article that includes a title, author, date, and an abstract section. It utilizes the 'lipsum' package to generate placeholder text for the abstract. The script provides a structured format for producing a sample document with essential components.

Uploaded by

Ranjitha S R
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Program 2: Develop a script to create a document that displays the

sample Abstract/Summary

• \documentclass{article} — Specifies the type of document. "article" is used


for shorter documents like articles, papers, or short reports.

• \usepackage{lipsum} — Imports the "lipsum" package, which generates


dummy text .

• \title{Sample Document with Abstract/Summary} — Defines the title of the


document.

• \author{Name} — Specifies the author's name.

• \date{\today} — Sets the date to the current date automatically. You can also
specify a custom date.

• \begin{document} — Starts the content of the document. Everything after


this will appear in the final output.

• \maketitle — Generates the title section using the defined title, author, and
date.

• \begin{abstract} — Starts the abstract section, typically a brief summary of


the document.

• \lipsum[1] —dummy text. Replace this with your actual abstract.

• \end{abstract} — Ends the abstract section.

• \end{document} — Marks the end of the document.

You might also like