General ⇒ Last char of caption of picture
Last char of caption of picture
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Last char of caption of picture
please show the code that's producing this behavior. I've never got captions with mixed chars.
Stefan
Last char of caption of picture
Code: Select all
\begin{figure}
\includegraphics{images/circuit6.eps}
\caption{Эквивалентный генератор ЭДС}
\end{figure}
- Attachments
-
- circuit6.png (10.91 KiB) Viewed 4917 times
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Last char of caption of picture
Code: Select all
\documentclass[a4paper,10pt]{article}
\usepackage[demo]{graphicx}
\usepackage[utf8]{inputenc}
\usepackage[russian]{babel}
\begin{document}
\begin{figure}
\includegraphics{images/circuit6.eps}
\caption{Эквивалентный генератор ЭДС}
\end{figure}
\end{document}
Last char of caption of picture
SorryStefan_K

- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Last char of caption of picture
My file works in all ways I've tried: dvi, ps, pdf (both with dvipdfm and ps2pdf).
Stefan
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Last char of caption of picture
Code: Select all
\documentclass[11pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[russian]{babel}
\usepackage[demo]{graphicx}
\begin{document}
\begin{figure}[!ht]
\centering
\includegraphics{images/circuit6.eps}
\caption{Эквивалентный генератор ЭДС}
\end{figure}
\end{document}
- Attachments
-
- cyrillic-prblm.zip
- The above code compiled to DVI.
- (435 Bytes) Downloaded 164 times
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Last char of caption of picture
Maybe I use dvipdfm.exe incorrectly? dvipdfm.exe <name of *.dvi file>
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Last char of caption of picture
If you are not stick to the use of the latex compiler engine, compile your documents directly with pdflatex to PDF. Moreover it is always good to use the right font and input encoding.
Code: Select all
\usepackage[T2A]{fontenc}
\usepackage[cp1251]{inputenc}
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10