1) Are the elements of LaTeX for example (summary) editable? per
example, can I rename table of contents and index? other guy
numbering by Roman numerals?
Yes. Simply redefine the commands (within the document section) with the command \renewcommand\elemento{novo nome para o elemento}
, where \elemento
is one of the following commands ( a source is this answer in SOEN ):
- Summary:
\abstractname
- Appendix:
\appendixname
- Bibliography:
\bibname
- Chapter:
\chaptername
- Content:
\contentsname
- Index:
\indexname
- List of Figures:
\listfigurename
- List of Tables:
\listtablename
- Part:
\partname
- References:
\refname
For example:
\renewcommand\chaptername{Capítulo bem Capitulado}
2) Is font switching easy or does it need to install packages? for example,
I want to use Times New Roman Font in a paragraph (in linux
has not), so how can I use it?
It is easy to switch families of native LaTeX fonts with the \fontfamily
command within a scope (in the example below, the keys). There are other commands, such as \fontsize
and \textcolor
(more details, in English, on this page ). For example:
{\fontfamily{phv}\fontsize{18}{10}\selectfont
Escreva todos os seus documentos com a fonte Helvética tamanho 18pt!
}
I think LaTeX does not have Times New Roman natively, but from what I know, you can use Times Roman with the package pslatex . It's worth asking the tex.stackexchange as suggested in comments.
3) 10pt, 11pt and 12pt are the defaults, there is no 13pt? or greater
font sizes?
Yes, as illustrated in the previous example, using the command \fontsize
.
4) There are sub section, subsubsection, and sub paragraph, however, and if I
want more than 5 hierarchical elements?
There are the commands \section
, \subsection
and \subsubsection
. If you have to split further, follow the advice of colleague @hugomg and think about breaking up into chapters.
5) is there any text editor equal to the word that already mounts the structure
in LaTeX code?
I came to answer that there is Texmaker , as colleague @hugomg also quoted, but only after I realized that you wanted an editor WYSIWYG . In that case, I do not know. I think it should not be a very popular idea, because the principle of Tex / LaTeX is precisely not to worry about formatting, but to content.
P.S .: Complete functional example (also in Overleaf ):
\documentclass{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[portuguese]{babel}
\begin{document}
% PERGUINTA 1 ---------------------
\renewcommand\chaptername{Capítulo bem Capitulado}
% ---------------------------------
\tableofcontents{}
\chapter{Introdução}
\section{Motivação}
Este trabalho tem várias motivações.
\subsection{Primeira Motivação}
Ganhar muito dinheiro!
\subsection{Segunda Motivação}
Ganhar ainda mais dinheiro!
\chapter{Realização do Trabalho}
\section{Passos}
\begin{enumerate}
\item Ter uma ideia brilhante!
\item Arrumar alguém com dinheiro pra investir na ideia brilhante!
\item Implementar a ideia brilhante!
\item Colher os louros do sucesso!
\end{enumerate}
E mais:
% PERGUINTA 2 ---------------------
{\fontfamily{phv}\fontsize{18}{10}\selectfont
Escreva todos os seus documentos com a fonte Helvética tamanho 18pt!
}
% ---------------------------------
\end{document}