- Placing the dot after each section and subsection number bullet.
- Placing an indentation at the beginning of each paragraph and few other things which I will mention later.
Thanks
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
{abstract}
environment, the abstract package might be a good start. But this is only a random shot.
Since these questions cover different areas (1. headings, 2. general text formatting), please open new topics for each of them in the respective sub-forum.dasatti wrote:[…] Other things I need to do are:
- Placing the dot after each section and subsection number bullet.
- Placing an indentation at the beginning of each paragraph and few other things which I will mention later.
\documentclass[a4paper,10pt,twocolumn]{article}
Code: Select all
\documentclass[10pt,a4paper,twocolumn]{article}
\usepackage[T1]{fontenc}
\usepackage{abstract}
\usepackage{lipsum} % only for dummy text, to be dropped in actual document
%% Adjustments
\renewcommand{\abstractnamefont}{\normalfont\normalsize\bfseries}
\renewcommand{\abstracttextfont}{\normalfont\small}
\setlength{\absleftindent}{0pt}
\setlength{\absrightindent}{0pt}
\begin{document}the
\begin{abstract}
\lipsum[1]
\end{abstract}
\section{Foo}
\lipsum[2]
\end{document}
If so, please close the topic by accepting the answer that led you to the solution. Otherwise fell free to ask further targeted questions concerning this problem.dasatti wrote:[…] I hope this will solve my problem.
Edit the two lines which define the name font and the text font for the abstract. Finally they should read like this.dasatti wrote:[…] I want the abstract title to be 12 points Times and abstract text to be 10 points. […]
Code: Select all
\renewcommand{\abstractnamefont}{\normalfont\large\bfseries}
\renewcommand{\abstracttextfont}{\normalfont\normalsize}
The fontenc package here enables the T1 font encoding (Cork Encoding) for extended sets of characters (mostly used for language others than English) and activates the EC fonts. It also prepares a document to use postscript Type 1 fonts, which yield better quality due to full scalability. For details please refer to the package manual. I got used to always including it, even in my "minimal" examples. It doesn't do any harm to documents in English.dasatti wrote:[…] My second question is why did you use fontenc package? What is this package for. […]
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p