Here is the solution. The missing font is jerus10.mf:
http://packages.ubuntu.com/hardy/all/ivritex/filelist
Which link to:
http://ivritex.sourceforge.net/
The required file is:
http://sourceforge.net/projects/ivritex/files/ivritex/ivritex-1.2.1/ivritex-1.2.1.tar.gz/download
Only the subfolder ...
Search found 70 matches
- Wed Feb 13, 2013 2:18 pm
- Forum: Fonts & Character Sets
- Topic: babel & inputenc errors when using Hebrew
- Replies: 3
- Views: 9268
- Thu Oct 18, 2012 8:48 pm
- Forum: Fonts & Character Sets
- Topic: Change OT1 Font Encoding to another one
- Replies: 2
- Views: 23345
Change OT1 Font Encoding to another one
Hello, shep.
You should use the inputenc package like this:
\documentclass[10pt, a4paper]{article}
\usepackage{cmap}
\usepackage[T1, T2A]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english, bulgarian]{babel}
\begin{document}
Some text on English. Някакъв текст на български.
\end{document ...
You should use the inputenc package like this:
\documentclass[10pt, a4paper]{article}
\usepackage{cmap}
\usepackage[T1, T2A]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english, bulgarian]{babel}
\begin{document}
Some text on English. Някакъв текст на български.
\end{document ...
- Thu Oct 18, 2012 6:12 pm
- Forum: XeTeX
- Topic: Lost Text Information after saving with Preview (Mac)
- Replies: 3
- Views: 6951
Re: Lost Text Information after saving with Preview (Mac)
Hello there!
I don't have Mac, so I can't be of much help. But after reading some information on Wikipedia, I recommend that you install Skim and see if the problem persists.
http://en.wikipedia.org/wiki/Skim_%28software%29
http://skim-app.sourceforge.net/
jd
I don't have Mac, so I can't be of much help. But after reading some information on Wikipedia, I recommend that you install Skim and see if the problem persists.
http://en.wikipedia.org/wiki/Skim_%28software%29
http://skim-app.sourceforge.net/
jd
- Sat Oct 13, 2012 6:29 pm
- Forum: Math & Science
- Topic: Equation not centered
- Replies: 39
- Views: 58025
Equation not centered
The problem is the tensor package. Replace all \tensor commands by g (or the required letter) and everything aligns fine. The package maintainer should fix his code.
Yeah, my mistake. It is a spacing problem.
With the following change it aligns fine:
\renewcommand\theequation{\thesubsection ...
Yeah, my mistake. It is a spacing problem.
With the following change it aligns fine:
\renewcommand\theequation{\thesubsection ...
- Thu Oct 11, 2012 7:57 pm
- Forum: Graphics, Figures & Tables
- Topic: Problems with Table
- Replies: 3
- Views: 4709
Problems with Table
Hello there Ryan!
You have to manually break up the table. I don't know if there are any tools to do that automatically. You can also try sidewaystable.
Also, your code does not compile: \Box requires math environment.
\documentclass[10pt,letterpaper,landscape]{article}
\usepackage{amsmath ...
You have to manually break up the table. I don't know if there are any tools to do that automatically. You can also try sidewaystable.
Also, your code does not compile: \Box requires math environment.
\documentclass[10pt,letterpaper,landscape]{article}
\usepackage{amsmath ...
- Tue May 15, 2012 9:49 pm
- Forum: LyX
- Topic: Problems using bablebib ...
- Replies: 1
- Views: 2017
Problems using bablebib ...
Hi.
So the package works, with command prompt compile. Should work with LyX also, since the package is in the TeXLive tree (other distros should have it too).
But, are you sure of your spelling - seems wrong:
\usepackage[fixlanguage]{bablebib}
Correct one is:
\usepackage[fixlanguage ...
So the package works, with command prompt compile. Should work with LyX also, since the package is in the TeXLive tree (other distros should have it too).
But, are you sure of your spelling - seems wrong:
\usepackage[fixlanguage]{bablebib}
Correct one is:
\usepackage[fixlanguage ...
- Tue May 15, 2012 9:24 pm
- Forum: Page Layout
- Topic: fancyhdr | Customized Page Headers on even and odd Pages
- Replies: 2
- Views: 13127
fancyhdr | Customized Page Headers on even and odd Pages
Hi, so twoside option works with report:
\documentclass[twoside]{report}
\usepackage{fancyhdr}
\fancyhead[LE]{\thepage}
\fancyhead[RE]{right}
\fancyhead[LO]{left}
\fancyhead[RO]{\thepage}
\pagestyle{fancy}
\begin{document}
Some text
\newpage
More text
\newpage
Even more text
\end{document ...
\documentclass[twoside]{report}
\usepackage{fancyhdr}
\fancyhead[LE]{\thepage}
\fancyhead[RE]{right}
\fancyhead[LO]{left}
\fancyhead[RO]{\thepage}
\pagestyle{fancy}
\begin{document}
Some text
\newpage
More text
\newpage
Even more text
\end{document ...
- Mon May 07, 2012 12:22 pm
- Forum: Fonts & Character Sets
- Topic: Tahoma Font and bold Font Series
- Replies: 1
- Views: 9844
Tahoma Font and bold Font Series
For true type fonts you must use "xelatex" or "lualatex" compilers:
\documentclass{memoir}
\usepackage{fontspec}
\begin{document}
\thispagestyle{empty}
\LaTeX standard font.
\setmainfont{Tahoma}
Here, you have \textbf{Tahoma} font.
\setmainfont{Georgia}
Here, you have \textbf{Georgia} font ...
\documentclass{memoir}
\usepackage{fontspec}
\begin{document}
\thispagestyle{empty}
\LaTeX standard font.
\setmainfont{Tahoma}
Here, you have \textbf{Tahoma} font.
\setmainfont{Georgia}
Here, you have \textbf{Georgia} font ...
- Thu May 03, 2012 1:49 pm
- Forum: Graphics, Figures & Tables
- Topic: Horizontal Line affects Table Alignment
- Replies: 1
- Views: 2038
Horizontal Line affects Table Alignment
Hi, you are doing it wrong:
\documentclass[12pt,a4paper]{article}
\usepackage{graphicx}
\begin{document}
\begin{tabular}{p{0.2\textwidth}|p{0.7\textwidth}}
\vspace{0pt}\includegraphics[scale=0.6]{logos} & Some text
\end{tabular}
\end{document}
Both columns should be paragraphs "p", and ...
\documentclass[12pt,a4paper]{article}
\usepackage{graphicx}
\begin{document}
\begin{tabular}{p{0.2\textwidth}|p{0.7\textwidth}}
\vspace{0pt}\includegraphics[scale=0.6]{logos} & Some text
\end{tabular}
\end{document}
Both columns should be paragraphs "p", and ...
- Thu May 03, 2012 1:38 pm
- Forum: Page Layout
- Topic: fancyhdr | Headers and Footers
- Replies: 3
- Views: 3995
fancyhdr | Headers and Footers
Hi, you should use the twoside option in article, combined with the geometry package to fix the page margins:
\documentclass[10pt, twoside]{article}
\usepackage[margin=3cm, showframe]{geometry}
\usepackage{fancyhdr}
\usepackage{graphicx}
\renewcommand{\headrulewidth}{0.2mm}
\renewcommand ...
\documentclass[10pt, twoside]{article}
\usepackage[margin=3cm, showframe]{geometry}
\usepackage{fancyhdr}
\usepackage{graphicx}
\renewcommand{\headrulewidth}{0.2mm}
\renewcommand ...