Text Formatting ⇒ formatting
formatting
Hello,
Can any one please tell how to put two spaces after period(full stop) in IEEEtran in latex. I have tried \nonfrenchspacing, but it dint work.
Thanks
Can any one please tell how to put two spaces after period(full stop) in IEEEtran in latex. I have tried \nonfrenchspacing, but it dint work.
Thanks
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
formatting
Hello shine,
welcome to the forum!
Do you use the cite package? If yes, this may help, after
Or, in the preamble:
Stefan
welcome to the forum!
Do you use the cite package? If yes, this may help, after
\begin{document}
:\let\normalsfcodes\frenchspacing
Or, in the preamble:
\AtBeginDocument{\let\normalsfcodes\frenchspacing}
Stefan
LaTeX.org admin
formatting
Thanks @Stefan for your response. I am using cite package, I used \let\normalsfcodes\frenchspacing. The output obtained is shown in the file attached. However, it looks similar to me to the case without using \let\normalsfcodes\frenchspacing.
Can you please look at this attachment and give me suggestions.
Thanks
Can you please look at this attachment and give me suggestions.
Thanks
- Attachments
-
- spacing.png (152.41 KiB) Viewed 3440 times
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
formatting
Can you perhaps provide a small version of your document (minimal text) that shows the issue? I could guess about cite, but need to see more, such as the complete preamble.
Stefan
Stefan
LaTeX.org admin
formatting
please find attached the tex file with some text.
thanks
thanks
- Attachments
-
- document.tex
- (1.09 KiB) Downloaded 165 times
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
formatting
Here it works after simply adding
Stefan
\nonfrenchspacing
after \begin{document}
:Code: Select all
\documentclass[journal]{IEEEtran}
%\usepackage{ragged2e}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{cite}
\usepackage{fixltx2e}
\usepackage{mathtools}
\usepackage{amsmath}
\usepackage{multirow}
\usepackage{physics}
\usepackage[caption=false]{subfig}
\begin{document}
%\let\normalsfcodes\nonfrenchspacing
\nonfrenchspacing
The core loss is composed of the hysteresis loss, eddy current loss and the residual loss. The hysteresis loss is the power lost in magnetization and demagnetization of the core, caused by the multi-valued nature of the B-H curve. Thus, it is dependent on the frequency of the magnetizing force f and the area of the hysteresis loop, which in turn depends on square of magnetic flux density.
The eddy current loss is caused by the current flowing in the core due to time varying magnetic field. Its generating mechanism is similar to the current flowing in the conductor, and have same effects as ohmic loss. Eddy current loss is directly proportional to the square of frequency f and the square of magnetic flux density B.
\end{document}
LaTeX.org admin
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
formatting
By the way, I think the spacing looks better with
It reduces the wide gaps between words.
Stefan
\usepackage{microtype}
It reduces the wide gaps between words.
Stefan
LaTeX.org admin
formatting
yes, it looks better.
Many thanks for your response and time.
Many thanks for your response and time.