フィードバックが遅くなってすみません。私は最後にこのソリューションを使用しました(verbatim *を使用したラテックスのビットストリームベラフォント):
\documentclass{article}
\usepackage{bera}
\begin{document}
% text using bera font (Bitstream Vera), which has dotted zeroes
% the * after verbatim adds visible spaces
\begin{verbatim*}'1 l oO0}4 _i6D-WtF#q\end{verbatim*}
% visible space
hello\textvisiblespace world
% slashed zero
\o
\end{document}
他にもいくつか試してみました。
そこからPDFを作成するには:
pdflatex password_printing_4.tex
エラーが発生した場合は、単にtexmakerをインストールしてみてください。それは最も必要なラテックスパッケージに依存します:
sudo apt-get install texmaker
また、latexでinconsolataフォントを試しましたが、同じではないようです。
\documentclass{article}
\usepackage{inconsolata}
%\usepackage{bera}
% requires texlive-xetex package:
\usepackage[xetex]{graphicx}
%\usepackage{fontspec,xunicode}
%\defaultfontfeatures{Mapping=tex-text,Scale=MatchLowercase}
%\setmainfont[Scale=.95]{Inconsolata}
\begin{document}
% text using bera font (Bitstream Vera), which has dotted zeroes
% the * after verbatim adds visible spaces
\begin{verbatim*}`!=}k o6~-cRR1loO0\end{verbatim*}
%\renewcommand{\bera}{\inconsolata}
\texttt{This is Inconsolata. zero: 0}
%\renewcommand{\inconsolata}{\bera}
\texttt{This is Bera. zero: 0}
% visible space
hello\textvisiblespace world
% slashed zero
\o
\end{document}