如何写“C”在乳胶中

发布于 2024-08-31 00:58:12 字数 75 浏览 2 评论 0原文

如何在 LaTeX 中编写“C++”以使输出看起来不错。例如,C$++$ 看起来不太好:加号太大并且空间太多。

How can I write "C++" in LaTeX so that the output looks nice. For example C$++$ doesn't look good: the plus signs are too big and there is too much space.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

大海や 2024-09-07 00:58:12

此类情况的标准解决方案是逐字记录:

\verb!C++!

The standard solution for cases like this is to use verbatim:

\verb!C++!
微暖i 2024-09-07 00:58:12

我一直在使用下面的代码在我的硕士论文中排版一个漂亮的 C++。该代码已从 德语论坛。您应该能够将所有代码复制粘贴到新的 .tex-文档中,然后为您选择相关的内容...

\documentclass{article}
\usepackage{relsize}
\usepackage{lipsum}

%c from texinfo.tex
\def\ifmonospace{\ifdim\fontdimen3\font=0pt }

%c C plus plus
\def\C++{%
\ifmonospace%
    C++%
\else%
    C\kern-.1667em\raise.30ex\hbox{\smaller{++}}%
\fi%
\spacefactor1000 }

%c C sharp
\def\Csharp{%
\ifmonospace%
    C\#%
\else%
    C\kern-.1667em\raise.30ex\hbox{\smaller{\#}}%
\fi%
\spacefactor1000 }

\begin{document}
\begin{center}
{\Huge C++ $\rightarrow$ \C++ \& \Huge C\# $\rightarrow$ \Csharp}\\
\bigskip
\ttfamily
{\Huge C++ $\rightarrow$ \C++ \& \Huge C\# $\rightarrow$ \Csharp}\\
\bigskip
\sffamily
{\Huge C++ $\rightarrow$ \C++ \& \Huge C\# $\rightarrow$ \Csharp}
\end{center}
\section{\C++}
\lipsum[1]
\subsection{\Csharp}
\lipsum[1]
\end{document}

I've been using the code below to typset a nice looking C++ in my Master-Thesis. The code has been copied verbatim from a german forum. You should be able to just copy-paste all the code in a new .tex-document and pick the relevant stuff for you...

\documentclass{article}
\usepackage{relsize}
\usepackage{lipsum}

%c from texinfo.tex
\def\ifmonospace{\ifdim\fontdimen3\font=0pt }

%c C plus plus
\def\C++{%
\ifmonospace%
    C++%
\else%
    C\kern-.1667em\raise.30ex\hbox{\smaller{++}}%
\fi%
\spacefactor1000 }

%c C sharp
\def\Csharp{%
\ifmonospace%
    C\#%
\else%
    C\kern-.1667em\raise.30ex\hbox{\smaller{\#}}%
\fi%
\spacefactor1000 }

\begin{document}
\begin{center}
{\Huge C++ $\rightarrow$ \C++ \& \Huge C\# $\rightarrow$ \Csharp}\\
\bigskip
\ttfamily
{\Huge C++ $\rightarrow$ \C++ \& \Huge C\# $\rightarrow$ \Csharp}\\
\bigskip
\sffamily
{\Huge C++ $\rightarrow$ \C++ \& \Huge C\# $\rightarrow$ \Csharp}
\end{center}
\section{\C++}
\lipsum[1]
\subsection{\Csharp}
\lipsum[1]
\end{document}
故乡的云 2024-09-07 00:58:12

您可以尝试使用打字机字体。

\texttt{C++}

You could try and use a typewriter font.

\texttt{C++}
若相惜即相离 2024-09-07 00:58:12

我发现以下给出了很好的结果:

\def\Cplusplus{C\raisebox{0.5ex}{\tiny\textbf{++}}}

I've found that the following gives good results:

\def\Cplusplus{C\raisebox{0.5ex}{\tiny\textbf{++}}}
吃颗糖壮壮胆 2024-09-07 00:58:12

这就是我很久以前使用的:

\newcommand*{\Cpp}{C\ensuremath{++}\xspace}

\Cpp 一样使用(需要 xspace 包)。但正如你所说,它并不美丽。

This is what I used loooong time ago:

\newcommand*{\Cpp}{C\ensuremath{++}\xspace}

to be used like \Cpp (needs xspace package). But as you said, it is not really beautiful.

[浮城] 2024-09-07 00:58:12

对于 tex 网站上的同一问题,这个答案给出了我认为是一个很好的解决方法。

%C++
\newcommand\Cpp{C\nolinebreak[4]\hspace{-.05em}\raisebox{.4ex}{\relsize{-3}{\textbf{++}}}}
%C#
\newcommand\Csh{C\nolinebreak[4]\hspace{-.05em}\raisebox{.4ex}{\relsize{-3}{\textbf{\#}}}

This answer, for the same question on the tex site, gives what I find to be a good looking way to this.

%C++
\newcommand\Cpp{C\nolinebreak[4]\hspace{-.05em}\raisebox{.4ex}{\relsize{-3}{\textbf{++}}}}
%C#
\newcommand\Csh{C\nolinebreak[4]\hspace{-.05em}\raisebox{.4ex}{\relsize{-3}{\textbf{\#}}}
眸中客 2024-09-07 00:58:12

There is a \cpluspluslogo command "with the ‘+’ signs properly positioned" in the package texlogos.

An other discussion on TeX - LaTeX Stack Exchange: Prettiest way to typeset “C++” (cplusplus)?.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文