How to write conditional equations

Solution:

  • Use \quad to align the condition.
a+b=c, \quad a>0,b\ge 0

It looks like:

a+b=c,a>0,b≥0

  • Use aligned environment.
a+b=c,\quad \begin{aligned} a&>0,\\ b&\ge 0\end{aligned}

It looks like:

a+b=c,ab>0,≥0

Refs:

  1. http://tex.stackexchange.com/questions/131249/equation-conditions

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-11-29 12:17:27

How to write conditional equations的相关文章

(转)Image Segmentation with Tensorflow using CNNs and Conditional Random Fields

Daniil's blog Machine Learning and Computer Vision artisan. About/ Blog/ Image Segmentation with Tensorflow using CNNs and Conditional Random Fields Tensorflow and TF-Slim | Dec 18, 2016 A post showing how to perform Image Segmentation with a recentl

gnuplot conditional plotting: plot col A:col B if col C == x

http://stackoverflow.com/questions/6564561/gnuplot-conditional-plotting-plot-col-acol-b-if-col-c-x How can I do this in gnuplot: plot "test.csv" using 1:2 if value_in_column_3 == 80.0 It should only select those rows where column 3 == 80.0 and i

Jersey(1.19.1) - Conditional GETs and Returning 304 (Not Modified) Responses

Conditional GETs are a great way to reduce bandwidth, and potentially server-side performance, depending on how the information used to determine conditions is calculated. A well-designed web site may return 304 (Not Modified) responses for the many

hdu 1496 Equations

Equations 题意:给定一个四元二次方程的系数a,b,c,d;问有多少个解: a, b, c, d are integers from the interval [-50,50] and any of them cannot be 0. It is consider a solution a system ( x1,x2,x3,x4 ) that verifies the equation, xi is an integer from [-100,100] and xi != 0, any

How Many Equations Can You Find(dfs)

How Many Equations Can You Find Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 714    Accepted Submission(s): 467 Problem Description Now give you an string which only contains 0, 1 ,2 ,3 ,4 ,5

ZOJ 题目1024 Additive equations(DFS)

Additive equations Time Limit: 10 Seconds      Memory Limit: 32768 KB We all understand that an integer set is a collection of distinct integers. Now the question is: given an integer set, can you find all its addtive equations? To explain what an ad

UVA 10317 - Equating Equations 贪心 dfs

UVA 10317 - Equating Equations 贪心 dfs ACM 题目地址:UVA 10317 - Equating Equations 题意: 给一个等式,但是这个等式不一定是正确的,要你对等式中的数字重新排序,使得等式成立.等式只有+和-,数字个数小于16. 分析: 以a + b - c = d - e为例子. 1. 我们把等式右边的各项都换到左边,a + b - c - d + e = 0 2. 把+项和-项放一起,就变成(a + b + e) - (c + d) = 0

巧用Conditional

根据预处理标识符执行方法.Conditional 属性是 ConditionalAttribute 的别名,可应用于方法或属性类. 通常用于DEBUG,如下则只有在debug的情况下会打印log. [Conditional("DEBUG")] public static void Message(string traceMessage) { Console.WriteLine("[TRACE] - " + traceMessage); } Conditional 类

HDU4569 Special equations

1 /* 2 HDU4569 Special equations 3 http://acm.hdu.edu.cn/showproblem.php?pid=4569 4 数论 5 题意:f(x)为一n次方程求是否存在x, s.t. f(x)=0 (mod p^2) 6 其中p为质数 7 首先,我们只需考虑0-p中的x即可,因为其他的x总可以先取模 8 到这个区间,因此可以在1e4内找到f(x)=0(mod p)的x 9 考虑到 x=0(mod p^2) => x=0(mod p) 10 因此只需在