Yes, I got the error message that says the file already exists.
I deleted the link then forced the ln call as you instructed me to do, then ran pdflatex from the console but to no avail.
Here's the output:
.This is pdfTeX, Version 3.14159265-2.6-1.40.16 (TeX Live 2015/Debian) (preloaded format ...
Search found 286 matches
- Sun Mar 13, 2016 10:44 pm
- Forum: Fonts & Character Sets
- Topic: arfonts package can't find fonts
- Replies: 11
- Views: 11394
- Fri Mar 04, 2016 1:18 am
- Forum: Fonts & Character Sets
- Topic: arfonts package can't find fonts
- Replies: 11
- Views: 11394
arfonts package can't find fonts
The paths do not match.
ls -l
returns
lrwxrwxrwx 1 alessandro alessandro 85 mars 1 21:24 ae_AlMohanad_xxbold.pfb -> /usr/local/texlive/2015/texmf-dist/fonts/type1/arabi/arabeyes/ae_almohanad_xxbold.pfb
while
kpsewhich ae_almohanad_xxbold.pfb
returned
/usr/share/texlive/texmf-dist ...
ls -l
returns
lrwxrwxrwx 1 alessandro alessandro 85 mars 1 21:24 ae_AlMohanad_xxbold.pfb -> /usr/local/texlive/2015/texmf-dist/fonts/type1/arabi/arabeyes/ae_almohanad_xxbold.pfb
while
kpsewhich ae_almohanad_xxbold.pfb
returned
/usr/share/texlive/texmf-dist ...
- Wed Mar 02, 2016 11:09 pm
- Forum: Fonts & Character Sets
- Topic: arfonts package can't find fonts
- Replies: 11
- Views: 11394
arfonts package can't find fonts
Hi, I tried what you suggested yet it still doesn't work.
returns:
Code: Select all
kpsewhich ae_almohanad_xxbold.pfb
Code: Select all
/usr/share/texlive/texmf-dist/fonts/type1/arabi/arabeyes/ae_almohanad_xxbold.pfb
- Wed Mar 02, 2016 1:37 am
- Forum: Fonts & Character Sets
- Topic: arfonts package can't find fonts
- Replies: 11
- Views: 11394
Re: arfonts package can't find fonts
Hello Stefan_K,
OK, so how can I do so that it compiles?
Thanks
OK, so how can I do so that it compiles?
Thanks
- Tue Mar 01, 2016 10:37 pm
- Forum: Fonts & Character Sets
- Topic: arfonts package can't find fonts
- Replies: 11
- Views: 11394
arfonts package can't find fonts
Hello rais,
I have texlive-full installed, I think that's enough.
I also executed the command ln -s from the directory where my .tex file is found but it still refuses to compile.
Yes, I also get this warning:
LaTeX Warning: You have requested package `arfonts',
but the package provides ...
I have texlive-full installed, I think that's enough.
I also executed the command ln -s from the directory where my .tex file is found but it still refuses to compile.
Yes, I also get this warning:
LaTeX Warning: You have requested package `arfonts',
but the package provides ...
- Mon Feb 29, 2016 11:06 pm
- Forum: Fonts & Character Sets
- Topic: arfonts package can't find fonts
- Replies: 11
- Views: 11394
arfonts package can't find fonts
Hello,
\documentclass{article}
% Remember that 'arfonts.sty' must be in the same directory as this file
\usepackage[utf8]{inputenc}
\usepackage[LAE, T1]{fontenc}
\usepackage[arabic]{babel}
\usepackage[free]{arfonts}
\begin{document}
\section{مقدمة}
\end{document}
Gives me the following error ...
\documentclass{article}
% Remember that 'arfonts.sty' must be in the same directory as this file
\usepackage[utf8]{inputenc}
\usepackage[LAE, T1]{fontenc}
\usepackage[arabic]{babel}
\usepackage[free]{arfonts}
\begin{document}
\section{مقدمة}
\end{document}
Gives me the following error ...
- Mon May 25, 2015 10:28 pm
- Forum: General
- Topic: Custom Chapter Name For Just One Entry
- Replies: 6
- Views: 5527
Re: Custom Chapter Name For Just One Entry
You're right I'm sorry about my sloppiness
Yeah, ///// stands for dummy characters as place-holders for titles. Anyway, tomorrow I shall draw a sketch of what I want and post it here.
Bye and thanks a lot for your patience!

Yeah, ///// stands for dummy characters as place-holders for titles. Anyway, tomorrow I shall draw a sketch of what I want and post it here.
Bye and thanks a lot for your patience!

- Mon May 25, 2015 9:46 pm
- Forum: General
- Topic: Custom Chapter Name For Just One Entry
- Replies: 6
- Views: 5527
Re: Custom Chapter Name For Just One Entry
Thanks but I was thinking about something more standardized, where only the first entry has a special format.
- Sun May 24, 2015 10:58 pm
- Forum: General
- Topic: Custom Chapter Name For Just One Entry
- Replies: 6
- Views: 5527
Re: Custom Chapter Name For Just One Entry
OK sorry, I wanted something like this:
Chapter 1.................01
/////// 2.................10
/////// 3.................30
Chapter 1.................01
/////// 2.................10
/////// 3.................30
- Sun May 24, 2015 10:27 pm
- Forum: General
- Topic: Custom Chapter Name For Just One Entry
- Replies: 6
- Views: 5527
Custom Chapter Name For Just One Entry
Hello.
I want to have a customized ToC like this:
Chapter 1
/////// 2
/////// 3
and so on.
Is there a way to do that with tocloft?
Thanks everybody.
I want to have a customized ToC like this:
Chapter 1
/////// 2
/////// 3
and so on.
Is there a way to do that with tocloft?
Code: Select all
Code, edit and compile here:
\documentclass{book}\usepackage{tocloft}\begin{document}\chapter{Foreword}\chapter{blah}\chapter{Afterword}\end{document}