Stefan,Stefan_K wrote:No problem, I understand if you have to finish your work and perhaps you have not yet enough time to read through a lot of documentation, but that will come. I just had to recommend titlesec - if I don't do it then somebody else would probably.![]()
After including titlesec the sectioning format can be changed with one line, for example:For illustration one complete example follows. Not perfect, just illustrating titlesec.Code: Select all
\titleformat*{\section}{\centering\large\bfseries\scshape}
Just in case you don't have bold-extra or blindtext yet etc. I will attach a pdf file for demonstration and remove it later.Code: Select all
\documentclass[a4paper,10pt]{article} \usepackage[english]{babel} \usepackage{titlesec,bold-extra,blindtext} \titleformat*{\section}{\centering\large\bfseries\scshape} \begin{document} \tableofcontents \section{Introduction} \blindtext \section{More} \blindtext \section{And More} \blindtext \section{Still More} \blindtext \section{Conclusions} \blindtext See \cite{Clarke}. \let\stdsection\section% workaround for numbering: \def\section*#1{\stdsection{#1}} \begin{thebibliography}{9} \bibitem{Clarke} F. H. Clarke, \newblock {\em Optimization and Nonsmooth Analysis}, SIAM, Classics in Applied Mathematics, Philadelphia, 1990. \end{thebibliography} \end{document}
Stefan
It really is a very useful package.
Tell me I am using graphicx to include in my text a graph that I generated with Latexcad. The following code
\begin{figure}[ht]
\centering
\includegraphics[bb=80 350 1400 900, width=5.67in,height=4.72in,keepaspectratio]{slope5}
\caption{Graph of the function in Example 3 }
\end {figure}
shows a graph where the numbers and labels cannot be seens clearly. How I can improve the display of the graph?