나는 종종 \LaTeX
명령을 사용하지만 지금은 MiKTeX에 대해 유사한 출력을 생성하는 명령을 찾고 있습니다. 존재합니까?
답변1
답변2
불과 10분 전에 게시한 관련 답변을 사용하여,칠판 굵은 그리스 문자, 이것은 pdflatex에서만 작동합니다.
\documentclass{article}
\usepackage{xcolor}
\input pdf-trans
\newbox\qbox
\def\usecolor#1{\csname\string\color@#1\endcsname\space}
\newcommand\bordercolor[1]{\colsplit{1}{#1}}
\newcommand\fillcolor[1]{\colsplit{0}{#1}}
\newcommand\outline[1]{\leavevmode%
\def\maltext{\mydelim #1\mydelim}%
\setbox\qbox=\hbox{\maltext}%
\boxgs{Q q 2 Tr \bbthickness\space w \fillcol\space \bordercol\space}{}%
\copy\qbox%
}
\newcommand\mathbb[1]{\def\mydelim{$}\outline{#1}}
\newcommand\textbb[1]{\def\mydelim{}\outline{#1}}
\newcommand\colsplit[2]{\colorlet{tmpcolor}{#2}\edef\tmp{\usecolor{tmpcolor}}%
\def\tmpB{}\expandafter\colsplithelp\tmp\relax%
\ifnum0=#1\relax\edef\fillcol{\tmpB}\else\edef\bordercol{\tmpC}\fi}
\def\colsplithelp#1#2 #3\relax{%
\edef\tmpB{\tmpB#1#2 }%
\ifnum `#1>`9\relax\def\tmpC{#3}\else\colsplithelp#3\relax\fi
}
\newcommand\MiKTEX{\textbf{\rmfamily%
\bordercolor{black}\newcommand\bbthickness{.15}\fillcolor{blue!50}%
\textbb{M\kern-.8pti\kern-.8ptK\kern-.95ptT\kern-.9pt
\raisebox{-.53ex}{E}\kern-.75ptX}}}
\begin{document}
Here is \MiKTEX{} text.
\end{document}
비교를 위한 홈페이지 이미지입니다
색상이나 윤곽선이 없고 모든 엔진에서 작동하는 단순한 것을 원한다면 다음과 같은 적응 방법이 있습니다.
\documentclass{article}
\newcommand\MiKTEX{\textbf{\rmfamily%
M\kern-.85pti\kern-.8ptK\kern-1.3ptT\kern-1.2pt
\raisebox{-.51ex}{E}\kern-.77ptX}}
\begin{document}
Here is \MiKTEX{} text.
\end{document}