Search found 4 matches
- Thu Sep 02, 2010 7:48 pm
- Forum: Fonts & Character Sets
- Topic: Helvetica in cyrillic
- Replies: 2
- Views: 4632
Re: Helvetica in cyrillic
Thank you very much frabjous. I have done exactly what you proposed and got the result which I like.
- Thu Sep 02, 2010 2:22 pm
- Forum: Fonts & Character Sets
- Topic: Helvetica in cyrillic
- Replies: 2
- Views: 4632
Helvetica in cyrillic
I tried to use helvetica in a document with russian text, but obtained only formulas in helvetica.
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[english,russian]{babel}
\usepackage[T2A]{fontenc}
...
\usepackage{fourier}
\usepackage[scaled]{helvet}
...
I got the following:
LaTeX ...
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[english,russian]{babel}
\usepackage[T2A]{fontenc}
...
\usepackage{fourier}
\usepackage[scaled]{helvet}
...
I got the following:
LaTeX ...
- Tue Jul 20, 2010 6:43 pm
- Forum: Math & Science
- Topic: Case environment in theorem proofs
- Replies: 3
- Views: 14202
Re: Case environment in theorem proofs
I have solved this problem myself as follows:
...
\newtheorem{case}{Case}
\newtheorem{subcase}{Case}
\numberwithin{subcase}{case}
\begin{document}
...
\begin{case}
...
\begin{subcase}
...
\end{subcase}
...
\end{case}
...
With such code I'v got exactly what I wanted.
...
\newtheorem{case}{Case}
\newtheorem{subcase}{Case}
\numberwithin{subcase}{case}
\begin{document}
...
\begin{case}
...
\begin{subcase}
...
\end{subcase}
...
\end{case}
...
With such code I'v got exactly what I wanted.
- Tue Jul 20, 2010 5:41 pm
- Forum: Math & Science
- Topic: Case environment in theorem proofs
- Replies: 3
- Views: 14202
Case environment in theorem proofs
Hi! I'm trying to divide my proof on cases. So I use \begin{case}-environment and I would like to have something like that:
Case 1. Text
Case 1.1. Text
Case 1.2. Text
Case 2.
But in the result I get the following:
Case 1.
Case 2.
Case 3.
How to make subcases?
Case 1. Text
Case 1.1. Text
Case 1.2. Text
Case 2.
But in the result I get the following:
Case 1.
Case 2.
Case 3.
How to make subcases?