英文字典中文字典


英文字典中文字典51ZiDian.com



中文字典辞典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z       







请输入英文单字,中文词皆可:

Italic    音标拼音: [ɑɪt'ælɪk]
n. 斜体
a. 斜体的
n. 斜体字

斜体斜体的斜体字

italic
斜体字

italic
adj 1: characterized by slanting characters; "italic characters"
2: of or relating to the Italic languages; "ancient Italic
dialects"
n 1: a style of handwriting with the letters slanting to the
right
2: a branch of the Indo-European languages of which Latin is the
chief representative [synonym: {Italic}, {Italic language}]
3: a typeface with letters slanting upward to the right

Composite \Com*pos"ite\ (?; 277), a. [L. compositus made up of
parts, p. p. of componere. See {Compound}, v. t., and cf.
{Compost}.]
1. Made up of distinct parts or elements; compounded; as, a
composite language.
[1913 Webster]

Happiness, like air and water . . . is composite.
--Landor.
[1913 Webster]

2. (Arch.) Belonging to a certain order which is composed of
the Ionic order grafted upon the Corinthian. It is called
also the {Roman} or the {Italic} order, and is one of the
five orders recognized by the Italian writers of the
sixteenth century. See {Capital}.
[1913 Webster]

3. (Bot.) Belonging to the order {Composit[ae]}; bearing
involucrate heads of many small florets, as the daisy,
thistle, and dandelion.
[1913 Webster]

{Composite carriage}, a railroad car having compartments of
different classes. [Eng.]

{Composite number} (Math.), one which can be divided exactly
by a number exceeding unity, as 6 by 2 or 3..

{Composite photograph} or {Composite portrait}, one made by a
combination, or blending, of several distinct photographs.
--F. Galton.

{Composite sailing} (Naut.), a combination of parallel and
great circle sailing.

{Composite ship}, one with a wooden casing and iron frame.
[1913 Webster]


Italic \I*tal"ic\, a. [L. Italicus: cf. F. italique. Cf.
{Italian}.]
[1913 Webster]
1. Relating to Italy or to its people.
[1913 Webster]

2. Applied especially to a kind of type in which the letters
do not stand upright, but slope toward the right; -- so
called because dedicated to the States of Italy by the
inventor, Aldus Manutius, about the year 1500.
[1913 Webster]

{Italic languages}, the group or family of languages of
ancient Italy.

{Italic order} (Arch.), the composite order. See {Composite}.


{Italic school}, a term given to the Pythagorean and Eleatic
philosophers, from the country where their doctrines were
first promulgated.

{Italic version}. See {Itala}.
[1913 Webster]


Italic \I*tal"ic\, n.; pl. {Italics}. (Print.)
An Italic letter, character, or type (see {Italic}, a., 2.);
-- often in the plural; as, the Italics are the author's.
Italic letters are used to distinguish words for emphasis,
importance, antithesis, etc. Also, collectively, Italic
letters.
[1913 Webster]

79 Moby Thesaurus words for "italic":
ascender, autograph, autographic, back, bastard type, beard, belly,
bevel, black letter, body, calligraphic, cap, capital, case,
chirographic, counter, cursive, descender, em, en, engrossed, face,
fat-faced type, feet, flowing, font, graphic, graphoanalytic,
graphologic, graphometric, groove, holograph, holographic,
in longhand, in shorthand, in writing, inscribed, italicized,
letter, ligature, logotype, longhand, lower case, majuscule,
manuscript, minuscule, nick, on paper, penciled, penned, pi, pica,
point, print, printed, roman, running, sans serif, script,
scriptorial, scriptural, shank, shorthand, shoulder, small cap,
small capital, stamp, stem, stylographic, type, type body,
type class, type lice, typecase, typeface, typefounders,
typefoundry, upper case, written


请选择你想看的字典辞典:
单词字典翻译
italic查看 italic 在百度字典中的解释百度英翻中〔查看〕
italic查看 italic 在Google字典中的解释Google英翻中〔查看〕
italic查看 italic 在Yahoo字典中的解释Yahoo英翻中〔查看〕





安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • An introduction to widget testing - Flutter
    In the introduction to unit testing recipe, you learned how to test Dart classes using the test package To test widget classes, you need a few additional tools provided by the flutter_test package, which ships with the Flutter SDK The flutter_test package provides the following tools for testing widgets: The WidgetTester allows building and interacting with widgets in a test environment The
  • Testing Flutter apps
    Widget tests A widget test (in other UI frameworks referred to as component test) tests a single widget The goal of a widget test is to verify that the widget's UI looks and interacts as expected Testing a widget involves multiple classes and requires a test environment that provides the appropriate widget lifecycle context
  • Flutter
    > How to handle scrolling in a widget test Many apps feature lists of content, from email clients to music apps and beyond To verify that lists contain the expected content using widget tests, you need a way to scroll through lists to search for particular items To scroll through lists via integration tests, use the methods provided by the [`WidgetTester`][] class, which is included in the
  • Tap, drag, and enter text - Flutter
    In the test environment, Flutter doesn't automatically rebuild widgets when the state changes To ensure that the widget tree is rebuilt after simulating a user interaction, call the pump() or pumpAndSettle() methods provided by the WidgetTester This recipe uses the following steps: Create a widget to test Enter text in the text field
  • Handle scrolling - Flutter
    How to handle scrolling in a widget test Now, you can write a test In this example, scroll through the list of items and verify that a particular item exists in the list The WidgetTester class provides the scrollUntilVisible() method, which scrolls through a list until a specific widget is visible This is useful because the height of the items in the list can change depending on the device
  • Accessibility testing - Flutter
    Testing accessibility on mobile Test your app using Flutter's Accessibility Guideline API This API checks if your app's UI meets Flutter's accessibility recommendations These cover recommendations for text contrast, target size, and target labels The following snippet shows how to use the Guideline API on a sample widget named AccessibleApp:
  • Find widgets - Flutter
    During a flutter run session on a widget test, you can also interactively tap parts of the screen for the Flutter tool to print the suggested Finder This recipe looks at the find constant provided by the flutter_test package, and demonstrates how to work with some of the Finders it provides
  • Visual Studio Code - Flutter
    Flutter Property Editor The Flutter Property Editor is a powerful tool provided by the Flutter extension that lets you view and modify widget properties directly from its visual interface
  • Testing each layer - Flutter
    Testing the UI layer One way to determine whether your architecture is sound is considering how easy (or difficult) the application is to test Because view models and views have well-defined inputs, their dependencies can easily be mocked or faked, and unit tests are easily written





中文字典-英文字典  2005-2009