Choose font styles in LaTeX
2024年1月28日\bf, \md, \it, \sl, \sc, \sf, \tt or \rm[1]是LaTeX 2.09的命令。它们不可叠加。如今用的一定是LaTeX2e。而且这些命令会令LaTeX2e的命令失效。[1]不要使用这些旧命令。 LaTeX2e有两类font style命令,一类带参数,一类不带参数 […]
\bf, \md, \it, \sl, \sc, \sf, \tt or \rm[1]是LaTeX 2.09的命令。它们不可叠加。如今用的一定是LaTeX2e。而且这些命令会令LaTeX2e的命令失效。[1]不要使用这些旧命令。 LaTeX2e有两类font style命令,一类带参数,一类不带参数 […]
In MSBuild, there are two similar properties, PlatformTarget and Platform. Differences between PlatformTarget and Platform PlatformTarget is basically […]
http://www.cnblogs.com/aquastone/p/touchpad-vs-mouse.htm 反对“鼠标只有四种输入方式”。你应该没见过雷蛇那伽梵蛇鼠标,侧面就有12个键;或者冰豹钛鲨豹鼠标,除了标准的左右键和滚轮外还有20个可编程按键。如果博主用触摸板,手指得扭出花儿来才能有2 […]
以下是x64dbg调试某一程序的界面。 00E33FCB | E8 10D3D3FF | call <v2game.sub_B712E0> 00E33FD0 | C645 FC 32 | mov byte ptr ss:[ebp-4],32 00E33FD4 | 8D8D 4CF8FFFF | […]
Microsoft Detours虽然是个历史悠久的项目,但网上对它资料不全。要使用Detours,先编译。 编译 按照 https://github.com/Microsoft/Detours/blob/main/samples/README.TXT , 编译Detours用的命令是nmake。但 […]
本文研究图这段C++代码是怎么变成二进制的。 #include <iostream> using std::endl; using std::cout; int main() { char str1[30] = “Many hands”; char* str2(” make light wor […]
The stack and the esp register 见图。在整个内存区域,上面的叫做高地址,下面的叫做低地址。从high address到esp为the stack,阴影部分为未使用的空间,再下面依次是the heap, uninitialized data, initialized da […]
在测试Windows NTFS (ACL) permissions的时候,发现我虽然禁止任何人修改文件,但管理员权限的Vim仍然可以修改它。 用:w,Vim会说没有权限;如果用:w!,写入是成功的。 原来,Vim能够修改文件权限,写入后再把权限改回。 https://unix.stackexchan […]