article
문서 클래스와 패키지를 사용하고 있지만 geometry
섹션에 대한 일부 정의가 누락된 것 같습니다. 저는 이 분야가 처음이고 이 플랫폼에서 석사 논문을 쓰고 싶습니다. 이것은 내가 지금까지 얻은 코드의 일부입니다.
\documentclass[a4paper,11pt,oneside]{article}
% LANGUAGE AND FONTS PREAMBLE
\usepackage[brazilian]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{charter}%document font type
\usepackage[hidelinks]{hyperref}%Allows clickable references
%PAGE AND TITLES FORMATTING
\usepackage[margin=2cm,left=2.5cm]{geometry}
\usepackage{titlesec}
\usepackage{lipsum}% just to generate text for the example
\def\changemargin#1#2{\list{}{\rightmargin#2\leftmargin#1}\item[]}
\let\endchangemargin=\endlist %Allows to change margins in selected particular parts of the text
\titleformat{\section} %Commmands for all titles formatting
{\Large\sc\bfseries\center}{\thesection}{0.5cm}{}
\begin{document}
\section*{ABSTRACT}\label{sec:abstract}
\addcontentsline{toc}{section}{\numberline{}ABSTRACT}
Abstract do trabalho. Inglês, com keywords.
Work abstract, English with keyboards.
\cleardoublepage
\section{INTRODUÇÃO}\label{sec:intro}
\lipsum[1]
\lipsum[2]
\lipsum[3]
\lipsum[4]
\lipsum[1]
\lipsum[2]
\lipsum[3]
\lipsum[4]
\cleardoublepage
\end{document}