*.dvi, *.pdf or whatever it might be) and during this process, it creates some helping metafiles to achieve this final result. So please, don't panic if, among your source files, some another will arise - that's a norm for LaTeX.yourFirstName_yourLastName_thesis and the folder should lay in a location easy get - because you'll use it regularly. As a programmer, I often use ~/workspace as a container of my projects (mostly git project), but any other reasonable location is also fine, for example: ~/Desktop. It should be easily accessible for you..tex and .bib..tex is actually a plain text file with TeX macros inside. In those you will spend most of your time writing the core of your work..bib files are related with bibliography, and store and document all your book positions, authors, or other media source, which can be later used during writing thesis. The bib files can be understood as our bibliography management file (or many files, because you can use multiple bibliography files in one LaTeX document) and they can be also re-used in many other documents in the future (i.e: you can share the file with your friend, colleague, supervisor). This is very smart and simple source of your references.main.texchap_one.texchap_two.texchap_three.texmain.tex) will store the whole configuration for our document.chap. It's not required to work (because you can define any name for your files), but this convention is also known as namespace or pointers and it's commonly used in LaTeX documents - more on LaTeX labels and cross referencing.article, report, or perhaps a book
(There is a number of different ready-made patterns) consists normally of
so-called preamble and the document.\documentclass[12pt, oneside, a4paper]{report}
\usepackage[OT4, plmath]{polski} % definition of using platex
\usepackage[utf8]{inputenc} % UTF-8 for multiple languages
\usepackage[OT4]{fontenc}
\usepackage{url}
\title{Project and implementation of content management system}
\author{Maciej Sypień}
\date{\today}main.tex file (as I told you, the name can different, as you like, but conventionally it's the name of the main file).\documentclass[12pt, oneside, a4paper]{report}, which is clearly written a definition of class report and its optional arguments as font size, type of printing and the document size of the resulting paper.\begin{document}
\maketitle
\begin{abstract}
This document presents few rules of how things goes into \LaTeX.
\end{abstract}
\chapter{Our first chapter}
% 1st section
\section{Text}\label{sec:tekst}
\LaTeX\ allows to the author to manage numbering of section, lists, refering for tables, pictures and other elements. I~easy way we can refer to the formula \ref{eqn:wzor1}.
% 2nd section
\section{Math}\label{sec:math}
Below formula presents the possibilities of \LaTeX\ with writing math. The equations are automatically numbering, just like other elements, which were mention into section~\ref{sec:tekst}.
\begin{equation}
E = mc^2,
\label{eqn:wzor1}
\end{equation}
where
\begin{equation}
m = \frac{m_0}{\sqrt{1-\frac{v^2}{c^2}}}.
\end{equation}
% ---------------------------------------------------------
\chapter{Our second chapter}
This is a very long content of the second chapter.
\section{Section of second chapter}
\label{sec:sec_of_2nd_chap}
This is very long content of second section of second chapter.
\subsection{This is a subsection of the second chapter}
\label{subsec:podsekcjaRozdzialuDrugiego}
This is a very long content of subsection of the second chapter.
% ---------------------------------------------------------
\chapter{Our third chapter}
This is a very long content of the third chapter.
\section{Section of third chapter}
\label{sec:sec_of_3rd_chap}
This is very long content of first section of third chapter.
\subsection{Subsection of first section of third chapter}
\label{subsec:sub_sec_of_3rd_chap}
Very long content of subsection of the third chapter.
\end{document}\begin{document} and end \end{document}. However, one big file can be difficult to edit and navigate, especially when it contains more than 1000 lines.main.txt should look like this:\documentclass[12pt, oneside, a4paper]{report}
\usepackage[OT4, plmath]{polski} % definition of platex
\usepackage[utf8]{inputenc} % UTF-8 encoding
\usepackage[OT4]{fontenc}
\usepackage{url}
\title{Project and impementation of the copyright content management system}
\author{Maciej Sypień}
\date{\today}
\begin{document}
\maketitle
\begin{abstract}
This document presents few rules of how things goes into \LaTeX.
\end{abstract}
\tableofcontents
\clearpage
\include{chap_intro}
\include{chap_1}
\include{chap_2}
\include{chap_3}
\end{document}\include{} command - and yes it can be written also without additional .tex extension ;) It's very comfortable because the writer can clearly read the file name and don't be bothered himself by its extension.\chapter{Wstęp}
Here will be the place of the prologue for our extensive thesis :)% 1st section
\section{Text}\label{sec:text}
\LaTeX\ allows to the author to manage numbering of section, lists, refering for tables, pictures and other elements. I~easy way we can refer to the formula \ref{eqn:equation1}.
% 2nd section
\section{Math}\label{sec:matematyka}
Below formula presents the possibilities of \LaTeX\ with writing math. The equations are automatically numbering, just like other elements, which were mention into section~\ref{sec:text}.
\begin{equation}
E = mc^2,
\label{eqn:equation1}
\end{equation}
where
\begin{equation}
m = \frac{m_0}{\sqrt{1-\frac{v^2}{c^2}}}.
\end{equation}\chapter{Our second chapter}
This is a very long content of the second chapter.
\section{Sekcja rozdziału drugiego}
\label{sec:sec_of_2nd_chap}
This is very long content of second section of second chapter.
\subsection{This is a subsection of the second chapter}
\label{subsec:podsekcjaRozdzialuDrugiego}
This is a very long content of subsection of the second chapter.\chapter{Our third chapter}
This is a very long content of the third chapter.
\section{Section of third chapter}
\label{sec:sec_of_3rd_chap}
This is very long content of first section of third chapter.
\subsection{Subsection of first section of third chapter}
\label{subsec:sub_sec_of_3rd_chap}
Very long content of subsection of the third chapter.\include{} command with % sign, then recompile the document and you're done.How condense a huge amount of knowledge in acceptable and learnable short time for an average person?
"LaTeX is the de facto standard for the communication and publication of scientific documents." - Get from official LaTeX webpage www.latex-project.org/
It is good practice to separate chapters to different files, mainly for a further quick feature of enabling or disabling it. Because of it, later in time, you can change the order of chapters in a fly. Moreover, you can collaborate on a document with other people and they can focus only on their's part without having so many conflicts into the document (yes, Git I'm talking to you).
This name document can be a tricky word for the first time. Because in lazy thinking "document" is a physical document that you can hold. But in the meaning of LaTeX syntax, "document" refers to the content of a document written by the author.