I would like to change "Abstract" to "Resumo". I tried to use
\renewcommand
and it only worked for Contents. Any suggestion of what I could do? Ah, I also tried to use babel.Thanks.
juoceano
\renewcommand
and it only worked for Contents. Any suggestion of what I could do? Ah, I also tried to use babel.\renewcommand{\abstractname}{juoceano}
spanish
(or whatever language you prefer) and use \selectlanguage{spanish}
right after \begin{document}
.Code: Select all
\documentclass[fleqn,10pt]{SelfArx}
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage{fancyhdr}
\pagestyle{fancy}
\usepackage{xcolor}
%------------------------------------------------------------------------------
% COLUMNS
%------------------------------------------------------------------------------
\setlength{\columnsep}{0.55cm}
\setlength{\fboxrule}{0.75pt}
%-------------------------------------------------------------------------------
% COLORS
%-------------------------------------------------------------------------------
\definecolor{color1}{cmyk}{1,0.46,0,0.70}
\definecolor{color2}{RGB}{0,20,20} % Color of the boxes behind the abstract and headings
%---------------------------------------------------------------------------------
% HYPERLINKS
%---------------------------------------------------------------------------------
\usepackage{hyperref} % Required for hyperlinks
\hypersetup{hidelinks,colorlinks,breaklinks=true,urlcolor=color2,citecolor=color1,linkcolor=color1,bookmarksopen=false,pdftitle={Title},pdfauthor={Author}}
%---------------------------------------------------------------------------------
% ARTICLE INFORMATION
%---------------------------------------------------------------------------------
\JournalInfo{} % Journal information
\Archive{March 2016}
\PaperTitle{Title}
\Authors{Author 1\textsuperscript{1}*}
\affiliation{\small \textsuperscript{1}\textit{Director}} % Author affiliation
\affiliation{*\textbf{Corresponding author}: Email@address.com}
\Keywords{Keywords --- --- ---}
\newcommand{\keywordname}{Keywords}
%----------------------------------------------------------------------------------
% ABSTRACT
%---------------------------------------------------------------------------------
\Abstract{Abstract}
%----------------------------------------------------------------------------------
\begin{document}
\flushbottom % Makes all text pages the same height
\maketitle % Print the title and abstract box
\tableofcontents % Print the contents section
\thispagestyle{empty} % Removes page numbering from the first page
%----------------------------------------------------------------------------------
% ARTICLE CONTENTS
%----------------------------------------------------------------------------------
\section*{Introduction}
\addcontentsline{toc}{section}{Introduction}
\normalsize Here is an introduction.
\end{document}
Code: Select all
\addto\captionsenglish{%
\renewcommand{\abstractname}{}
}