1) Latex elements for example (summary) are editable ? by
example, I can change the summary name and put Index ? or change the
numeration by Roman numerals?
Yes. Just reset the commands (within the document section) with the command \renewcommand\elemento{novo nome para o elemento}
, where \elemento
is one of the following commands (the source is this answer in SOEN):
- Summary:
\abstractname
- Appendix:
\appendixname
- Bibliography:
\bibname
- Chapter:
\chaptername
- Contents:
\contentsname
- Index:
\indexname
- List of Figures:
\listfigurename
- List of Tables:
\listtablename
- Part:
\partname
- References:
\refname
For example:
\renewcommand\chaptername{Capítulo bem Capitulado}
2) Font exchange is easy or you need to install packages ? for example,
i want to use Times New Roman Font in a paragraph (on linux
no), so how can I use?
It’s easy to switch Latex native font families with the command \fontfamily
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 believe that Latex doesn’t have the Times New Roman natively, but for all I know it can use the Times Roman with the pslatex package. Is it worth the question on tex stackexchange. as suggested in comments.
3) 10pt, 11pt and 12pt are the standards, there is no 13pt ? or larger
font sizes ?
Yes, as illustrated in the previous example, using the command \fontsize
.
4) There are Sub Section, Subsubsection, and Sub Paragraph, but what if I
want more than 5 hierarchical elements ?
There are the commands \section
, \subsection
and \subsubsection
. If you have to divide further, follow the advice of fellow @hugomg and think about splitting into chapters.
5) there is some text editor equal to word that already mounts the structure
in Latex code ?
I came to answer that there is the Texmaker, as fellow @hugomg also quoted, but only later realized that you wanted an editor WYSIWYG. In that case, I don’t 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 about content.
P.S.: Full 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}
SOPT is more liberal about what can be posted and I think Latex can. That said, if it’s no problem to ask the question in English at Latex Stackexchange you can get excellent answers.
– hugomg
I will yes take a look, thank you very much, big hug !.
– Murilo Man
SOPT already has several questions from [tag:latex]. It is not a question merely of being liberal - regardless of the purpose of use, it is a language compiled and accepted as in the scope of the site. Of course, it’s always good to remember that there is a specific site in English, as quoted by fellow @hugomg. :)
– Luiz Vieira