Text Formatting ⇒ formatting
formatting
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.
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
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
formatting
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
formatting
Can you please look at this attachment and give me suggestions.
Thanks
- Attachments
-
- spacing.png (152.41 KiB) Viewed 3352 times
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
formatting
Stefan
formatting
thanks
- Attachments
-
- document.tex
- (1.09 KiB) Downloaded 162 times
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
formatting
\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}
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
formatting
\usepackage{microtype}
It reduces the wide gaps between words.
Stefan
formatting
Many thanks for your response and time.