Posts

Showing posts from July, 2025

overleaf 6

 \documentclass{article} \usepackage{multirow} \usepackage{caption} \begin{document} \title{LATEX TABLES} \author{student} \maketitle \section{Introduction} This topic will explain the steps to create the table and perform different functions in the table. Tables are an efficient way to represent the information and are often used in most documents or files. \subsection{Create a table} Creating tables in LaTeX is a little complicated compared to others, but the steps and the process to create a table from the basics will make it easier. \begin{table}[h!] \begin{center}     \begin{tabular}{|c||c||c|}     \hline     \multicolumn{3}{|c|}{Student Data} \\     \hline     Roll No & Name & Department \\     \hline     24MCA054 & Swetha & MCA \\     \hline     24MCA002 & Abarna & MCA \\     \hline     \multirow{3}{*}{24MCA004} & Anju   & MC...

overleaf 5

 \documentclass{article} \usepackage{graphicx} \title{Image} \author{Student} \date{July 2025} \begin{document} \maketitle \section{Introduction} In this section we are discussing about how to insert an image in LaTeX document. \subsection{Packages} LaTeX cannot manage images by itself. So we need to use the graphicx package. To use it, we include the following line in the preamble: \begin{verbatim} \usepackage{graphicx} \end{verbatim} The command `\graphicspath{{image/}}` tells LaTeX that the images are kept in a folder named `image` under the directory of the main document. The include graphics {universe} command is the one that actually includes the image in the document. Here `universe` is the name of the file containing the image without the extension. Then `universe.PNG` becomes `universe`. The file name of the image should not contain white spaces or multiple dots. It also provides a way to change the width, height, and position of the image. \begin{figure}     \ce...

overleaf 4

 \documentclass{article} \usepackage{enumitem} \newtheorem{definition}{definition} \begin{document} \section{Introduction} \subsection{1.Type of writing} \begin{itemize}     \item content writing     \item creative writing     \item  Travel writing \end{itemize} \subsection{1.1 Number of steps} \begin{enumerate}     \item First step     \item Second step     \item Third step \end{enumerate} \subsection{1.3 Definition list(Descriptive style)} \begin{description}     \item[Content Writing] Content writing is the process of creating written material for various platforms such as websites, blogs, social media, and marketing campaigns. Its main goal is to inform, engage, or persuade a specific audience.      \item[Creative Writing] Creative writing is a form of artistic expression where imagination and originality play a key role. Unlike academic or technical writing, creative writing focuses on st...

overleaf 3

 \documentclass{article} \usepackage{setspace} \usepackage[utf8]{inputenc} \usepackage{fancyhdr} \usepackage{tocloft} \pagestyle{fancy} \fancyhf{} \fancyhead[L]{\textbf{Java Programming}} \fancyhead[R]{\textit{name}} \fancyfoot[L]{^1 Features} \fancyfoot[C]{\thepage} \renewcommand{\cftsecleader}{\cftdotfill{\cftdotsep}} \begin{document} \onehalfspacing \title{\textbf{Java programming}} \author{\textit{name}} \date{July 30 2025} \maketitle \newpage \tableofcontents \newpage \textbf{\Large Chapter 1} \maketitle \section{\textbf{\LARGE Java Programming}} In this chapter we will study the data types, features, operators of java programming. \subsection{Introduction} Java is a widely used and powerful programming language that offers several unique features and advantages compared to languages like Python and C++. It was developed by James Gosling and his team at Sun Microsystems in the mid-1990s. Java is known for its platform independence, object-oriented structure, and strong memory ...

overleaf 2

 \documentclass[two column]{article} \usepackage[landscape,a4paper]{geometry} \geometry{margin = 2cm} \begin{document} \title{\textbf{Page dimension ,Margin ,two column}} \author{name} \maketitle \begin{large}     \section{INTRODUCTION}     \textit{TeXstudio is an integrated writing environment specifically designed for creating LaTeX documents. It provides a user-friendly interface that makes writing, editing, and compiling LaTeX code easier and more efficient. TeXstudio includes many helpful features such as syntax highlighting, auto-completion, built-in spell checking, and instant preview, which help users avoid errors and improve productivity. It supports various document types, including research papers, theses, reports, and articles. One of its most powerful features is the integration of PDF viewers and output logs, allowing users to see errors and corrections instantly. TeXstudio is widely used by students, researchers, and academic professionals due to ...

overleaf 1

 \documentclass{article} \begin{document} \title{\textbf{Data Science}} \author{\textit{name}} \date{June 2025} \maketitle \section{\Huge{What is Data Science}} \normalsize {Data Science is an interdisciplinary field that uses a combination of statistics, computer science, and domain knowledge to extract valuable insights from data. It involves collecting, cleaning, analyzing, and visualizing large volumes of data to support decision-making and predictive modeling. With the rapid growth of digital data, data science has become essential in industries such as healthcare, finance, marketing, and technology.} \subsection{Components of Data Science} {The main components of data science include data collection, data processing, data analysis, and data visualization. It also involves the use of machine learning and artificial intelligence for predictive analytics. Data scientists use tools like Python, R, SQL, and software such as Tableau or Power BI to manage and analyze data. These com...