Please check the GNU Autoconf Macro Archive for Updates
AC-Archive
Autoconf Macro Archive

ac-archive.sf.net: - Project CVS - Download
Macro Index
- AM Support
- C++ Support
- C Support
- Fortran Support
- Java Support
- Cross Compilation
- Installed Packages
- Miscellaneous
- LaTeX Support
- Uncategorized
- archive macros
- adl's macros
- bkorb's macros
- guidod's macros
- latex's macros
- other's macros
- rleigh's macros
- obsoleted macros
- released macros
- search index

Documentation
- Contribute!
- History
- acincludedir m4
- acinclude (tool)
- macro howto
- ax tricks
- maintainers
- License
- Topics

generated...
2007年08月05日

(C) 2007 guidod
Synopsis
AC_LATEX_PACKAGE_FONTENC
, 
Version

2006年07月16日

Author

Mathieu Boretti <boretti@eig.unige.ch>

License

GPLWithACException
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation. As a special exception, the respective Autoconf Macro's copyright owner gives unlimited permission to copy, distribute and modify the configure scripts that are the output of Autoconf when processing the Macro. You need not follow the terms of the GNU General Public License when using or distributing such scripts

Category

cryp.to ac-archive's Obsoleted (obsoleted)

Documentation
  • obsoleted Replaced by the newer ACLTX_XXX set of macros.

This macro test if \usepackage[T1]{fontenc} works. If yes it set $fontenc="T1" else if \usepackage[OT1]{fontenc} works, set $fontenc="OT1" else ERROR

M4 Source Code
define(_AC_LATEX_PACKAGE_FONTENC_INTERNE,[
changequote(*, !)dnl
\documentclass{book}
\usepackage[1ドル]{fontenc}
\begin{document}
\end{document}
changequote([, ])dnl
])
AC_DEFUN([AC_LATEX_PACKAGE_FONTENC],[
 AC_LATEX_CLASS_BOOK
 AC_CACHE_CHECK([for fontenc],[ac_cv_latex_package_fontenc_opt],[
 _AC_LATEX_TEST([_AC_LATEX_PACKAGE_FONTENC_INTERNE(T1)],[ac_cv_latex_package_fontenc_opt])
 if test $ac_cv_latex_package_fontenc_opt = "yes" ;
 then
 ac_cv_latex_package_fontenc_opt="T1"; export ac_cv_latex_package_fontenc_opt;
 else
 _AC_LATEX_TEST([_AC_LATEX_PACKAGE_FONTENC_INTERNE(OT1)],[ac_cv_latex_package_fontenc_opt])
 if test $ac_cv_latex_package_fontenc_opt = "yes" ;
 then
 ac_cv_latex_package_fontenc_opt="OT1"; export ac_cv_latex_package_fontenc_opt;
 fi
 fi
 ])
 if test $ac_cv_latex_package_fontenc_opt = "no" ;
 then
 AC_MSG_ERROR([Unable to use fontenc with T1 nor OT1])
 fi
 fontenc=$ac_cv_latex_package_fontenc_opt ; export fontenc ;
 AC_SUBST(fontenc)
])

AltStyle によって変換されたページ (->オリジナル) /