Redian新闻
>
Google Doc 可以支持一些 Latex 了
avatar
Google Doc 可以支持一些 Latex 了# TeX - TeX电子排版系统
B*y
1
I'm doing a survey report. The table structure includes questions fields Q1
- Q15. The responses are options from value 1 to 5. How can I present the
percentage of each responses for each questions as follows in the ACCESSS
report...
1 2 3 4 5
Q1 20% 10% 20% 30% 20%
Q2 20% 0% 30% 40% 10%
.
.
.
Q15 20% 10% 20% 30% 20%
THX!!!
avatar
c*r
2
I use cisco VPN client (version 5.0.00.0340). I can not connect it, when I
use my own internet connection (Verizon DSL).
When I connected to my neighbor's wireless network, I can connect the VPN
and get to the login window.
What could be the reason? Is there anything in the Router configuration?
Thanks
avatar
f*y
3
怎么样写个程序test你的stl string实现中是否用到COW和RefCount?
avatar
B*g
5
http://support.microsoft.com/kb/290136
or
IIf

Q1

【在 B***y 的大作中提到】
: I'm doing a survey report. The table structure includes questions fields Q1
: - Q15. The responses are options from value 1 to 5. How can I present the
: percentage of each responses for each questions as follows in the ACCESSS
: report...
: 1 2 3 4 5
: Q1 20% 10% 20% 30% 20%
: Q2 20% 0% 30% 40% 10%
: .
: .
: .

avatar
c*i
6
check your router's firewall setting

【在 c**********r 的大作中提到】
: I use cisco VPN client (version 5.0.00.0340). I can not connect it, when I
: use my own internet connection (Verizon DSL).
: When I connected to my neighbor's wireless network, I can connect the VPN
: and get to the login window.
: What could be the reason? Is there anything in the Router configuration?
: Thanks

avatar
p*o
7
check the address returned by c_str()

【在 f*******y 的大作中提到】
: 怎么样写个程序test你的stl string实现中是否用到COW和RefCount?
avatar
o*t
8
这个越做越差劲,以前是可以直接输latex代码的。

can

【在 p*********w 的大作中提到】
: http://googledocs.blogspot.com/2010/11/new-this-week-in-docs-auto-corrections.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+OfficialGoogleDocsBlog+%28Docs+Blog%29
: LaTex in equations
: If you’re familiar with LaTex, you’ll enjoy the many LaTeX shortcuts we
: added to the equation editor. For example, while editing an equation you can
: type '\frac' followed by a space and it will automatically be converted
: into an equation fraction.

avatar
B*y
9
Thanks for the link. It is useful and I can use a query to generate
percentage for each question based on group values, however, my difficulty
resides in how to present the results for all the questions in the ACCESS
report...Should I use some sub-report or do I need to assign the result to
an array variable? Additionally how to handle for any question if one of the
response has 0%, which will not be calculated or shown from the above query
.
Thanks again!

【在 B*****g 的大作中提到】
: http://support.microsoft.com/kb/290136
: or
: IIf
:
: Q1

avatar
c*r
10
I changed firewall to LOW or NONE, neither worked.
I googled, and it seems Verizon DSL with Westell 327W Modem does has this
problem. However, there is no clear solution I can find so far. Some one
said change to bridge mode, and some one said to open some ports (like 500),
but seems very confusing.
Anyone hints?

【在 c*****i 的大作中提到】
: check your router's firewall setting
avatar
c*h
11
这不就是公式编辑器的搞法么

can

【在 p*********w 的大作中提到】
: http://googledocs.blogspot.com/2010/11/new-this-week-in-docs-auto-corrections.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+OfficialGoogleDocsBlog+%28Docs+Blog%29
: LaTex in equations
: If you’re familiar with LaTex, you’ll enjoy the many LaTeX shortcuts we
: added to the equation editor. For example, while editing an equation you can
: type '\frac' followed by a space and it will automatically be converted
: into an equation fraction.

avatar
B*g
12
please post your table structure, may need to use IIf

the
query

【在 B***y 的大作中提到】
: Thanks for the link. It is useful and I can use a query to generate
: percentage for each question based on group values, however, my difficulty
: resides in how to present the results for all the questions in the ACCESS
: report...Should I use some sub-report or do I need to assign the result to
: an array variable? Additionally how to handle for any question if one of the
: response has 0%, which will not be calculated or shown from the above query
: .
: Thanks again!

avatar
z*r
13
try tcp based ipsec

),

【在 c**********r 的大作中提到】
: I changed firewall to LOW or NONE, neither worked.
: I googled, and it seems Verizon DSL with Westell 327W Modem does has this
: problem. However, there is no clear solution I can find so far. Some one
: said change to bridge mode, and some one said to open some ports (like 500),
: but seems very confusing.
: Anyone hints?

avatar
j*g
14
great feature!!!

can

【在 p*********w 的大作中提到】
: http://googledocs.blogspot.com/2010/11/new-this-week-in-docs-auto-corrections.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+OfficialGoogleDocsBlog+%28Docs+Blog%29
: LaTex in equations
: If you’re familiar with LaTex, you’ll enjoy the many LaTeX shortcuts we
: added to the equation editor. For example, while editing an equation you can
: type '\frac' followed by a space and it will automatically be converted
: into an equation fraction.

avatar
B*y
15
The table is very simple. It has 15 number fields:Q1 TO Q15. The domain(
value) options for each field are 1 to 5. The goal is to display the
percentage for each question in an access report...

【在 B*****g 的大作中提到】
: please post your table structure, may need to use IIf
:
: the
: query

avatar
B*g
16
SELECT SUM(IIf(Q1=1, 1, 0))/COUNT(*) AS A1,
SUM(IIf(Q1=2, 1, 0))/COUNT(*) AS A2,
SUM(IIf(Q1=3, 1, 0))/COUNT(*) AS A3,
SUM(IIf(Q1=4, 1, 0))/COUNT(*) AS A4,
SUM(IIf(Q1=5, 1, 0))/COUNT(*) AS A5
FROM QA
UNION ALL
SELECT SUM(IIf(Q2=1, 1, 0))/COUNT(*) AS A1,
SUM(IIf(Q2=2, 1, 0))/COUNT(*) AS A2,
SUM(IIf(Q2=3, 1, 0))/COUNT(*) AS A3,
SUM(IIf(Q2=4, 1, 0))/COUNT(*) AS A4,
SUM(IIf(Q2=5, 1, 0))/COUNT(*) AS A5
FROM QA
....

【在 B***y 的大作中提到】
: The table is very simple. It has 15 number fields:Q1 TO Q15. The domain(
: value) options for each field are 1 to 5. The goal is to display the
: percentage for each question in an access report...

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。