I have the next code:
\documentclass[a4paper,openright, 12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{fullpage}
\newcommand{\ssection}[1]{%
\section[#1]{\centering\normalfont\scshape #1}}
\newcommand{\ssubsection}[1]{%
\subsection[#1]{\bfseries\normalfont\scshape #1}}
\newcommand{\ssubsubsection}[1]{%
\ssubsubsection[#1]{\bfseries\normalfont\scshape #1}}
\begin{document}
\ssection{Special relativity}
bla bla bla
\ssubsection{Lorentz's transformation}
bla bla bla
\ssubsection{Minkowski space-time}
bla bla bla
\end{document}
anyone know how to remove the sections numbering?
And if I use:
\documentclass[a4paper,openright, 16pt]{article}
Why the letters are not bigger?


articleis one you have only10,11,12ptyou can try withextarticleclass there is14pt,17ptand even more. For section numbering use\setcounter{secnumdepth}{0}– touhami Mar 04 '16 at 08:55\sectionwhich is just wrong thing to do. – David Carlisle Mar 04 '16 at 08:56